/* Fade animation for currency changes */
#website-front-page-container {
    transition: opacity 1s ease-in-out;
}

#website-front-page-container.fade-out {
    opacity: 0;
    pointer-events: none;
}

#website-front-page-container.fade-in {
    opacity: 1;
    pointer-events: auto;
}

/* Base state for all animated elements */
.animate-on-scroll {
    opacity: 0;
    filter: blur(5px) grayscale(100%);
    transition: all 1s ease;
    will-change: opacity, transform, filter;
}

/* Triggered when in view */
.animate-on-scroll.in-view {
    opacity: 1;
    transform: translate(0, 0);
    will-change: auto;
}

/* Directions */
.animate-on-scroll.from-left {
    transform: translateX(-40px);
}

.animate-on-scroll.from-right {
    transform: translateX(40px);
}

.animate-on-scroll.from-bottom {
    transform: translateY(40px);
}

/* Optional: override transform only when visible */
.animate-on-scroll.from-left.in-view,
.animate-on-scroll.from-right.in-view,
.animate-on-scroll.from-bottom.in-view {
    transform: translate(0, 0);
    filter: blur(0) grayscale(0);
}








* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    /* Brand palette */
    --brand-purple: rgba(70, 45, 107);
    --brand-cyan: rgb(48, 160, 183);

    /* Core theme tokens */
    --primary-color: var(--brand-cyan);
    --secondary-color: var(--brand-purple);
    --button-color: var(--brand-purple);
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #ffffff;
    --transition-speed: 0.3s;
    --offer-duration: 24h;
    /* Controlled by JS */
    --card-bg: #ffffff;
    --border: #e5e7eb;
    --muted: #6b7280;
    --shadow: 0 6px 16px rgba(17, 24, 39, 0.08);
}

body {
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Prevent horizontal overflow from off-screen animations or wide elements */
html,
body {
    overflow-x: hidden;
}

/* Mobile sticky buy bar (hidden by default, shown via media query) */
.mobile-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    padding: 8px 12px;
    background: #ffffff;
    border-top: 1px solid #e9ecef;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
    z-index: 1500;
    width: 100%;
    box-sizing: border-box;
}

.mobile-sticky-prices {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.mobile-sticky-old {
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
    font-size: 1rem;
}

.mobile-sticky-new-container {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.mobile-sticky-new {
    color: var(--accent-color);
    font-weight: 800;
    font-size: 1.3rem;
}

.mobile-sticky-currency {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    background: rgba(70, 45, 107, 0.1);
    padding: 2px 4px;
    border-radius: 8px;
    border: 1px solid rgba(70, 45, 107, 0.2);
}

.mobile-sticky-btn {
    background: linear-gradient(135deg, var(--button-color) 0%, var(--brand-cyan) 100%);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 1px 3px rgba(73, 194, 219, 0.5);
    cursor: pointer;
    transition: transform 0.15s ease, filter 0.15s ease;
}

.mobile-sticky-btn:active {
    transform: translateY(1px) scale(0.99);
    filter: brightness(0.98);
}



.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header styles */
header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--brand-cyan) 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Brand (logo image above text on mobile, inline on larger screens) */
.brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: clamp(36px, 8vw, 48px);
    height: auto;
    border-radius: 30px;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}



.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-speed);
    font-size: 1.1rem;
}

.nav-links a:hover {
    color: rgb(0, 255, 242);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Currency Selector Styles */
.currency-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 1rem;
}

/* Ensure positioned ancestor for absolute dropdown menu */
.currency-selector {
    position: relative;
}

/* Desktop currency trigger button */
.currency-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.currency-trigger:hover,
.currency-trigger.active {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.currency-trigger ion-icon {
    transition: transform 0.2s ease;
}

.currency-trigger.active ion-icon {
    transform: rotate(180deg);
}

/* Desktop currency dropdown menu */
.currency-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 180px;
    background: #ffffff;
    color: #111827;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    padding: 6px;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 1200;
}

.currency-menu.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.currency-menu .currency-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #111827;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.currency-menu .currency-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(73, 194, 219, 0.12), transparent);
    transition: left 0.4s ease;
}

/* Left accent bar for a refined feel */
.currency-menu .currency-option::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 8px;
    bottom: 8px;
    width: 3px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--primary-color), var(--brand-cyan));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.22s ease;
    opacity: 0.85;
}

.currency-menu .currency-option:hover {
    background: #f3f4f6;
    color: var(--secondary-color);
    transform: translateX(2px);
}

.currency-menu .currency-option:hover::after {
    transform: scaleY(1);
}

/* Keyboard accessibility */
.currency-menu .currency-option:focus-visible {
    outline: none;
    background: #eef2ff;
    color: var(--secondary-color);
    transform: translateX(2px);
    box-shadow: 0 0 0 2px rgba(73, 194, 219, 0.2) inset;
}

/* Subtle pressed feedback */
.currency-menu .currency-option:active {
    transform: translateX(1px) scale(0.995);
}

/* Light separators between items for structure */
.currency-menu .currency-option+.currency-option {
    margin-top: 2px;
}

/* Respect user reduced motion preferences */
@media (prefers-reduced-motion: reduce) {

    .currency-menu .currency-option,
    .currency-menu .currency-option::before,
    .currency-menu .currency-option::after {
        transition: none;
    }

    .currency-menu .currency-option:hover,
    .currency-menu .currency-option:focus-visible,
    .currency-menu .currency-option:active {
        transform: none;
    }
}


/* Mobile Currency Styles */
.mobile-currency-section {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-currency-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

/* Mobile currency trigger button (inside dark mobile nav) */
.mobile-currency-trigger {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 16px;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.mobile-currency-trigger:hover,
.mobile-currency-trigger.active {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.mobile-currency-trigger ion-icon {
    transition: transform 0.2s ease;
}

.mobile-currency-trigger.active ion-icon {
    transform: rotate(180deg);
}

.mobile-currency-menu {
    margin-top: 10px;
    display: grid;
    grid-auto-rows: minmax(0, auto);
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 6px;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.mobile-currency-menu.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-currency-option {
    display: block;
    font-size: 1.1rem !important;
    padding: 12px 12px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease;
}

/* Currency Change Notification */
.currency-notification {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 3000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    pointer-events: none;
}

.currency-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.currency-notification-content {
    background: linear-gradient(135deg, var(--button-color) 0%, var(--brand-cyan) 100%);
    color: white;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.currency-notification-content ion-icon {
    color: #4ade80;
    font-size: 1.2rem;
}

/* Mobile sidebar */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    height: 100vh;
    background: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1600;
    padding: 2rem 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}

.mobile-nav .close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1700;
}

/* Ionicons sizing */
ion-icon {
    width: 1.1em;
    height: 1.1em;
    vertical-align: -0.125em;
}

.mobile-nav-links {
    list-style: none;
    margin-top: 3rem;
}

.mobile-nav-links li {
    margin-bottom: 1.2rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav.open .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav.open .mobile-nav-links li:nth-child(1) {
    transition-delay: 0.05s;
}

.mobile-nav.open .mobile-nav-links li:nth-child(2) {
    transition-delay: 0.1s;
}

.mobile-nav.open .mobile-nav-links li:nth-child(3) {
    transition-delay: 0.15s;
}

/* Verified Buyer badge for review cards */
.verified-badge {
    display: inline-block;
    margin-left: 10px;
    background: #e6fffa;
    /* pale teal */
    color: #065f46;
    /* dark green */
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: 700;
    vertical-align: middle;
    box-shadow: 0 2px 6px rgba(6, 95, 70, 0.06);
    flex: 0 0 auto;
}

.mobile-nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    text-align: center;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    transition: color var(--transition-speed);
}

.mobile-nav-links a:hover {
    color: var(--primary-color);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero section */
.hero {
    padding: 4rem 0;
    background: white;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.product-images {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    margin-right: 2rem;
}

.main-image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.main-video {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 60vh;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Image Gallery Styles */
.image-gallery {
    position: relative;
}

.main-image-container {
    position: relative;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 10;
}

.main-image-container:hover .gallery-nav {
    opacity: 1;
}

.gallery-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.zoom-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 10;
}

.main-image-container:hover .zoom-btn {
    opacity: 1;
}

.zoom-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.thumbnail-container {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-start;
    flex-wrap: nowrap;
    /* keep thumbnails in a single row */
    overflow-x: auto;
    /* allow horizontal scrolling when there are many thumbnails */
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
    flex: 0 0 auto;
    /* don't shrink, maintain width inside scroll */
}

.thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

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

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumb-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    display: block;
}

.thumbnail:hover img {
    transform: scale(1.1);
}









/* Image Modal Styles */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal-video {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    background: black;
}

.modal-close {
    position: absolute;
    top: -20px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 20;
}

.modal-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.modal-nav.prev-btn {
    left: -80px;
}

.modal-nav.next-btn {
    right: -80px;
}



.product-info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Product Header Section */
.product-header {
    margin-bottom: 0.5rem;
    position: relative;
}

.product-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--brand-cyan) 100%);
    border-radius: 2px;
}

.product-title {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    line-height: 1.2;
    font-weight: 800;
}

.product-description {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.product-description p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 5px;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 600;
    background: rgba(73, 194, 219, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Trust Indicators Section */
.trust-indicators {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.trust-indicators:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.rating-section {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #f39c12;
    font-size: 1.1rem;
}

.rating-text {
    font-size: 0.95rem;
    color: #374151;
    font-weight: 600;
}

.sales-indicator {
    text-align: right;
    position: relative;
}

.sales-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.sales-indicator {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Live Badge Styles */
.live-badge {
    position: absolute;
    top: -28px;
    right: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fee2e2;
    color: #dc2626;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid #fecaca;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.15);
    z-index: 10;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #dc2626;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
    display: inline-block;
}

.live-text {
    font-size: 0.75rem;
    font-weight: 700;
}

/* Pulse Animation */
@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(0.8);
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }

    50% {
        opacity: 0.8;
        transform: scale(0.8);
        box-shadow: 0 0 0 6px rgba(220, 38, 38, 0);
    }
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color) 0%, #f39c12 50%, var(--primary-color) 100%);
}

/* Urgency Section */
.urgency-section {
    margin: 0;
}

.inventory-alert {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(255, 193, 7, 0.1) 100%);
    border: 1px solid rgba(231, 76, 60, 0.2);
    border-radius: 12px;
    color: #dc2626;
    font-weight: 600;
    font-size: 0.95rem;
}

.inventory-alert ion-icon {
    color: #f59e0b;
    font-size: 1.2rem;
}

/* Product Options */
.product-options {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* CTA Section */
.cta-section {
    text-align: start;
    margin-top: 0.5rem;
}

.pricing {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.old-price {
    font-size: 1.4rem;
    text-decoration: line-through;
    color: #999;
    margin-right: 1rem;
    font-weight: 500;
}

.new-price-container {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.new-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.current-currency {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    background: rgba(70, 45, 107, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid rgba(70, 45, 107, 0.2);
}

.discount-badge {
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    margin-left: 1rem;
    font-size: 0.9rem;
}

.currency-availability {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 1rem;
    padding: 6px 12px;
    background: rgba(73, 194, 219, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(73, 194, 219, 0.2);
    width: fit-content;
}

.currency-availability ion-icon {
    color: var(--primary-color);
    font-size: 1rem;
}

.inventory {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.inventory span {
    font-weight: 600;
    color: #27ae60;
}

.low-stock {
    color: var(--accent-color) !important;
}

/* Product Options */
.product-options {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.color-selection {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.color-selection label {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1rem;
}

.color-dropdown {
    padding: 0.8rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.color-dropdown:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(73, 194, 219, 0.1);
}

.color-dropdown:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(73, 194, 219, 0.1);
}

.color-dropdown option {
    padding: 0.5rem;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--button-color) 0%, var(--brand-cyan) 100%);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 1px 5px rgba(73, 194, 219, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(73, 194, 219, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

/* Countdown timer */
.countdown {
    background: var(--secondary-color);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin: 1.5rem 0;
}

.countdown-text {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.timer-unit {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.8rem;
    border-radius: 5px;
    min-width: 70px;
}

.timer-value {
    font-size: 1.8rem;
    font-weight: 700;
}

.timer-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    opacity: 0.8;
}

/* HeadphoneZoo Benefits Section */
.benefits-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--brand-cyan) 50%, var(--secondary-color) 100%);
}

.benefits-title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(73, 194, 219, 0.05) 0%, rgba(70, 45, 107, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(73, 194, 219, 0.3);
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--brand-cyan) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.7rem;
    box-shadow: 0 1px 5px rgba(73, 194, 219, 0.5);
    position: relative;
    z-index: 1;
}

.benefit-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.benefit-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 4px;
    line-height: 1.2;
}

.benefit-content p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

.refund-policy-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.refund-policy-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Features section */
.features {
    padding: 4rem 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}


.feature {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    background: var(--light-bg);
}



.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.feature-description {
    color: #555;
    font-size: 1rem;
}





















/* Reviews section */
/* Testimonials Section - Mobile First */
#testimonials {
    background-color: var(--background);
    margin-bottom: 2rem;
}

/* Testimonials Container - Mobile (horizontal scroll) */
#user_clint_rate_area {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    overflow: visible;
    scroll-snap-type: none;
    padding: 20px 0;
}

#user_clint_rate_area::-webkit-scrollbar {
    display: none;
}

/* Testimonial Cards - Mobile */
.user_card_rate_div {
    position: relative;
    flex: 0 0 85%;
    scroll-snap-align: start;
    background: var(--card-bg);
    border-radius: 10px;
    padding: 18px 16px 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card_clint_rate_date_div h3 {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 0.8rem;
    color: var(--muted);
    text-align: right;
    background: #f3f4f6;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid var(--border);
}

.card_clint_rate_info_div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.card_clint_rate_info_div img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}

.card_clint_rate_info_div h4 {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.card_clint_rate_info_div h4::after {
    display: inline-block;
    margin-left: 8px;
    font-size: 0.7rem;
    color: #059669;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    padding: 2px 6px;
    border-radius: 999px;
    font-weight: 600;
}

.card_clint_rate_comment_div h5 {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #374151;
    font-weight: 400;
}

.card_clint_rate_star_div {
    position: static;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* stars left, badge right */
    gap: 10px;
    color: #f59e0b;
    font-size: 1.1rem;
    margin-top: 6px;
}

.card_clint_rate_star_div .star-icons {
    flex: 0 0 auto;
    color: #f59e0b;
    font-size: 1.1rem;
}

/* Comment Form - Mobile */
.user_insert_comment_form_div {
    background: var(--card-bg);
    border-radius: 14px;
    padding: 20px;
    margin-top: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    overflow: hidden;
}

.user_insert_comment_form_div h3 {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 20px;
}

#user_comment_form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#user_comment_form label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary-color);
}

#user_comment_form input,
#user_comment_form textarea,
#user_comment_form select {
    width: 100%;
    padding: 12px 14px;
    font-size: 0.95rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
}

#user_comment_form textarea {
    min-height: 110px;
    resize: vertical;
}

#user_comment_form button {
    background: linear-gradient(135deg, var(--button-color) 0%, var(--brand-cyan) 100%);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(73, 194, 219, 0.3);
    cursor: pointer;
}

#user_comment_form button:active {
    transform: translateY(1px);
}

/* File Upload Styling */
.file-upload-wrapper {
    position: relative;
    width: 100%;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
    opacity: 0;
}

.file-upload-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px dashed #cbd5e1;
    border-radius: 10px;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    min-height: 48px;
}

.file-upload-button:hover {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-color: #94a3b8;
    color: #334155;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.file-upload-button:active {
    transform: translateY(0);
}

.file-upload-button ion-icon {
    font-size: 20px;
    color: #64748b;
}

.file-upload-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
    padding: 10px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
}

.file-upload-info .file-count {
    color: #475569;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.file-upload-info .file-count::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    font-size: 16px;
}

.file-clear-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #fee2e2;
    border: 1px solid #fecaca;
    border-radius: 6px;
    color: #dc2626;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.file-clear-btn:hover {
    background: #fecaca;
    border-color: #fca5a5;
    color: #b91c1c;
}

.file-clear-btn ion-icon {
    font-size: 16px;
}

/* File Limit Notification Responsive Styles */
.file-limit-notification {
    width: 90% !important;
    max-width: 500px !important;
}

@media (min-width: 768px) {
    .file-limit-notification {
        width: auto !important;
        max-width: 400px !important;
        min-width: 300px;
    }
}

@media (min-width: 1024px) {
    .file-limit-notification {
        max-width: 350px !important;
        min-width: 280px;
    }
}

/* Success Notification - Mobile */
#new_comment_success_notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color: #4caf50;
    color: white;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 16px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

/* Show animation */
#new_comment_success_notification.show {
    opacity: 1;
    transform: translate(-50%, -50%);
}

















/* FAQ section */
.faq {
    padding: 4rem 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}



.faq-question {
    background: linear-gradient(135deg, var(--button-color) 0%, var(--brand-cyan) 100%);
    color: white;
    padding: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color var(--transition-speed);
}

.faq-answer {
    background: var(--light-bg);
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease, padding var(--transition-speed) ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 1.2rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-question i {
    transition: transform var(--transition-speed) ease;
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: white;
    padding: 3rem 0;
    text-align: center;
}



.footer-links {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 1.5rem 0;
}

.footer-links li {
    margin: 0 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color var(--transition-speed);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.copyright {
    margin-top: 1.5rem;
    opacity: 0.7;
    font-size: 0.9rem;
}









/* Responsive styles */
@media (max-width: 1024px) {
    #user_clint_rate_area {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;

        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        font-size: 14px;
    }

    .brand {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .logo {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 4vw;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-content {
        flex-direction: column;
        align-items: center;
    }

    .product-images {
        margin-right: 0;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .product-title {
        font-size: 5vw;
    }

    .product-description p {
        font-size: 2.5vw;
    }

    .trust-indicators {
        gap: 0.8rem;
        text-align: center;
    }

    .rating-section {
        justify-content: center;
    }

    .sales-indicator {
        text-align: center;
    }

    .live-badge {
        font-size: 0.7rem;
        padding: 3px 9px;
        gap: 5px;
        top: -26px;
    }

    .live-dot {
        width: 7px;
        height: 7px;
    }

    .live-text {
        font-size: 0.7rem;
    }

    .pricing-section {
        padding: 1rem;
    }

    .inventory-alert {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    .product-options {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    .currency-selector {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .timer-unit {
        min-width: 50px;
    }

    .timer-value {
        font-size: 1.5rem;
    }

    .feature {
        padding: 1.2rem;
    }

    /* Show sticky bar on mobile and add bottom padding to avoid overlap */
    .mobile-sticky-bar {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding: 8px 12px;
    }

    .mobile-sticky-prices {
        display: flex;
        flex: 1;
        min-width: 0;
        flex-wrap: wrap;
        gap: 8px;
    }

    .mobile-sticky-btn {
        flex-shrink: 0;
        white-space: nowrap;
        margin-left: auto;
    }

    /* Ensure price elements can shrink and wrap */
    .mobile-sticky-old,
    .mobile-sticky-new-container {
        flex-shrink: 1;
        min-width: 0;
    }

    .mobile-sticky-new {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    body {
        padding-bottom: 65px;
    }


    .features {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 5.5vw;
        margin-bottom: 1rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .feature-icon {
        font-size: 6vw;
    }

    .feature-title {
        font-size: 3vw;
    }

    .feature-description {
        font-size: 2.2vw;
    }

    .modal-nav {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
        background: rgba(0, 0, 0, 0.65);
        backdrop-filter: blur(8px);
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1000;
        transition: all 0.3s ease;
    }

    .modal-nav.prev-btn {
        left: 2px;
    }

    .modal-nav.next-btn {
        right: 2px;
    }

    .modal-nav:active {
        transform: scale(0.92) translateY(-50%);
        background: rgba(0, 0, 0, 0.8);
    }
}




@media (max-width: 530px) {
    .product-title {
        font-size: 6.5vw;
    }

    .product-description p {
        font-size: 3vw;
    }

    .feature-title {
        font-size: 4vw;
    }

    .feature-description {
        font-size: 3.5vw;
    }

    .section-title {
        font-size: 6.5vw;
    }
}





@media (max-width: 400px) {
    :root {
        font-size: 12px;
    }

    .container {
        padding: 0 3vw;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }

    .product-title {
        font-size: 7vw;
    }

    .new-price {
        font-size: 1.8rem;
    }

    .current-currency {
        font-size: 0.8rem;
        padding: 2px 4px;
    }

    .old-price {
        font-size: 1.2rem;
    }

    .timer {
        gap: 0.5rem;
    }

    .timer-unit {
        min-width: 40px;
        padding: 0.6rem 0.3rem;
    }

    .timer-value {
        font-size: 1.2rem;
    }

    .timer-label {
        font-size: 0.7rem;
    }

    .feature-icon {
        font-size: 8vw;
        margin-bottom: 0;
    }

    .feature-title {
        margin-bottom: 3px;
    }

    .features-grid {
        gap: 0.2rem;
    }

    .currency-availability {
        font-size: 3.5vw;
        padding: 2px 4px;
    }

    .section-title {
        font-size: 7vw;
    }

    .currency-availability ion-icon {
        font-size: 3.5vw;
    }

    .product-description p {
        font-size: 3.5vw;
    }

    .trust-indicators {
        padding: 0.8rem;
        gap: 0.6rem;
    }

    .rating-text {
        font-size: 3.1vw;
    }

    .sales-indicator {
        font-size: 3.1vw;
    }

    .sales-number {
        font-size: 3.1vw;
    }

    .live-badge {
        font-size: 2.5vw;
        padding: 1px 8px;
        gap: 4px;
        top: -24px;
    }

    .live-dot {
        width: 6px;
        height: 6px;
    }

    .live-text {
        font-size: 2.5vw;
    }

    .pricing-section {
        padding: 0.8rem;
    }

    .old-price {
        font-size: 4.5vw;
    }

    .new-price {
        font-size: 6vw;
    }

    .current-currency {
        font-size: 0.7rem;
        padding: 2px 4px;
    }

    .inventory-alert {
        font-size: 3.5vw;
        padding: 0.6rem;
    }

    .product-options {
        padding: 0.8rem;
    }

    .benefits-section {
        margin-top: 1.5rem;
        padding: 1rem;
        padding-left: 0.1rem;
    }

    .benefits-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .benefit-item {
        padding: 0.8rem;
        gap: 10px;
    }

    .benefit-icon {
        width: 35px;
        height: 35px;
    }

    .benefit-content h4 {
        font-size: 0.9rem;
    }

    .benefit-content p {
        font-size: 0.8rem;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .zoom-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .modal-nav {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
        border: none;
        background: rgba(0, 0, 0, 0.75);
    }

    .modal-nav.prev-btn {
        left: -10px;
    }

    .modal-nav.next-btn {
        right: -10px;
    }
}