        @font-face {
            font-family: 'Montserrat';
            font-style: normal;
            font-weight: 600;
            src: url('../../style/fonts/montserrat/Montserrat-SemiBold.woff2') format('woff2'),
                 url('../../style/fonts/montserrat/Montserrat-SemiBold.woff') format('woff');
            font-display: swap;
        }

        @font-face {
            font-family: 'Montserrat';
            font-style: normal;
            font-weight: 700;
            src: url('../../style/fonts/montserrat/Montserrat-Bold.woff2') format('woff2'),
                 url('../../style/fonts/montserrat/Montserrat-Bold.woff') format('woff');
            font-display: swap;
        }

        @font-face {
            font-family: 'Montserrat';
            font-style: normal;
            font-weight: 800;
            src: url('../../style/fonts/montserrat/Montserrat-ExtraBold.woff2') format('woff2'),
                 url('../../style/fonts/montserrat/Montserrat-ExtraBold.woff') format('woff');
            font-display: swap;
        }

        @font-face {
            font-family: 'Roboto';
            font-style: normal;
            font-weight: 300;
            src: url('../../style/fonts/roboto/Roboto-Light.woff2') format('woff2'),
                 url('../../style/fonts/roboto/Roboto-Light.woff') format('woff');
            font-display: swap;
        }

        @font-face {
            font-family: 'Roboto';
            font-style: normal;
            font-weight: 400;
            src: url('../../style/fonts/roboto/Roboto-Regular.woff2') format('woff2'),
                 url('../../style/fonts/roboto/Roboto-Regular.woff') format('woff');
            font-display: swap;
        }

        @font-face {
            font-family: 'Roboto';
            font-style: normal;
            font-weight: 500;
            src: url('../../style/fonts/roboto/Roboto-Medium.woff2') format('woff2'),
                 url('../../style/fonts/roboto/Roboto-Medium.woff') format('woff');
            font-display: swap;
        }

        @font-face {
            font-family: 'Roboto';
            font-style: normal;
            font-weight: 700;
            src: url('../../style/fonts/roboto/Roboto-Bold.woff2') format('woff2'),
                 url('../../style/fonts/roboto/Roboto-Bold.woff') format('woff');
            font-display: swap;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        html, body {
            overflow-x: hidden;
            max-width: 100vw;
        }

        body {
            background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 100%);
            color: #e0e0e0;
            line-height: 1.6;
            min-height: 100vh;
        }

        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #0d0d1a 100%);
            padding: 15px 5%;
            border-bottom: 1px solid #2a2a40;
            position: sticky;
            top: 0;
            z-index: 100;
            transition: background 0.4s ease;
        }

        header.scrolled {
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(13, 13, 26, 0.9) 100%);
            backdrop-filter: blur(5px);
        }

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
}

/* New wrapper for logo + text */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px; /* spacing between logo and text */
}

/* Logo image + shine effect */
.logo .mask {
    display: inline-block;
}

.logo .mask a {
    position: relative;
    display: block;
    width: 77px;
    height: 54px;
    text-decoration: none;
    transform: translateY(-9%);
}

.logo .mask a img {
    display: block;
    width: 77px;
    height: 54px;
}

 


@keyframes shine {
    0%   { background-position: -86px 0; }
    30%  { background-position: 162px 0; }  /* fast sweep in first 15% */
    100% { background-position: 162px 0; }  /* hold for the rest */
}



.logo .mask a::after {
    content: '';
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
      circle farthest-side at 0 0,
      rgba(255,255,255,0) 40%,
      rgba(255,255,255,0.7) 70%,
      rgba(255,255,255,0) 100%
    ) no-repeat;
    background-size: 76px 53px;
    background-position: -86px 0;
    -webkit-mask: url('style/icons/web-logo.png') center / contain no-repeat;
    mask: url('#mask-logo');
    animation: shine 5s ease-in-out infinite;
}

 
 
 
.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;    
    letter-spacing: 3px;
    line-height: 1.1;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
    background-image: linear-gradient(
        -75deg,
        transparent 0,
        transparent 5%,
        rgba(255, 255, 255, 0.9) 2%,
        rgba(255, 255, 255, 0.1) 10%,
        transparent 2%,
        transparent 15%
    ), linear-gradient(to right, #D4D4D4 0%, #ECECEC 100%);
    background-size: 200% 100%, 100% 100%;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: rgba(255,255,255,0.32) 0px 0px 11px;
    /* animation: shine 3s ease-in-out infinite; */ /* Removed */
}

.logo-text:hover {
    text-shadow: rgba(255,255,255,0.42) 0px 0px 11px; 
}

/* Removed the underline pseudo-element completely */
.logo-text::after {
    display: none;
}

/* Removed the duplicate animation declaration completely */
/* .logo-text {
    animation: shine 3s ease-in-out infinite;
} */

nav {
    flex-grow: 1;
}

        .nav-links {
            display: flex;
            list-style: none;
            background: rgba(30, 30, 50, 0.7);
            border-radius: 8px;
            padding: 0 15px;
            justify-content: space-around;
            height: 60px;
            align-items: center;
        }

        .nav-links li {
            position: relative;
            display: flex;
            align-items: center;
            height: 100%;
        }

        .nav-links li a {
            display: flex;
            align-items: center;
            padding: 15px 20px;
            color: #d0d0e0;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            white-space: nowrap;
            height: 100%;
        }

        .nav-links li a:hover {
            color: #4a6cf7;
            background: rgba(74, 108, 247, 0.1);
        }
        
   .nav-icon {
            width: 24px;
            height: 24px;
            margin-right: 12px;
            vertical-align: middle;
            filter: invert(0.8);
            transition: all 0.4s ease;
        }

        .nav-links li a:hover .nav-icon {
            filter: invert(0.6) sepia(1) saturate(5) hue-rotate(200deg);
        }

        .nav-links li a .fa-chevron-down {
            margin-left: 6px;
            margin-top: 0px;
            font-size: 0.9em;
            transition: transform 0.3s ease;
        }

        .nav-links li a:hover .fa-chevron-down {
            color: #4a6cf7;
        }

        .dropdown {
            position: absolute;
            background: #1a1a2e;
            min-width: 390px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
            border-radius: 5px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 10;
            border: 1px solid #2a2a40;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-auto-flow: column;
            grid-template-rows: repeat(9, auto);
            padding: 10px 0;
            list-style: none !important;
            top: 100%;
        }

        .dropdown.three-columns {
            grid-template-columns: repeat(3, 1fr);
            min-width: 585px;
            grid-template-rows: repeat(9, auto);
        }

        .dropdown li:nth-child(-n+9) {
            grid-column: 1;
        }
        .dropdown li:nth-child(n+10):nth-child(-n+18) {
            grid-column: 2;
            grid-row: auto;
        }
        .dropdown.three-columns li:nth-child(n+19) {
            grid-column: 3;
            grid-row: auto;
        }

        .dropdown li a {
            padding: 12px 20px;
            border-bottom: 1px solid #2a2a40;
            display: flex;
            align-items: center;
        }

        .nav-links li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .bundle-item {
            grid-column: 1;
            background: rgba(168, 85, 247, 0.1);
            border-bottom: 1px solid #a855f7;
        }
        .bundle-item a {
            font-weight: 700 !important;
            color: #a855f7 !important;
            position: relative;
            padding-right: 80px !important;
        }

        .bundle-item a:after {
            content: "BUNDLE";
            background: linear-gradient(135deg, #4a6cf7, #a855f7);
            color: white;
            font-size: 0.68rem;
            padding: 2px 6px;
            border-radius: 4px;
            position: absolute;
            right: 15px;
        }

        .new-tag-dropdown {
            background: linear-gradient(135deg, #84cc16, #22c55e);
            color: white;
            font-size: 0.68rem;
            padding: 2px 6px;
            border-radius: 4px;
            margin-left: 8px;
            display: inline-block;
            font-weight: bold;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .more-dropdown {
            min-width: 200px;
            grid-template-columns: 1fr;
            grid-template-rows: auto;
        }

        @media (max-width: 900px) {
            .header-container {
                flex-direction: column;
                align-items: stretch;
            }
            
            .logo {
                justify-content: center;
                margin-bottom: 10px;
            }
            
            .logo-text {
                font-size: 1.4rem;
            }
            
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                width: 100%;
                padding: 5px;
                height: auto;
            }
            
            .nav-links li a {
                padding: 10px 15px;
                font-size: 0.9rem;
            }
            
            .nav-icon {
                width: 18px;
                height: 18px;
                margin-right: 8px;
            }
            
            .dropdown {
                left: 0;
                right: 0;
                grid-template-columns: 1fr;
                grid-template-rows: auto;
                padding: 15px 0;
                overflow-y: auto;
                min-width: 170%;
                max-width:170%;
                width: 170%;
            }

            .dropdown.three-columns {
                grid-template-columns: 1fr;
                min-width: 170%;
                max-width: 170%;
                width: 170%;
            }

            .dropdown li:nth-child(-n+9),
            .dropdown li:nth-child(n+10):nth-child(-n+18),
            .dropdown.three-columns li:nth-child(n+19) {
                grid-column: 1;
                grid-row: auto;
            }

            .bundle-item {
                grid-column: 1;
            }
        }

        footer {
            background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 100%);
            padding: 40px 5% 20px;
            border-top: 1px solid #2a2a40;
            margin-top: 60px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            gap: 30px;
        }

        .footer-column:first-child {
            justify-self: start;
        }

        .footer-column:nth-child(2) {
            justify-self: center;
        }

        .footer-column:last-child {
            justify-self: end;
        }

        .social-icons {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0px 0px 6px 5px rgba(0,0,0,0.17);
            border-radius: 50%;
            background: rgba(30, 30, 50, 0.7);
            text-decoration: none;
        }

        .social-icon i {
            font-size: 1.2rem;
            color: #d0d0e0;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: rgba(74, 108, 247, 0.3);
            transform: translateY(-3px);
        }

        .social-icon:hover i {
            color: #4a6cf7;
        }

        .copyright {
            font-size: 0.95rem;
            color: #b0b0c0;
            font-weight: 300;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            text-align: center;
            white-space: nowrap;
        }

        .copyright .current-year {
            font-weight: 400;
            color: #e0e0e0;
        }

        .payment-methods {
            display: flex;
            flex-direction: column;
            gap: 8px;
            align-items: center;
        }

        .payment-row {
            display: flex;
            gap: 6px;
            align-items: center;
        }

        .payment-icon {
            position: relative;
            background: rgba(30, 30, 50, 0.8);
            border: 1px solid rgba(74, 108, 247, 0.2);
            border-radius: 8px;
            padding: 4px 6px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            width: 48px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .payment-icon:hover {
            background: rgba(74, 108, 247, 0.15);
            border-color: rgba(74, 108, 247, 0.4);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
        }

        .payment-icon img {
            width: 36px;
            height: 24px;
            object-fit: contain;
            filter: brightness(0.9) contrast(1.1) saturate(0.8);
            transition: all 0.3s ease;
        }

        .payment-icon:hover img {
            filter: brightness(1) contrast(1.2) saturate(1);
        }

        .tooltip {
            visibility: hidden;
            background: linear-gradient(135deg, #1a1a2e 0%, #2a2a40 100%);
            color: #e0e0e0;
            text-align: center;
            border-radius: 6px;
            padding: 6px 10px;
            position: absolute;
            z-index: 1;
            bottom: 125%;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            font-size: 12px;
            font-weight: 500;
            opacity: 0;
            transition: opacity 0.3s ease;
            border: 1px solid rgba(74, 108, 247, 0.3);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }

        .tooltip::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #1a1a2e transparent transparent transparent;
        }

        .payment-icon:hover .tooltip {
            visibility: visible;
            opacity: 1;
        }

        @media (max-width: 900px) {
            .footer-content {
                grid-template-columns: 1fr;
                grid-template-rows: auto auto auto;
                gap: 25px;
                text-align: center;
            }
            
            .footer-column:first-child,
            .footer-column:nth-child(2),
            .footer-column:last-child {
                justify-self: center;
            }
            
            .social-icons {
                justify-content: center;
            }
            
            .payment-icon {
                width: 45px;
                height: 30px;
            }
            
            .payment-icon img {
                width: 33px;
                height: 22px;
            }
            
            .copyright {
                white-space: normal;
            }
        }

        .product-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        
 
  
 


        .section-title {
            font-size: 1.8rem;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }

        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #4a6cf7, #a855f7);
        }
        

        .policies-header .section-title:after {
    display: none;
}
        .collection-carousel {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
            position: relative;
            overflow: hidden;
             margin-top: 20px;
        }
        
        .carousel-title-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .carousel-controls {
            display: flex;
            gap: 10px;
        }
        
        .carousel-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(74, 108, 247, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d0d0e0;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }
        
        .carousel-btn:hover {
            background: rgba(74, 108, 247, 0.3);
            transform: scale(1.1);
        }
        
        .carousel-container {
            display: flex;
            overflow-x: hidden;
            gap: 20px;
            padding: 20px 0;
            scroll-behavior: smooth;
        }
        
        .carousel-item {
            min-width: 192px;
            background: rgba(30, 30, 50, 0.6);
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s ease;
            border: 1px solid #2a2a40;
            flex-shrink: 0;
            cursor: pointer;
            text-decoration: none;
        }
        
        .carousel-item:hover {
            transform: scale(1.05);
        }
        
        .carousel-image {
            height: 198px;
            width: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .carousel-title {
            color: #e0e0e0 !important;
            padding: 15px;
            text-align: center;
            font-weight: 500;
            text-decoration: none !important;
        }

        .product-tag {
            position: absolute;
            bottom: 10px;
            right: 10px;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: bold;
            color: white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .new-tag {
            background: linear-gradient(135deg, #84cc16, #22c55e);
        }
        
        .sale-tag {
            background: linear-gradient(135deg, #ef4444, #ec4899);
        }

        @media (max-width: 768px) {
            .collection-carousel {
                margin: 40px auto;
            }
            
            .carousel-item {
                min-width: 173px;
            }
        }

        ::-webkit-scrollbar {
            width: 12px;
            height: 12px;
            background-color: #383849;
        }

        ::-webkit-scrollbar-track {
            background-color: #383849;
            border-radius: 3px;
        }

        ::-webkit-scrollbar-thumb {
            background-color: #292939;
            border-radius: 3px;
            border: 2px solid transparent;
            background-clip: content-box;
        }

        html {
            scrollbar-color: #383849 #292939;
            scrollbar-width: thin;
        }

        .policies-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
            

        }

        .policies-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .policy-links {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 50px;
        }

        .policy-link {
            background: rgba(30, 30, 50, 0.6);
            border-radius: 10px;
            padding: 18.75px;
            border: 1px solid #2a2a40;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
        }

        .policy-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(74, 108, 247, 0.2);
            background: rgba(74, 108, 247, 0.1);
        }

        .policy-link i {
            font-size: 1.875rem;
            margin-bottom: 11.25px;
            color: #4a6cf7;
        }

        .policy-link h3 {
            font-size: 0.975rem;
            margin-bottom: 7.5px;
            color: #e0e0e0;
        }

        .policy-link p {
            color: #b0b0c0;
            font-size: 0.675rem;
        }

        .policy-content {
            display: none;
            background: rgba(30, 30, 50, 0.6);
            border-radius: 10px;
            padding: 30px;
            border: 1px solid #2a2a40;
            margin-bottom: 50px;
            animation: fadeIn 0.5s ease;
        }

        .policy-content.active {
            display: block;
        }

        .policy-content h2 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #e0e0e0;
            font-family: 'Montserrat', sans-serif;
            text-align: center;
        }

        .policy-content h3 {
            font-size: 1.2rem;
            margin: 25px 0 15px;
            color: #e0e0e0;
        }

        .policy-content p, .policy-content ul {
            margin-bottom: 15px;
            color: #b0b0c0;
            line-height: 1.7;
        }

        .policy-content ul {
            padding-left: 20px;
        }

        .policy-content li {
            margin-bottom: 10px;
        }

        .back-to-policies {
            display: inline-flex;
            align-items: center;
            color: #4a6cf7;
            text-decoration: none;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .back-to-policies i {
            margin-right: 8px;
            transition: transform 0.3s ease;
        }

        .back-to-policies:hover {
            color: #a855f7;
        }

        .back-to-policies:hover i {
            transform: translateX(-5px);
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 768px) {
            .policy-links {
                grid-template-columns: 1fr;
            }
        }

        .policy-content a {
            color: #4a8cff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .policy-content a:hover {
            color: #a855f7;
            text-shadow: 0 0 8px rgba(74, 140, 255, 0.5);
        }

        .policy-content a:active {
            color: #a855f7;
        }




        /* TABLET STYLES - iPad and similar devices */
@media (max-width: 1024px) and (min-width: 769px) {
    /* Header adjustments */
    .header-container {
        padding: 0 3%;
        transform: translateX(-5%);
    }
    
    .logo-text {
        font-size: 1.5rem;
        letter-spacing: 2px;
        white-space: nowrap;
    }
    
    .nav-links {
        padding: 0 10px;
        height: 55px;
    }
    
    .nav-links li a {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .nav-icon {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }
    
    /* Dropdown adjustments for tablet */
    .dropdown {
        min-width: 350px;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dropdown.three-columns {
        grid-template-columns: repeat(2, 1fr);
        min-width: 520px;
    }
    
    /* Product page adjustments */
    .product-container {
        padding: 0 3%;
    }
    
    .product-header {
        grid-template-columns: 1.5fr 1fr;
        gap: 30px;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
    
    .main-image {
        max-height: 60vh;
    }
    
    .thumbnails {
        gap: 8px;
    }
    
    .thumbnail {
        width: 100px;
        height: 75px;
    }
    
    .product-info {
        padding: 20px;
        margin-top: 60px;
    }
    
    .price-display {
        font-size: 2.5rem;
    }
    
    .btn-buy-large {
        padding: 12px;
        font-size: 1rem;
    }
    
    /* Gallery footer adjustments */
    .gallery-footer-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .tags-section,
    .share-section {
        width: 100%;
    }
    
    /* Video container */
    .video-container {
        padding-bottom: 45%;
        width: 95%;
    }
    
    /* Description section */
    .description-section {
        gap: 30px;
    }
    
    .description-image {
        min-width: 250px;
        margin-top: 40px;
    }
    
    .description-content {
        min-width: 250px;
    }
    
    .description-title {
        font-size: 1.6rem;
    }
    
    /* Tabs */
    .tab-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .tab-content {
        padding: 20px;
    }
    
    /* Requirements section */
    .requirements-content {
        gap: 25px;
    }
    
    .os-requirements {
        min-width: 250px;
    }
    
    .os-title {
        font-size: 1.3rem;
    }
    
    /* Compatibility adjustments */
    .compatibility-image {
        width: 280px;
        height: 43px;
    }
    
    .compatibility-image img {
        width: 280px;
        height: 43px;
    }
    
    .compatibility-tooltip {
        width: 260px;
        font-size: 0.85rem;
    }
    
    /* Carousel adjustments */
    .collection-carousel {
        padding: 0 3%;
    }
    
    .carousel-item {
        min-width: 180px;
    }
    
    .carousel-image {
        height: 185px;
    }
    
    /* Footer adjustments */
    footer {
        padding: 40px 2% 20px;
    }
    
    .footer-content {
        gap: 20px;
        padding: 0;
        max-width: 100%;
        overflow: hidden;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .social-icon i {
        font-size: 1rem;
    }
    
    .payment-methods {
        gap: 6px;
    }
    
    .payment-row {
        gap: 4px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .payment-icon {
        width: 42px;
        height: 28px;
    }
    
    .payment-icon img {
        width: 30px;
        height: 20px;
    }
    
    .copyright {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    /* Modal adjustments */
    .modal-content {
        max-width: 85%;
        max-height: 65vh;
    }
    
    .modal-thumbnails {
        max-width: 85%;
    }
    
    .modal-thumbnail {
        width: 70px;
        height: 52px;
    }
    
    /* Floating button */
    .floating-buy-btn {
        bottom: 25px;
        right: 25px;
        padding: 13px 22px;
        font-size: 15px;
    }
    
    /* Section titles */
    .section-title {
        font-size: 1.7rem;
    }
    
    .soundcloud-title {
        font-size: 1.7rem;
    }
}


/* Mobile Messenger Widget Fixes */
@media (max-width: 768px) {
    .fb-widget-messenger-widget {
        bottom: 15px;
        right: 15px;
        z-index: 9999;
    }

    .fb-widget-messenger-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .fb-widget-chat-popup {
        position: fixed !important;
        bottom: 75px;
        right: 15px;
        left: 15px;
        width: auto !important;
        max-width: 320px;
        margin: 0 auto;
        height: auto;
        min-height: 280px;
        max-height: 350px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        z-index: 10000;
    }

    /* When popup is active, ensure it's centered properly */
    .fb-widget-chat-popup.active {
        display: flex;
        right: 15px;
        left: 15px;
        margin: 0 auto;
    }

    /* Adjust chat button position */
    .fb-widget-chat-button {
        bottom: 20px;
        width: calc(100% - 30px);
        left: 50%;
        transform: translateX(-50%);
        padding: 12px 14px;
        font-size: 14px;
    }

    /* Make header more compact */
    .fb-widget-chat-header {
        padding: 10px 12px;
    }

    /* Adjust business info */
    .fb-widget-business-name {
        font-size: 13px;
    }

    .fb-widget-response-time {
        font-size: 11px;
    }

    /* Smaller avatar */
    .fb-widget-avatar-container {
        width: 35px;
        height: 35px;
    }

    /* Adjust message bubble */
    .fb-widget-chat-message {
        padding: 12px;
    }

    .fb-widget-message-avatar {
        width: 28px;
        height: 28px;
    }

    .fb-widget-message-bubble {
        padding: 8px 12px;
        font-size: 13px;
        max-width: 85%;
    }

    /* Close button easier to tap */
    .fb-widget-close-btn {
        font-size: 24px;
        padding: 8px;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Small phones (below 375px) */
@media (max-width: 375px) {
    .fb-widget-chat-popup {
        max-width: 290px;
        right: 10px;
        left: 10px;
    }
    
    .fb-widget-messenger-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}

/* Ensure the popup doesn't overflow on very small screens */
@media (max-width: 320px) {
    .fb-widget-chat-popup {
        max-width: 260px;
        right: 5px;
        left: 5px;
    }
    
    .fb-widget-message-bubble {
        max-width: 90%;
        font-size: 12px;
    }
}

/* Landscape orientation fix */
@media (max-width: 768px) and (orientation: landscape) {
    .fb-widget-chat-popup {
        max-height: 250px;
        bottom: 65px;
    }
    
    .fb-widget-chat-button {
        bottom: 15px;
        padding: 8px 12px;
    }
    
    .fb-widget-chat-message {
        padding: 8px 12px;
    }
}