/* Typography (heading) */
@font-face {
    font-family: 'Montserrat';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
}

@font-face {
    font-family: 'Montserrat';
    font-weight: 700;
    font-style: italic;
    font-display: swap;
    src: url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,700&display=swap');
}

/* Typography (body) */
@font-face {
    font-family: 'Roboto';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
}

@font-face {
    font-family: 'Roboto';
    font-weight: 400;
    font-style: italic;
    font-display: swap;
    src: url('https://fonts.googleapis.com/css2?family=Roboto:ital@1&display=swap');
}

@font-face {
    font-family: 'Roboto';
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    src: url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');
}

@font-face {
    font-family: Roboto;
    font-weight: 500;
    font-style: italic;
    font-display: swap;
    src: url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,500&display=swap');
}

/* Base styles */
:root {
    --primary-color: #00263e;
    --secondary-color: #0077b6;
    --accent-color: #f58634;
    --text-color: #333;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --body-font: 'Roboto', sans-serif;
    --heading-font: 'Montserrat', sans-serif;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 700;
}

/* Header styles */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    max-height: 50px;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
}

/* Hero section */
.hero-section {
    background-color: var(--primary-color);
    padding: 4rem 0;
}

/* Product card */
.product-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.product-card .price {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--secondary-color);
}

/* Testimonial cards */
.testimonial-card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #ffc107;
}

.testimonial-author {
    font-weight: 500;
    margin-top: 1rem;
}

/* Footer styles */
.site-footer {
    background-color: var(--primary-color);
}

.site-footer h5 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.site-footer a:hover {
    text-decoration: none;
    color: #fff !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: darken(var(--accent-color), 10%);
    border-color: darken(var(--accent-color), 10%);
}

.btn-outline-primary {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .hero-section {
        padding: 2rem 0;
    }

    h1 {
        font-size: 2rem;
    }
}

/* Hero section styling */
.hero-section {
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.hero-product-image {
    max-width: 100%;
    height: auto;
}

/* Text styling */
.text-primary {
    color: #00263e !important;
}

/* Button styling */
.btn-primary {
    background-color: #00263e;
    border-color: #00263e;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
}

.btn-primary:hover {
    background-color: #003b5c;
    border-color: #003b5c;
}

.btn-outline-primary {
    color: #00263e;
    border-color: #00263e;
}

.btn-outline-primary:hover {
    background-color: #00263e;
    color: #fff;
}

/* Product category cards */
.product-category-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Bundle badge */
.bundle-badge {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Feature icons */
.feature-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Parallax and Modern Elements */
:root {
    --primary-color: #00263e;
    --secondary-color: #0077b6;
    --accent-color: #f58634;
    --text-color: #333;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --body-font: 'Roboto', sans-serif;
    --heading-font: 'Montserrat', sans-serif;
}

/* Text Shadow */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Subheading Style */
.subheading {
    font-family: var(--heading-font);
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 1rem;
}

/* Parallax Sections */
.parallax-hero,
.parallax-testimonial,
.featured-bundle-parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* Overlays */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.gradient-overlay {
    background: linear-gradient(135deg, rgba(0, 38, 62, 0.9) 0%, rgba(0, 38, 62, 0.7) 100%);
}

/* Positioning in parallax sections */
.parallax-hero .container,
.parallax-testimonial .container,
.featured-bundle-parallax .container {
    position: relative;
    z-index: 2;
}

/* Floating product animation */
.floating-product {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    width: 120px;
    height: 120px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    bottom: -30px;
    right: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.experience-years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Product Cards */
.product-card {
    position: relative;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    margin-bottom: 1rem;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    z-index: 2;
}

.product-thumb {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
    /* 1:1 Aspect Ratio */
}

.product-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-thumb img {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    font-size: 0.8rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.product-rating {
    color: #ffc107;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.product-rating span {
    color: #6c757d;
    margin-left: 5px;
}

.product-price {
    margin-bottom: 1rem;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-action {
    display: flex;
    gap: 10px;
}

/* Bundle Item Styles */
.bundle-item {
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(5px);
}

/* Video Button */
.video-btn {
    display: block;
    position: relative;
}

.video-play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s;
}

.video-play-icon:hover {
    transform: scale(1.1);
    background-color: white;
}

/* Instagram Feed */
.instagram-item {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-likes {
    color: white;
    font-size: 0.9rem;
}

/* Newsletter Form */
.newsletter-form .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    height: 54px;
}

.newsletter-form .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Transition Effects */
.testimonial-content p,
.testimonial-author h5,
.testimonial-author p {
    transition: opacity 0.3s;
}

/* Min-height helpers */
.min-vh-50 {
    min-height: 50vh;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Background with overlay for quality section */
.quality-section {
    position: relative;
    background-color: var(--light-color);
}

/* Additional Media Queries for Mobile Responsiveness */
@media (max-width: 991.98px) {
    .bundle-content {
        padding: 2rem !important;
    }

    .parallax-hero,
    .parallax-testimonial,
    .featured-bundle-parallax {
        background-attachment: scroll;
    }

    .video-play-icon {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .min-vh-75 {
        min-height: auto;
    }

    .floating-product {
        animation: none;
    }
}

@media (max-width: 767.98px) {

    .display-3,
    .display-4,
    .display-5 {
        font-size: calc(1.425rem + 2.1vw);
    }

    .lead {
        font-size: 1rem;
    }

    .experience-badge {
        width: 80px;
        height: 80px;
        bottom: -15px;
        right: 15px;
    }

    .experience-years {
        font-size: 1.5rem;
    }

    .bundle-item {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .quality-feature {
        flex-direction: column;
    }

    .quality-icon {
        margin-bottom: 1rem;
    }

    .video-play-icon {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .newsletter-form .form-control,
    .newsletter-form .btn {
        border-radius: 0.375rem;
        width: 100%;
    }

    .newsletter-form .btn {
        margin-top: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .subheading {
        font-size: 0.75rem;
    }

    .parallax-hero .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .benefit-item {
        flex-direction: column;
    }

    .benefit-icon {
        margin-bottom: 1rem;
    }

    .product-action {
        flex-direction: column;
    }

    .product-action .btn {
        width: 100%;
    }

    .experience-badge {
        width: 70px;
        height: 70px;
        bottom: -10px;
        right: 10px;
    }

    .experience-years {
        font-size: 1.2rem;
    }

    .experience-text {
        font-size: 0.6rem;
    }
}

/* Product Page Specific Styles */

/* Category Tabs */
.category-tabs {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f8f9fa;
}

.category-tabs::-webkit-scrollbar {
    height: 4px;
}

.category-tabs::-webkit-scrollbar-track {
    background: #f8f9fa;
}

.category-tabs::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
}

.category-tab {
    color: #666;
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
    text-decoration: none;
    position: relative;
    padding-bottom: 0.5rem;
}

.category-tab:hover,
.category-tab:focus {
    color: var(--primary-color);
}

.category-tab.active {
    color: var(--primary-color);
    font-weight: 600;
}

.category-tab.active::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Product Cards */
.product-card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-thumb {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background-color: #f8f9fa;
}

.product-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-thumb img {
    transform: scale(1.05);
}

.product-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-price {
    font-weight: 600;
    color: #444;
}

.product-rating {
    color: #ffc107;
    font-size: 0.875rem;
}

.product-rating .rating-count {
    color: #6c757d;
    margin-left: 0.25rem;
}

/* Filters Sidebar */
.filters-sidebar h3,
.filters-sidebar h4 {
    color: var(--primary-color);
}

.filter-toggle {
    color: #6c757d;
    transition: color 0.2s;
}

.filter-toggle:hover {
    color: var(--primary-color);
}

.price-slider {
    padding: 0 5px;
}

.price-input {
    position: relative;
    width: 45%;
}

.price-input .currency {
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 0.875rem;
}

.price-input .form-control {
    padding-left: 1.5rem;
}

.price-separator {
    display: flex;
    align-items: center;
    color: #6c757d;
}

/* noUiSlider custom styling */
.noUi-target {
    height: 6px;
    border: none;
    background-color: #e9ecef;
    box-shadow: none;
}

.noUi-connect {
    background-color: var(--primary-color);
}

.noUi-handle {
    width: 16px !important;
    height: 16px !important;
    right: -8px !important;
    top: -5px !important;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    background-color: white;
    border: 2px solid var(--primary-color);
}

.noUi-handle::before,
.noUi-handle::after {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .filters-sidebar {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .category-tab {
        font-size: 0.8rem;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .product-title {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .category-tabs {
        padding-bottom: 0.5rem;
    }

    .product-card {
        margin-bottom: 1rem;
    }
}

/* About Page Specific Styles */

/* Process Timeline */
.process-timeline {
    position: relative;
    padding: 20px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 2px;
    background-color: var(--primary-color);
    left: 20px;
    top: 0;
}

.process-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.process-item:last-child {
    margin-bottom: 0;
}

.process-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    z-index: 1;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px white, 0 0 0 5px rgba(0, 38, 62, 0.2);
}

.process-content {
    padding-left: 30px;
}

/* Team Cards */
.team-card {
    padding: 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 50%;
    border: 5px solid rgba(0, 38, 62, 0.1);
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-links a {
    display: inline-flex;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: var(--primary-color);
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, color 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Value Cards */
.value-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.value-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Certification Logos */
.certification-logo {
    max-height: 80px;
    opacity: 0.8;
    transition: opacity 0.3s, transform 0.3s;
}

.certification-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Signature */
.signature {
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
}

/* CTA Dots */
.cta-dots {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 0;
    opacity: 0.5;
}

.cta-card * {
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .process-timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .process-item {
        padding-left: 50%;
    }

    .process-item:nth-child(even) {
        flex-direction: row-reverse;
        padding-left: 0;
        padding-right: 50%;
    }

    .process-circle {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .process-item:nth-child(odd) .process-content {
        padding-left: 50px;
        padding-right: 20px;
    }

    .process-item:nth-child(even) .process-content {
        padding-right: 50px;
        padding-left: 20px;
        text-align: right;
    }
}

@media (max-width: 767.98px) {
    .process-item {
        padding-left: 0;
    }

    .team-img {
        width: 120px;
        height: 120px;
    }

    .certification-logo {
        max-height: 60px;
    }

    .cta-card {
        padding: 3rem !important;
    }
}

@media (max-width: 575.98px) {
    .team-img {
        width: 100px;
        height: 100px;
    }

    .certification-logo {
        max-height: 50px;
    }

    .min-vh-50 {
        min-height: 40vh !important;
    }
}

/* Product Detail Page Styles */
.product-gallery .main-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thumbnail-gallery {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f8f9fa;
}

.thumbnail-btn {
    border: 2px solid transparent;
    padding: 2px;
    background: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.thumbnail-btn.active {
    border-color: var(--primary-color);
}

.thumbnail-btn img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.product-tabs .nav-link {
    color: var(--text-color);
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 500;
    position: relative;
}

.product-tabs .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.product-tabs .nav-link.active::after {
    width: 100%;
}

/* Mobile Responsive Adjustments */
@media (max-width: 767.98px) {
    .product-gallery {
        margin: -1rem -1rem 1rem;
    }

    .main-image {
        border-radius: 0;
    }

    .thumbnail-btn img {
        width: 60px;
        height: 60px;
    }

    .product-tabs .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* Contact Page Specific Styles */
.contact-info {
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    display: inline-block;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid #dee2e6;
    padding: 1rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 38, 62, 0.25);
}

.form-floating>label {
    padding: 1rem;
}

/* Mobile Responsive Adjustments */
@media (max-width: 767.98px) {
    .contact-info {
        margin-bottom: 2rem;
    }

    .contact-form .btn-lg {
        width: 100%;
    }

    .contact-item {
        text-align: center;
    }

    .contact-item i {
        margin-bottom: 0.5rem;
    }
}

/* Cart Page Styles */
.cart-item-image {
    flex: 0 0 100px;
}

.cart-item-image img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.quantity-selector .form-control {
    -moz-appearance: textfield;
}

.quantity-selector .form-control::-webkit-outer-spin-button,
.quantity-selector .form-control::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.order-summary {
    position: sticky;
    top: 2rem;
}

.payment-methods i {
    opacity: 0.6;
    transition: opacity 0.3s;
}

.payment-methods i:hover {
    opacity: 1;
}

/* Mobile Responsive Adjustments */
@media (max-width: 991.98px) {
    .order-summary {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 1.5rem;
    }

    .cart-item-image {
        width: 100%;
        max-width: 200px;
        margin-bottom: 1rem;
    }

    .cart-item-details {
        width: 100%;
    }

    .cart-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .cart-actions .btn {
        width: 100%;
    }
}