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

/* Lily Script One Font Face */
@font-face {
    font-family: 'Lily Script One';
    font-style: normal;
    font-weight: 700;
    src: url('../../style/fonts/lily/lily-script-one.woff2') format('woff2'),
         url('../../style/fonts/lily/lily-script-one.woff2') format('woff');
    font-display: swap;
}
/* Sniglet Font Face */
@font-face {
    font-family: 'Sniglet';
    font-style: normal;
    font-weight: 700;
    src: url('../../style/fonts/Sniglet/Sniglet-Regular.woff2') format('woff2'),
         url('../../style/fonts/Sniglet/Sniglet-Regular.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;
}

/* NEW SLIDESHOW STYLES */
.slideshow-wrapper {
    max-width: 1000px;
    width: 100%;
    margin: 30px auto;
    position: relative;
}

.slideshow-container {
    max-width: 900px;
    height: 400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: flex-end;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease-in-out;
    z-index: 1;
    transform: scale(1);
}

.slide.active {
    opacity: 1;
}

.slide.active .slide-bg {
    transform: scale(1.05);
}

.slide-content {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px;
    width: 100%;
    z-index: 2;
    position: relative;
}

.slide-content h2 {
    font-size: 1.7rem;
    margin-bottom: 10px;
    color: white;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
}

.slide-content p {
    max-width: 70%;
    margin-bottom: 15px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    font-weight: 500;
    z-index: 2;
    position: relative;
}

.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 37px;
    height: 37px;
    background: rgba(74, 108, 247, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slide-nav:hover {
    background: rgba(74, 108, 247, 0.4);
    transform: translateY(-50%) translateY(-5px);
}

.slide-prev {
    left: -15px;
}

.slide-next {
    right: -15px;
}

.slide-pagination {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-dot.active {
    background: white;
    transform: scale(1.2);
}

.btn-slide {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    background: linear-gradient(90deg, #4a6cf7, #a855f7);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 0.85rem;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}

.btn-slide:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(74, 108, 247, 0.5);
}

.btn-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #a855f7, #4a6cf7);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-slide:hover::before {
    opacity: 1;
}

/* Products Section */
.products-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.product-card {
    background: rgba(30, 30, 50, 0.6);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #2a2a40;
    position: relative;
    transition: transform 0.3s ease, 
        box-shadow 0.3s ease, 
        border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(74, 108, 247, 0.3);
    border-color: #4a6cf7;
}

.product-image-container {
    height: 209px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.product-image {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1) rotate(-2deg);
}

.index-product-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}

.tag-new {
    background: linear-gradient(135deg, #84cc16, #22c55e);
    color: white;
}

.tag-bundle {
    background: linear-gradient(135deg, #4a6cf7, #a855f7);
    color: white;
}

.product-content {
    padding: 20px;
}

.product-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #f0f0f0;
}

.product-description {
    color: #b0b0c0;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

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

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-view {
    background: transparent;
    border: 2px solid #4a6cf7;
    color: #4a6cf7;
}

.btn-buy {
    background: linear-gradient(90deg, #4a6cf7, #a855f7);
    color: white;
    border: none;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Company Description */
.company-description {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: justify;
    text-align-last: center;
    font-size: 1.1rem;
    color: #b0b0c0;
    line-height: 1.8;
}

/* NEW Testimonials Section Styles */
.testimonials-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    position: relative;
}

.testimonials-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    font-weight: 600;
    width: 100%;
}

.testimonials-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4a6cf7, #a855f7);
}

.testimonials-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 280px;
}

.testimonial-card {
    background: rgba(30, 30, 50, 0.6);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #2a2a40;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 100%; 
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    position: absolute;
    transition: opacity 0.8s ease;
    pointer-events: none;   /* Prevent hidden cards from blocking clicks */
}

.testimonial-card.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;   /* Enable interaction on active card */
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-align: left;
    justify-content: center;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    padding: 3px;
    background: linear-gradient(135deg, #4a6cf7, #a855f7);
    flex-shrink: 0;
}

.testimonial-info-container {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #e0e0e0;
    text-align: center;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-role, .testimonial-handle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #b0b0c0;
    justify-content: center;
}

.testimonial-handle a {
    color: #b0b0c0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.testimonial-handle a:hover {
    color: #D4D4D4;
    text-decoration: none;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
}

.testimonial-icon {
    color: #4a6cf7;
    font-size: 0.9rem;
}

.testimonial-text {
    position: relative;
    padding: 0 20px;
    color: #d0d0e0;
    line-height: 1.7;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: 'Sniglet', cursive;
        text-align: justify;
    text-align-last: center;
}

.quote-icon {
    position: absolute;
    color: rgba(74, 108, 247, 1);
    font-size: 2rem;
}

.quote-left {
    top: -40px;
    left: 0;
}

.quote-right {
    bottom: -10px;
    right: 0;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    width: 100%;
}

.testimonial-btn {
    width: 30px;
    height: 30px;
    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;
}

.testimonial-btn:hover {
    background: rgba(74, 108, 247, 0.3);
    transform: scale(1.1);
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(74, 108, 247, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #4a6cf7;
    transform: scale(1.2);
}

@media (max-width: 900px) {
    .testimonial-card {
        padding: 20px;
        min-height: 320px;
    }

    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* SEO Text */
.seo-text {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Mobile Fixes for Slideshow */
@media (max-width: 900px) {
    .slideshow-container {
        height: 300px;
        margin-top: 60px;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        max-width: 90%;
        font-size: 0.9rem;
        text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }
    
    .slide-nav {
        width: 40px;
        height: 40px;
    }
    
    .slide-prev {
        left: -50px;
    }
    
    .slide-next {
        right: -50px;
    }
    
    .slide-nav:hover {
        transform: translateY(-50%) translateY(-3px);
    }
}

@media (max-width: 600px) {
    .slideshow-container {
        height: 250px;
    }
    
    .slide-content h2 {
        font-size: 1.2rem;
    }
    
    .slide-content p {
        font-size: 0.8rem;
    }
    
    .btn-slide {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4a6cf7, #a855f7);
}

.section-title-index {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    position: relative;
}

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

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



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