/* Montserrat Font Faces */
        @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;
        }

        /* Roboto Font Faces */
        @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;
        }

        .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.7rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 8px;
            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;
        }

        .logo-text:hover {
            text-shadow: rgba(255,255,255,0.42) 0px 0px 11px;
        }

        .logo-text::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 70%;
            height: 2px;
            border-radius: 1px;
            transition: all 0.3s ease;
            animation: pulse 2s ease-in-out infinite alternate;
        }

        .logo-text:hover::after {
            width: 100%;
        }

        @keyframes shine {
            0% {
                background-position: 200% 0, 0 0;
            }
        }

        @keyframes pulse {
            0% {
                background: linear-gradient(90deg, #4a6cf7, #a855f7);
            }
            100% {
                background: linear-gradient(90deg, #a855f7, #4a6cf7);
            }
        }

        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: 5px;
            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;
            }
        }

        .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);
        }

        .collection-carousel {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
            position: relative;
            overflow: hidden;
        }
        
        .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);
        }

        /* Help Section Styles */
        .help-section {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
            text-align: center;
        }

        .help-heading {
            font-size: 2rem;
            margin-bottom: 24px;
            font-weight: 700;
            background: linear-gradient(to right, #ffffff, #d0d0d0);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .support-logo {
            width: 152px;
            height: 142px;
            margin: 0 auto 24px;
            display: block;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .support-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
            transition: filter 0.3s ease;
        }

        .facebook-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 9.6px 20px;
           background: linear-gradient(to bottom,#4267b2 0,#2B4373 100%);
            color: white;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.88rem;
            transition: all 0.3s ease;
            margin-bottom: 16px;
        }

        .facebook-btn:hover {
            background:  linear-gradient(to bottom,#35538F 0,#23365C 100%);     
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .facebook-btn i {
            margin-right: 8px;
            font-size: 1.04rem;
        }

        .email-text {
            font-size: 1.056rem;
            color: #b0b0c0;
            margin-bottom: 40px;
        }

        /* FAQ Accordion Styles */
        .accordion {
            width: 100%;
            max-width: 1080px;
            margin: 0 auto 50px;
            background: rgba(30, 30, 50, 0.6);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #2a2a40;
        }

        .accordion__heading {
            font-size: 1.8rem;
            padding: 25px;
            text-align: center;
            color: #e0e0e0;
            font-weight: 600;
            background: linear-gradient(135deg, rgba(74, 108, 247, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
        }

        .accordion__item {
            border-bottom: 1px solid #2a2a40;
        }

        .accordion__item:last-child {
            border-bottom: none;
        }

        .accordion__btn {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 20px 25px;
            background: transparent;
            border: none;
            outline: none;
            color: #d0d0e0;
            font-size: 1.1rem;
            text-align: left;
            cursor: pointer;
            transition: all 0.3s ease;
            user-select: none;
        }

        .accordion__btn:hover {
            color: #4a6cf7;
            background: rgba(74, 108, 247, 0.1);
        }

        .accordion__item--active .accordion__btn {
            color: #4a6cf7;
            background: rgba(74, 108, 247, 0.1);
        }

        .accordion__icon {
            color: #d0d0e0;
            transition: all 0.3s ease;
        }

        .accordion__btn:hover .accordion__icon {
            color: #4a6cf7;
        }

        .accordion__item--active .accordion__icon {
            transform: rotate(45deg);
            color: #4a6cf7;
        }

        .accordion__content {
            font-weight: 300;
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            color: #b0b0c0;
            transition: max-height 0.5s ease, opacity 0.5s;
            text-align: left;
            padding-top: 0;
        }

        .accordion__content p {
            padding: 0 25px 25px;
            line-height: 1.7;
            margin-top: 1%;
            user-select: text;
        }

        .accordion__item--active .accordion__content {
            opacity: 1;
            max-height: 1000px;
        }

        /* Link Styles */
        .accordion__content a {
            color: #FF4B4B;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .accordion__content a:hover {
            color: #DC00DC;
        }

        /* Lightbulb Icon Styles - SVG Outline Only */
        .accordion__caption::before {
            content: '';
            display: inline-block;
            width: 20px;
            height: 20px;
            background-image: url('../../style/icons/lightbulb.svg');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            margin-right: 10px;
            vertical-align: middle;
            transition: all 0.3s ease;
            filter: brightness(0) saturate(100%) invert(85%) sepia(8%) saturate(147%) hue-rotate(202deg) brightness(95%) contrast(92%);
        }

        .accordion__btn:hover .accordion__caption::before,
        .accordion__item--active .accordion__caption::before {
            filter: invert(46%) sepia(64%) saturate(5600%) hue-rotate(227deg) brightness(98%) contrast(103%);
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 50px;
            align-items: center;
        }
        
        .page-btn {
            width: 50px;
            height: 40px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(30, 30, 50, 0.6);
            color: #d0d0e0;
            border: 1px solid #2a2a40;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        
        .page-btn.active {
            background: linear-gradient(135deg, #4a6cf7, #a855f7);
            color: white;
            border-color: transparent;
            box-shadow: 0 5px 15px rgba(74, 108, 247, 0.3);
        }
        
        .page-btn:hover:not(.active) {
            background: rgba(74, 108, 247, 0.2);
            color: white;
        }

        .page-nav-btn {
            width: 110px;
            padding: 0 10px;
        }

        .page-nav-btn i {
            font-size: 0.7em;
            margin-right: 5px;
        }

        .page-nav-btn#next-page i {
            margin-right: 0;
            margin-left: 5px;
        }

        @media (max-width: 768px) {
            .help-heading {
                font-size: 1.6rem;
            }
            
            .accordion__btn {
                padding: 15px 20px;
                font-size: 1rem;
            }
            
            .accordion__content p {
                padding: 0 20px 20px;
            }

            .accordion__caption::before {
                font-size: 14px;
                margin-right: 8px;
            }

            .page-btn {
                width: 40px;
                height: 36px;
                font-size: 0.8rem;
            }

            .page-nav-btn {
                width: 90px;
                padding: 0 8px;
                font-size: 0.8rem;
            }
        }

        /* Scrollbar Styling */
        ::-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;
        }

        .description-text {
            text-align: justify;
        }



        /* 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;
    }
}