`

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-padding-top: 100px;
    }
}

body {
    font-family: 'Söhne', 'Helvetica Neue', 'Arial', sans-serif;
    line-height: 1.6;
}

/* Professional dark gradient theme - minimal white for futuristic look */
:root {
    --bg-gradient: radial-gradient(circle at 20% 50%, rgba(20, 20, 20, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(10, 10, 10, 1) 100%);
    --card-bg: rgba(255, 255, 255, 0.03);
    --surface: rgba(255, 255, 255, 0.02);
    --border: rgba(255, 255, 255, 0.1);
    --border-dark: rgba(0, 0, 0, 0.5);
    --muted: rgba(255, 255, 255, 0.5);
    --text: #ececec;
    --subtext: #b4b4b4;
    --accent: rgba(255, 255, 255, 0.05);
    --accent-hover: rgba(255, 255, 255, 0.08);
    --success: #10b981;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.7);
    --radius: 24px;
    /* ChatGPT-style rounded corners */
}

html {
    background: #0a0a0a;
    color: var(--text);
}

body {
    background: #0a0a0a;
    color: var(--text);
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    overflow-x: hidden !important;
}

/* Prevent horizontal scrolling completely */
html {
    overflow-x: hidden !important;
    width: 100%;
}

body {
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
}

/* Mobile containment: ensure no horizontal overflow from inner wrappers */
@media (max-width: 600px) {

    .main-content,
    .hero-section,
    .hero-container,
    .products-grid,
    .footer-container,
    .faq-container {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
    }

    /* Provide safe horizontal padding without affecting desktop design */
    .main-content,
    .hero-container,
    .faq-container,
    .products-grid {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Prevent any element from causing horizontal scroll */
    * {
        max-width: 100vw;
    }

    /* Hero centering & fit: ensure all text blocks fully visible on initial load */
    .hero-section {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 90px;
    }

    .hero-container {
        width: 100%;
        max-width: 100%;
    }

    /* Remove overly large max-width that was causing clipping */
    .hero-content {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
        box-sizing: border-box;
    }

    .hero-heading,
    .hero-description,
    .hero-highlights,
    .hero-cta,
    .hero-trust {
        max-width: 100%;
    }

    .hero-heading {
        overflow-wrap: anywhere;
    }

    .hero-highlights {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.55rem;
        padding: 0;
    }

    .hero-highlights li {
        width: 100%;
        max-width: 420px;
    }

    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .hero-cta .button,
    .hero-cta .hero-secondary-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    /* Footer full-bleed guarantee */
    .site-footer {
        width: 100%;
        margin: 0;
        align-self: stretch;
    }

    .footer-container {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .footer-bottom {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 1rem;
        padding-right: 1rem;
        margin: 0;
    }
}

/* Defensive: any element accidentally wider than viewport gets clamped */
@media (max-width: 600px) {

    [style*="width: 1200px"],
    [style*="min-width: 500px"],
    [class*="container"],
    [class*="grid"],
    [class*="section"] {
        max-width: 100%;
    }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-gradient);
    z-index: 0;
}

/* Ensure all content is above background */
.header,
.sidebar,
.main-content,
.overlay,
.auth-modal,
.product-card {
    position: relative;
    z-index: 10;
}

/* Global text & links */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text);
    font-weight: 600;
}

p,
li,
span,
label {
    color: var(--subtext)
}

a {
    color: var(--text);
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.7;
}

/* Global responsive media */
img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ChatGPT-Style Button System */
.btn,
.search-btn,
.submit-btn,
.auth-submit-btn,
.add-to-cart-btn,
.google-btn {
    background: var(--accent) !important;
    color: var(--text) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    padding: 10px 20px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1) !important;
    box-shadow: none !important;
    font-family: inherit !important;
}

.btn:hover,
.search-btn:hover,
.submit-btn:hover,
.auth-submit-btn:hover,
.add-to-cart-btn:hover {
    background: var(--accent-hover) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.btn:active,
.search-btn:active,
.submit-btn:active,
.auth-submit-btn:active,
.add-to-cart-btn:active {
    transform: scale(0.98) !important;
}

/* Header */
.header {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
    padding: 0.9rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    color: var(--text);
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.25rem;
    min-height: 64px;
}

.menu-toggle,
.icon-btn {
    color: var(--text)
}

.logo h1 {
    color: var(--text);
    text-shadow: none;
}

/* Search */
.search-container {
    background: transparent;
    /* removed faint top border */
}

.search-input {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border)
}

.search-input::placeholder {
    color: var(--muted)
}

.search-btn {
    background: var(--accent);
    color: white
}

/* Sidebar & nav */
.sidebar {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.6)
}

.nav-link {
    color: var(--text)
}

.nav-link.active,
.nav-link:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.02)
}

/* Cards & content */
.main-content {
    color: var(--text)
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    box-shadow: 0 4px 18px rgba(2, 6, 23, 0.45)
}

.product-card h3 {
    color: var(--text)
}

.product-card p {
    color: var(--subtext)
}

.product-price {
    color: var(--text)
}

.add-to-cart-btn {
    background: var(--accent);
    color: #fff
}

/* Forms & inputs */
input,
textarea,
select {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    color: var(--text)
}

::placeholder {
    color: var(--muted)
}

.submit-btn,
.auth-submit-btn {
    background: var(--accent);
    color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1)
}

/* Auth modal */
.auth-modal .auth-modal-content {
    background: linear-gradient(180deg, rgba(10, 12, 18, 0.9), rgba(6, 8, 12, 0.95));
    border: 1px solid var(--border)
}

.auth-form-container h2 {
    color: var(--text)
}

/* Footer/overlays */
.overlay {
    background: rgba(0, 0, 0, 0.6)
}

/* Cart badge */
.cart-badge {
    background: #ef4444;
    color: #fff
}

/* Make sure loader text remains white */
#pageLoader,
.loader,
.loader .text span {
    color: var(--text)
}

/* subtle tweak for icons visibility */
.icon {
    stroke: var(--text)
}

/* High-priority dark theme overrides for leftover light styles */
/* Uses !important sparingly to ensure legacy rules are covered */
.header,
.search-container,
.auth-modal .auth-modal-content,
.sidebar {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)) !important;
    border-color: var(--border) !important;
}

.menu-toggle,
.icon-btn,
.menu-toggle .icon,
.icon-btn .icon,
.logo h1,
.nav-link,
.tooltip,
.auth-subtitle {
    color: var(--text) !important;
}

.menu-toggle:hover,
.icon-btn:hover,
.icon-btn:focus {
    color: var(--text) !important;
    background: rgba(255, 255, 255, 0.03) !important;
}

.search-container,
.search-wrapper,
.search-input,
.search-btn,
.search-close-btn {
    background: transparent !important;
}

/* Professional Form Inputs - ChatGPT Style */
.search-input,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
select {
    background: rgba(255, 255, 255, 0.03) !important;
    color: var(--text) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: var(--radius) !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    font-family: 'Söhne', 'Helvetica Neue', 'Arial', sans-serif !important;
    transition: all 0.2s ease !important;
}

.search-input:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05) !important;
}

.search-input::placeholder,
input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 14px !important;
}

.search-btn,
.submit-btn,
.auth-submit-btn,
.add-to-cart-btn,
.google-btn {
    background: var(--accent) !important;
    color: #000 !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 12px !important;
    padding: 0.75rem 1.5rem !important;
    font-weight: 600 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: var(--shadow-sm) !important;
}

.search-btn:hover,
.submit-btn:hover,
.auth-submit-btn:hover,
.add-to-cart-btn:hover {
    background: var(--accent-hover) !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-md) !important;
}

.tooltip {
    background: rgba(0, 0, 0, 0.7) !important;
    color: var(--text) !important;
}

.nav-link,
.nav-menu li a,
.nav-menu li {
    color: var(--text) !important;
}

.nav-link.active,
.nav-link:hover {
    color: var(--text) !important;
    background: rgba(255, 255, 255, 0.02) !important;
}

.product-card,
.contact-form,
.auth-forms {
    background: var(--card-bg) !important;
    border: 1px solid var(--border) !important;
    color: var(--text) !important;
}

.auth-form-container {
    background: var(--card-bg) !important;
    border: none !important;
    color: var(--text) !important;
}

.product-card p,
.form-group label,
.contact-form label {
    color: var(--subtext) !important;
}

/* Fix any hard-coded whites on buttons or icons */
button,
.button,
.icon-btn {
    color: var(--text) !important;
}

/* Ensure modal texts are visible */
.auth-form-container p,
.auth-form-container label,
.auth-form-container input {
    color: var(--subtext) !important;
}

/* Badge contrast */
.cart-badge {
    background: #ef4444 !important;
    color: #fff !important;
}

/* Ensure loader remains visible and white text */
#pageLoader,
#pageLoader .loader,
#pageLoader .loader .text span {
    color: var(--text) !important;
}

/* Floating Particles Background */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(10px, -10px);
    }

    50% {
        transform: translate(-5px, -20px);
    }

    75% {
        transform: translate(-10px, -10px);
    }
}

/* Gift Box Particles */
.gift-particle {
    position: absolute;
    color: #2ed573;
    animation: floatGiftBox ease-in-out infinite;
}

.gift-particle svg {
    width: 100%;
    height: 100%;
    stroke: #2ed573;
}

@keyframes floatGiftBox {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Header */
.header {
    background: #0a0a0a;
    /* solid to match homescreen */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.05rem 0;
    /* Base height (desktop/tablet) */
    border-bottom: none !important;
    /* ensure no line */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    z-index: 1000;
    box-shadow: none;
    /* remove shadow that may render as line */
    transform: translateZ(0);
    /* mitigate iOS hairline rendering */
    overflow: hidden;
}

/* Mobile adjustments: increase navbar height & reduce search bar height */
@media (max-width: 768px) {
    .header {
        padding: 1.4rem 0;
        box-shadow: none;
    }

    .header-container {
        min-height: 80px;
    }

    .search-wrapper {
        max-height: 38px;
    }

    .search-input {
        padding: 8px 16px !important;
        font-size: 15px !important;
        line-height: 20px !important;
    }

    .search-container {
        padding: 0 1rem;
        max-width: 95%;
        margin: 0 auto;
    }
}

/* Extra small (phone) tweaks for slimmer search bar */
@media (max-width: 480px) {
    .search-wrapper {
        max-height: 36px;
    }

    .search-input {
        padding: 7px 14px !important;
        font-size: 14px !important;
    }

    .main-content {
        padding-top: 170px !important;
    }

    .hero-content {
        margin-top: 3rem !important;
    }

    html,
    body {
        overflow-x: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    body {
        position: relative !important;
    }

    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .header,
    .header-container,
    .search-container,
    .search-wrapper {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Remove search icon globally for sleek style */
.search-btn {
    display: none !important;
}

/* Floating style for search bar (like Myntra) */
.search-container {
    padding: 0 1.25rem;
    position: relative;
}

.search-container::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    height: 12px;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.3) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
    filter: blur(2px);
}

/* Flatten search: remove pill & border so it visually merges with hero background */
.search-wrapper {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    display: block;
    width: 100%;
    box-shadow: none !important;
}

.search-input {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    background: transparent !important;
    /* inherit header bg which matches homescreen */
    border: none !important;
    /* no edge to differentiate */
    border-radius: 12px !important;
    /* light rounding only */
    padding: 10px 16px !important;
    font-size: 15px !important;
    line-height: 22px !important;
    outline: none !important;
}

.search-input:focus {
    background: transparent !important;
    border: none !important;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset !important;
    /* minimal focus cue */
}

.search-wrapper.use-png {
    position: relative;
    min-height: 44px;
}

.search-wrapper.use-png::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('assets/searchbar.png') no-repeat center / 100% 100%;
    pointer-events: none;
    /* keep input interactive */
}

.search-wrapper.use-png .search-input {
    background: transparent !important;
    padding-left: 18px !important;
}

@media (max-width: 768px) {
    .search-container {
        margin-top: 0.5rem;
    }

    .main-content {
        padding-top: 220px !important;
    }

    .hero-section {
        padding-top: 4rem !important;
    }
}

/* Force removal of any accidental borders around search elements */
.search-container,
.search-wrapper,
.search-input {
    border-bottom: none !important;
}

/* Footer styles */
.site-footer {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 1.5rem 0 0.75rem;
    /* remove lateral padding for true full-bleed */
    background: #000;
    /* solid full-bleed background */
    color: var(--subtext);
    width: 100%;
}

.footer-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    /* remove centering that creates side gap perception on very small screens */
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.footer-col h3,
.footer-col h4 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-col p {
    color: var(--subtext);
    font-size: 0.85rem;
    line-height: 1.4;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
}

.footer-col ul li a {
    color: var(--subtext);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: var(--text);
}

.newsletter-form {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 150px;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
    font-size: 0.85rem;
}

.newsletter-form button {
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    border: none;
    background: var(--accent);
    color: #fff;
    cursor: pointer;
    font-size: 0.85rem;
    white-space: nowrap;
}

.socials {
    margin-top: 0.5rem;
    color: var(--subtext);
    font-size: 0.85rem
}

.footer-bottom {
    width: 100%;
    max-width: 1200px;
    margin: 0.75rem auto 0;
    padding: 0.75rem 1rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: var(--subtext);
    font-size: 0.8rem;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 520px) {
    .footer-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.75rem 0.5rem 0 0.5rem;
    }

    .header-container {
        padding: 0 0.75rem;
        min-height: 60px;
    }

    .logo-img,
    .logo .logo-img svg {
        max-width: 140px;
        height: auto;
    }

    .hero-section {
        padding-top: 85px;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .hero-container {
        padding: 0 0.5rem;
    }

    .hero-eyebrow {
        margin-bottom: 0.8rem;
        font-size: 0.85rem;
    }

    .hero-heading {
        font-size: clamp(1.8rem, 7.2vw, 2.15rem);
        line-height: 1.18;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .counter-widget {
        padding: 16px 8px;
        margin: 2rem 0.5rem;
    }

    .slots-container {
        gap: 8px;
        padding: 12px 6px;
    }

    .slot {
        width: 54px;
        height: 80px;
        min-width: 48px;
    }

    .slot-number {
        height: 80px;
        font-size: 38px;
        letter-spacing: -1px;
    }

    .counter-label {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .view-all-btn {
        padding: 8px 24px;
    }

    .main-content {
        padding-top: 75px;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .search-wrapper {
        padding: 0 0.5rem;
    }

    .content-section {
        padding: 0 0.5rem;
    }

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

    :root {
        --header-height: 72px;
    }

    /* Global layout overrides */
    .header {
        border-bottom: none !important;
    }

    /* Ensure consistent top offset for all main content wrappers */
    .main-content {
        padding-top: calc(var(--header-height) + 1rem) !important;
    }

    /* Hero adjustments: remove excessive internal top padding and fit viewport */
    .hero-section {
        min-height: calc(100vh - var(--header-height));
        padding-top: 1.25rem !important;
    }

    .hero-heading {
        font-size: clamp(2.2rem, 6vw, 3rem);
        line-height: 1.15;
    }

    @media (max-width: 1024px) {
        .hero-heading {
            font-size: clamp(2.05rem, 6.5vw, 2.7rem);
        }
    }

    @media (max-width: 768px) {
        .hero-heading {
            font-size: clamp(1.85rem, 7vw, 2.25rem);
            line-height: 1.18;
        }
    }

    @media (max-width: 520px) {
        .hero-heading {
            font-size: clamp(1.7rem, 7.2vw, 2rem);
            line-height: 1.2;
        }
    }

    @media (max-width: 480px) {
        .hero-heading {
            font-size: clamp(1.55rem, 8vw, 1.85rem);
            line-height: 1.22;
        }
    }

    @media (max-width: 380px) {
        .hero-heading {
            font-size: clamp(1.4rem, 9vw, 1.65rem);
            line-height: 1.25;
        }
    }

    /* Highlight badges smaller on narrow screens */
    @media (max-width: 520px) {
        .hero-highlights li {
            font-size: 0.7rem !important;
            padding: 0.4rem 0.55rem !important;
        }
    }

    @media (max-width: 380px) {
        .hero-highlights li {
            font-size: 0.65rem !important;
            padding: 0.35rem 0.5rem !important;
        }
    }
}

/* Ensure main content doesn't get overlapped by footer */
.main-content {
    padding-bottom: 3.5rem;
    padding-top: 100px;
    opacity: 1;
    transition: opacity 0.2s ease;
    max-width: 100%;
    overflow-x: visible;
    /* allow horizontal content to be seen; fix right-side crop */
}

.header-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    flex-wrap: nowrap;
    min-height: 72px;
    /* Taller navbar */
    overflow: hidden;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text);
    transition: color 0.2s ease;
    justify-self: start;
    margin-right: auto;
}

.menu-toggle:hover {
    color: var(--text);
}

.menu-toggle .icon {
    width: 1.5rem;
    height: 1.5rem;
}

.logo {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
    min-width: 0;
    justify-self: start;
}

.logo:hover {
    opacity: 0.9;
}

.logo h1 {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Logo image / SVG styling - keep both logos consistent and unified */
.logo-img {
    height: 50px;
    max-height: 50px;
    width: auto;
    display: block;
}

/* Ensure the second logo (previously logo2) matches the first logo size
   and sits inline so both appear as a single combined mark. Remove large
   offsets and blending that separated them visually. */
.logo-img:nth-child(2) {
    height: 45px;
    max-height: 45px;
    /* remove horizontal negative translation to prevent overflow clipping */
    transform: translateY(2px);
    margin-left: 4px;
    /* small positive gap ensures no negative overflow */
    mix-blend-mode: normal;
    filter: none;
    opacity: 1;
}

/* If the second element is an inline SVG, make sure it scales responsively */
.logo .logo-img[role="img"],
.logo .logo-img svg {
    height: 50px;
    width: auto;
    display: block;
}

/* Footer logo variant */
.footer-logo {
    height: 36px;
    width: auto;
    display: block;
    margin-bottom: 0.5rem;
}

/* Utility: visually hidden (for accessible headings) */
.sr-only {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
    border: 0;
    padding: 0;
    margin: -1px;
}

.search-container {
    display: none;
    padding: 1rem;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.search-container.active {
    display: block;
}

.search-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.search-input {
    flex: 1;
    padding: 0.65rem 1rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    background: var(--surface);
    color: var(--text);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.search-btn {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 0.65rem 1.25rem;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.search-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.search-btn .icon {
    width: 1.125rem;
    height: 1.125rem;
}

.search-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: color 0.2s ease;
}

.search-close-btn:hover {
    color: var(--text);
}

.search-close-btn .icon {
    width: 1.25rem;
    height: 1.25rem;
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    position: relative;
    flex-shrink: 0;
    flex-wrap: nowrap;
    justify-self: end;
    overflow: visible;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 0.6rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    color: var(--text) !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.08);
}

.icon-btn:hover .icon {
    transform: scale(1.15);
    filter: brightness(1.3);
}

/* Tooltip Styles */
.tooltip {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0, 0, 0, 0.7) !important;
    color: var(--text) !important;
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10000 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    min-width: max-content;
    display: block !important;
}

.tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #333;
}

.icon-btn:hover .tooltip {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0);
}

.icon {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: red;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Sidebar */
/* Professional Dropdown-Style Sidebar */
.sidebar {
    position: fixed;
    left: -320px;
    top: 0;
    width: 280px;
    height: 100vh;
    background: rgba(18, 18, 22, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
    overflow-y: scroll;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.7);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.sidebar::-webkit-scrollbar {
    display: none;
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.02);
}

.sidebar-header h2 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.close-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
    padding: 6px;
    width: 28px;
    height: 28px;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.close-btn .icon {
    width: 14px;
    height: 14px;
}

/* Sidebar nav menu (mobile menu) */
.sidebar .nav-menu {
    list-style: none;
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Desktop horizontal nav menu */
.header-container .nav-menu {
    list-style: none;
    display: none;
}

@media (min-width: 769px) {
    .header-container .nav-menu {
        display: flex;
        gap: 2rem;
        padding: 0;
        margin: 0;
        align-items: center;
        flex-shrink: 0;
        justify-self: center;
    }
}

.nav-menu li {
    margin-bottom: 2px;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.15s ease;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.nav-link.active {
    background: rgba(46, 213, 115, 0.12);
    color: rgb(46, 213, 115);
}

/* Overlay */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 1500;
    transition: opacity 0.3s ease;
}

.overlay.active {
    display: block;
}

/* Main Content */
/* Centered Professional Main Content */
.main-content {
    position: relative;
    z-index: 1;
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.content-section {
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;
    margin-bottom: 3rem;
}

.content-section h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

/* Product Category Tabs */
.product-category-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0;
    padding-top: 1rem;
    width: 100%;
    position: relative;
}

.product-category-tabs::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.8));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.product-category-tabs:has(.category-tab[data-type="free"].active)::after {
    width: 80px;
    transform: translateX(0);
}

.product-category-tabs:has(.category-tab[data-type="premium"].active)::after {
    width: 120px;
    transform: translateX(90px);
}

.category-tab {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.75rem 1.5rem;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Söhne', 'Helvetica Neue', 'Arial', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    bottom: -1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-tab img.crown-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.6));
}

.category-tab:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.category-tab.active {
    color: #fff;
}

/* Home category tabs specific styling */
.home-category-tabs {
    margin: 0.5rem auto 2rem;
    justify-content: center;
    max-width: fit-content;
    position: relative;
}

.home-category-tabs .category-tab {
    min-width: auto;
    position: relative;
}

.home-category-tabs::after {
    display: none;
}

.home-category-tabs .tab-underline {
    position: absolute;
    bottom: -1px;
    height: 2px;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.8));
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* View Details Button with Shine Effect - Same style as Buy Now */
.view-details-btn {
    cursor: pointer !important;
    font-size: 13px !important;
    border-radius: 8px !important;
    border: none !important;
    padding: 8px 14px !important;
    background: linear-gradient(135deg, #ffffff 0%, #f2f2f2 100%) !important;
    color: #000 !important;
    font-family: 'Poppins', sans-serif !important;
    transition: all 0.16s ease !important;
    width: auto !important;
    min-width: 110px !important;
    overflow: hidden !important;
    position: relative !important;
    font-weight: 600 !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.35rem !important;
    margin-top: 0.35rem !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
}

.view-details-btn * {
    color: #000 !important;
}

.view-details-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.6s ease;
}

.view-details-btn:hover::before {
    left: 100%;
}

.view-details-btn:hover {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%) !important;
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px) !important;
}

.view-details-btn:active {
    transform: translateY(0) !important;
}

.view-details-btn svg {
    transition: transform 0.3s ease;
    stroke: #000 !important;
}

.view-details-btn:hover svg {
    transform: translateX(4px);
}

/* Professional Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
    padding: 0;
}

#productsGrid .product-card {
    height: 100%;
    min-height: 420px;
}

/* Home Products Horizontal Scroll */
#homeProductsGrid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

/* Mobile: Use single column grid layout instead of horizontal scroll */
@media (max-width: 768px) {
    #homeProductsGrid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        overflow-x: visible;
        padding-bottom: 0;
    }

    #homeProductsGrid .product-card {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }
}

#homeProductsGrid::-webkit-scrollbar {
    height: 4px;
}

#homeProductsGrid::-webkit-scrollbar-track {
    background: transparent;
}

#homeProductsGrid::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #22c55e 0%, #10b981 50%, #22c55e 100%);
    border-radius: 10px;
}

#homeProductsGrid::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #16a34a 0%, #059669 50%, #16a34a 100%);
}

#homeProductsGrid .product-card {
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
}

/* View All Button */
.view-all-btn {
    display: inline-block;
    padding: 10px 60px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    margin: 2rem auto;
    text-align: center;
}

.view-all-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(46, 213, 115, 0.5);
    transform: translateY(-2px);
}

.view-all-container {
    text-align: center;
    margin: 2rem 0;
}

/* Digital Counter Widget */
.counter-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 28px 16px;
    margin: 3rem 1rem;
    max-width: 500px;
    width: 100%;
    background: linear-gradient(145deg, #0a0a0a, #000000);
    border-radius: 20px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.9),
        0 0 1px rgba(0, 255, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 0, 0.08);
    margin-left: auto;
    margin-right: auto;
}

.slots-container {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: nowrap;
    padding: 20px 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.8);
    width: 100%;
    max-width: 100%;
}

.slot {
    width: 70px;
    height: 100px;
    flex-shrink: 1;
    min-width: 50px;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow:
        inset 0 4px 20px rgba(0, 0, 0, 0.9),
        0 8px 40px rgba(0, 255, 0, 0.06),
        0 0 1px rgba(0, 255, 0, 0.15);
    border: 2px solid rgba(0, 255, 0, 0.1);
}

.slot-reel {
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slot-number {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    font-weight: 300;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.3);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -2px;
}

.slot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 25%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
    z-index: 2;
    pointer-events: none;
}

.slot::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 25%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    z-index: 2;
    pointer-events: none;
}

.counter-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Free Product Modal */
.free-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.free-modal-content {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 2rem;
    border-radius: 16px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    border: 1px solid rgba(0, 255, 0, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

.free-modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-family: 'Poppins', sans-serif;
}

.free-modal-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.free-name-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 0, 0.25);
    border-radius: 10px;
    color: var(--text);
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.free-name-input:focus {
    outline: none;
    border-color: rgba(0, 255, 0, 0.5);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.1);
}

.free-continue-btn {
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.free-continue-btn:hover {
    background: linear-gradient(145deg, #222, #111);
    border-color: rgba(0, 255, 0, 0.5);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
}

.free-continue-btn:active {
    transform: scale(0.98);
}

/* Get Code Button for Free Products */
.get-code-btn {
    /* No special styling - uses default add-to-cart-btn styles */
}

/* Products Control Bar */
.products-control-bar {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

.search-container {
    position: relative;
    flex: 1;
    min-width: 300px;
}

.product-search-input {
    width: 100%;
    padding: 12px 45px 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text);
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.product-search-input:focus {
    outline: none;
    border-color: rgba(46, 213, 115, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.filter-controls {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.products-count {
    color: rgba(255, 255, 255, 0.6);
    \n font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.products-count {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.filter-select {
    padding: 6px 10px;
    background: transparent;
    border: none;
    outline: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none;
}

.filter-select:hover {
    color: rgba(255, 255, 255, 0.9);
}

.filter-select:focus {
    outline: none;
    background: transparent;
    color: rgba(255, 255, 255, 1);
}

.filter-select option {
    background: #0a0a0a;
    color: var(--text);
    padding: 8px;
    font-size: 13px;
}

/* FAQ Section */
.faq-section {
    width: 100%;
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 2rem 1.5rem;
}

.faq-container {
    width: 100%;
}

.faq-heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text);
    text-align: center;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.faq-subheading {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(46, 213, 115, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: rgba(46, 213, 115, 0.9);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.5);
    width: 16px;
    height: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: rgba(46, 213, 115, 0.9);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.25rem;
}

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

.faq-answer p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    font-size: 0.875rem;
    font-family: 'Poppins', sans-serif;
}

/* ChatGPT-Style Product Cards */
.product-card {
    border: 2px solid rgba(46, 213, 115, 0.2);
    background: #000000;
    border-radius: 16px;
    padding: 0;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg,
            rgb(46, 213, 115),
            rgb(0, 0, 0),
            rgb(46, 213, 115));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    border-image: linear-gradient(135deg, rgb(46, 213, 115), rgb(0, 0, 0), rgb(46, 213, 115)) 1;
    border-image-slice: 1;
    transform: none;
    /* prevent scale-based overflow on mobile */
}

@media (hover: hover) and (min-width: 769px) {
    .product-card:hover {
        transform: translateZ(0);
    }
}

.product-image {
    color: var(--subtext);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 14px 14px 0 0;
}

.product-image .icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.product-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0;
}

.product-card p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0;
    color: #ffffff;
    letter-spacing: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.product-info {
    padding: 1.25rem;
    flex: 1;
}

.original-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    margin-right: 0.5rem;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.selling-price {
    color: #ffffff;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0;
}

/* Section Divider */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(46, 213, 115, 0.5) 50%, transparent);
    margin: 1.5rem 0;
}

.sale-badge {
    display: none;
}

.sale-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -6px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 6px 0;
    border-color: transparent #000000 transparent transparent;
}

.sale-badge::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -6px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 6px 0 0;
    border-color: #000000 transparent transparent transparent;
}

.add-to-cart-btn {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: var(--radius);
    cursor: pointer;
    width: 100%;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    font-family: 'Söhne', 'Helvetica Neue', 'Arial', sans-serif;
}

.add-to-cart-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Professional Auth Forms - ChatGPT Style */
.auth-forms {
    max-width: 420px;
    margin: 2rem auto;
    padding: 3rem 2.5rem;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-form {
    display: block;
}

.auth-form.hidden {
    display: none;
}

.auth-form h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text);
    font-size: 1.75rem;
    font-weight: 600;
}

.auth-separator {
    position: relative;
    text-align: center;
    margin: 2rem 0;
}

.auth-separator::before,
.auth-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.auth-separator::before {
    left: 0;
}

.auth-separator::after {
    right: 0;
}

.auth-separator span {
    background: transparent;
    padding: 0 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 500;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Söhne', 'Helvetica Neue', 'Arial', sans-serif;
}

.google-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.google-btn img {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    border-radius: 4px;
}

.auth-switch {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.auth-switch a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-switch a:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Professional Contact Form - ChatGPT Style */
.contact-form {
    max-width: 700px;
    margin: 2rem auto;
    padding: 2.5rem;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: 'Söhne', 'Helvetica Neue', 'Arial', sans-serif;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    transition: all 0.2s ease;
}
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.submit-btn {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 0.85rem 2.5rem;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.submit-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Auth Modal Styles */
.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.auth-modal.active {
    display: flex;
}

.auth-modal-content {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: none;
    backdrop-filter: blur(12px);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--subtext);
    transition: color 0.2s ease;
    border-radius: 4px;
}

.auth-close-btn:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.03);
}

.auth-form-container h2 {
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
    color: var(--text);
}

.auth-subtitle {
    color: var(--subtext);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.auth-form {
    margin-bottom: 1.5rem;
}

.auth-form .form-group {
    margin-bottom: 1.25rem;
}

.auth-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--subtext);
    font-size: 0.9rem;
}

.auth-form .form-group input {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    background: var(--surface);
    color: var(--text);
}

.auth-form .form-group input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.auth-submit-btn {
    width: 100%;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 0.875rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: filter 0.2s ease;
    margin: 0.5rem auto 0;
    display: block;
}

.auth-submit-btn:hover {
    filter: brightness(0.95);
}

.auth-submit-btn:active {
    transform: scale(0.98);
}

.auth-switch {
    text-align: center;
    color: var(--subtext);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.auth-switch-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-switch-link:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    .logo h1 {
        font-size: 1.25rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-container {
        gap: 0.6rem;
        min-height: 64px;
        /* unify mobile navbar height */
        padding: 0 0.85rem;
    }

    .logo h1 {
        font-size: 1.05rem;
    }

    .search-input {
        font-size: 0.95rem;
    }

    .icon-btn .icon {
        width: 1.3rem;
        height: 1.3rem;
    }


    /* Page loader overlay styles */
    #pageLoader {
        position: fixed;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.65);
        z-index: 9999;
    }

    /* Logout loader overlay styles */
    #logoutLoader {
        position: fixed;
        inset: 0;
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.95);
        z-index: 999999 !important;
        gap: 2rem;
    }

    /* Hide logout loader in admin pages */
    body[data-admin-page] #logoutLoader {
        display: none !important;
    }

    #logoutLoader.active {
        display: flex !important;
        visibility: visible !important;
    }

    .logout-message {
        font-family: 'Söhne', 'Helvetica Neue', 'Arial', sans-serif;
        font-size: clamp(1.5rem, 3vw, 2.5rem);
        font-weight: 700;
        color: #ef4444;
        text-align: center;
        letter-spacing: 0.5px;
        animation: fadeInOut 2s ease-in-out infinite;
    }

    .logout-success-message {
        font-family: 'Söhne', 'Helvetica Neue', 'Arial', sans-serif;
        font-size: clamp(1.8rem, 3.5vw, 3rem);
        font-weight: 700;
        color: #10b981;
        text-align: center;
        letter-spacing: 0.5px;
        opacity: 0;
        animation: successFade 0.5s ease-in forwards;
    }

    @keyframes fadeInOut {

        0%,
        100% {
            opacity: 0.6;
        }

        50% {
            opacity: 1;
        }
    }

    @keyframes successFade {
        to {
            opacity: 1;
        }
    }

    .logout-spinner {
        width: 60px;
        height: 60px;
        border: 4px solid rgba(239, 68, 68, 0.2);
        border-top-color: #ef4444;
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    /* Loader animation styles (from Uiverse snippet) */
    .loader {
        --main-size: 4em;
        --text-color: #ffffff;
        --shine-color: #ffffff40;
        --shadow-color: #aaaaaa;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        user-select: none;
        position: relative;
        font-size: var(--main-size);
        font-weight: 900;
        text-transform: uppercase;
        color: var(--text-color);
        width: 7.3em;
        height: 1em;
        filter: drop-shadow(0 0 0.05em var(--shine-color));
    }

    .loader .text {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        position: absolute;
    }

    .loader .text:nth-child(1) {
        clip-path: polygon(0% 0%, 11.11% 0%, 11.11% 100%, 0% 100%);
        font-size: calc(var(--main-size) / 20);
        margin-left: -2.1em;
        opacity: 0.6;
    }

    .loader .text:nth-child(2) {
        clip-path: polygon(11.11% 0%, 22.22% 0%, 22.22% 100%, 11.11% 100%);
        font-size: calc(var(--main-size) / 16);
        margin-left: -0.98em;
        opacity: 0.7;
    }

    .loader .text:nth-child(3) {
        clip-path: polygon(22.22% 0%, 33.33% 0%, 33.33% 100%, 22.22% 100%);
        font-size: calc(var(--main-size) / 13);
        margin-left: -0.33em;
        opacity: 0.8;
    }

    .loader .text:nth-child(4) {
        clip-path: polygon(33.33% 0%, 44.44% 0%, 44.44% 100%, 33.33% 100%);
        font-size: calc(var(--main-size) / 11);
        margin-left: -0.05em;
        opacity: 0.9;
    }

    .loader .text:nth-child(5) {
        clip-path: polygon(44.44% 0%, 55.55% 0%, 55.55% 100%, 44.44% 100%);
        font-size: calc(var(--main-size) / 10);
        margin-left: 0em;
        opacity: 1;
    }

    .loader .text:nth-child(6) {
        clip-path: polygon(55.55% 0%, 66.66% 0%, 66.66% 100%, 55.55% 100%);
        font-size: calc(var(--main-size) / 11);
        margin-left: 0.05em;
        opacity: 0.9;
    }

    .loader .text:nth-child(7) {
        clip-path: polygon(66.66% 0%, 77.77% 0%, 77.77% 100%, 66.66% 100%);
        font-size: calc(var(--main-size) / 13);
        margin-left: 0.33em;
        opacity: 0.8;
    }

    .loader .text:nth-child(8) {
        clip-path: polygon(77.77% 0%, 88.88% 0%, 88.88% 100%, 77.77% 100%);
        font-size: calc(var(--main-size) / 16);
        margin-left: 0.98em;
        opacity: 0.7;
    }

    .loader .text:nth-child(9) {
        clip-path: polygon(88.88% 0%, 100% 0%, 100% 100%, 88.88% 100%);
        font-size: calc(var(--main-size) / 20);
        margin-left: 2.1em;
        opacity: 0.6;
    }

    .loader .text span {
        animation:
            scrolling 2s cubic-bezier(0.1, 0.6, 0.9, 0.4) infinite,
            shadow 2s cubic-bezier(0.1, 0.6, 0.9, 0.4) infinite;
    }

    .loader .text:nth-child(1) span {
        background: linear-gradient(to right,
                var(--text-color) 4%,
                var(--shadow-color) 7%);
        background-size: 200% auto;
        background-clip: text;
        color: transparent;
    }

    .loader .text:nth-child(2) span {
        background: linear-gradient(to right,
                var(--text-color) 9%,
                var(--shadow-color) 13%);
        background-size: 200% auto;
        background-clip: text;
        color: transparent;
    }

    .loader .text:nth-child(3) span {
        background: linear-gradient(to right,
                var(--text-color) 15%,
                var(--shadow-color) 18%);
        background-size: 200% auto;
        background-clip: text;
        color: transparent;
    }

    .loader .text:nth-child(4) span {
        background: linear-gradient(to right,
                var(--text-color) 20%,
                var(--shadow-color) 23%);
        background-size: 200% auto;
        background-clip: text;
        color: transparent;
    }

    .loader .text:nth-child(6) span {
        background: linear-gradient(to right,
                var(--shadow-color) 29%,
                var(--text-color) 32%);
        background-size: 200% auto;
        background-clip: text;
        color: transparent;
    }

    .loader .text:nth-child(7) span {
        background: linear-gradient(to right,
                var(--shadow-color) 34%,
                var(--text-color) 37%);
        background-size: 200% auto;
        background-clip: text;
        color: transparent;
    }

    .loader .text:nth-child(8) span {
        background: linear-gradient(to right,
                var(--shadow-color) 39%,
                var(--text-color) 42%);
        background-size: 200% auto;
        background-clip: text;
        color: transparent;
    }

    .loader .text:nth-child(9) span {
        background: linear-gradient(to right,
                var(--shadow-color) 45%,
                var(--text-color) 48%);
        background-size: 200% auto;
        background-clip: text;
        color: transparent;
    }

    .loader .line {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        height: 0.05em;
        width: calc(var(--main-size) / 2);
        margin-top: 0.9em;
        border-radius: 0.05em;
    }

    .loader .line::before {
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        background-color: var(--text-color);
        opacity: 0.3;
    }

    .loader .line::after {
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        background-color: var(--text-color);
        border-radius: 0.05em;
        transform: translateX(-90%);
        animation: wobble 2s cubic-bezier(0.5, 0.8, 0.5, 0.2) infinite;
    }

    @keyframes wobble {
        0% {
            transform: translateX(-90%);
        }

        50% {
            transform: translateX(90%);
        }

        100% {
            transform: translateX(-90%);
        }
    }

    @keyframes scrolling {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(100%);
        }
    }

    @keyframes shadow {
        0% {
            background-position: -98% 0;
        }

        100% {
            background-position: 102% 0;
        }
    }

    .auth-modal-content {
        padding: 1.5rem;
        width: 95%;
    }

    .auth-form-container h2 {
        font-size: 1.5rem;
    }
}

/* User Panel Styles */
.user-panel {
    position: relative;
    display: flex;
    align-items: center;
}

.user-panel-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
    color: var(--text);
}

.user-panel-trigger:hover {
    background: rgba(255, 255, 255, 0.03);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
    background: linear-gradient(135deg, #1E3A5F 0%, #2980B9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
}

.user-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}

.dropdown-icon {
    color: var(--subtext);
    transition: transform 0.2s ease;
}

.user-panel-trigger:hover .dropdown-icon {
    color: var(--text);
}

/* Professional User Panel Dropdown - ChatGPT Style */
.user-panel-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 220px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    margin-top: 0.75rem;
    padding: 8px;
}

.user-panel-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Professional User Panel Links - ChatGPT Style */
.user-panel-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 12px 16px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    border-radius: 12px;
    margin: 2px 8px;
}

.user-panel-link:hover {
    background: rgba(255, 255, 255, 0.05);
}

.user-panel-link .icon {
    width: 16px;
    height: 16px;
    opacity: 0.8;
}

.user-panel-link:hover .icon {
    opacity: 1;
}

.user-panel-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0;
    opacity: 0.5;
}

/* Professional Logout Button - ChatGPT Style */
.user-panel-logout {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: calc(100% - 16px);
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    color: #ff4444;
    border: 1px solid rgba(255, 68, 68, 0.2);
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    margin: 8px;
}

.user-panel-logout:hover {
    background: rgba(255, 68, 68, 0.1);
    border-color: rgba(255, 68, 68, 0.4);
}

/* Hide logout icon */
.user-panel-logout .icon {
    display: none !important;
}

/* Responsive adjustments for user panel */
@media (max-width: 768px) {
    .user-panel-trigger {
        padding: 0.4rem 0.6rem;
    }

    .user-avatar {
        width: 28px;
        height: 28px;
    }

    .user-name {
        font-size: 0.85rem;
    }

    .user-panel-dropdown {
        min-width: 180px;
    }

    .user-panel-link {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }

    .user-panel-logout {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
}

/* Final high-specificity overrides to catch any remaining light styles */
.nav-link {
    color: var(--text) !important;
    font-weight: 600 !important;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.03) !important;
    color: var(--text) !important;
}

.sidebar {
    background: linear-gradient(180deg, rgba(18, 18, 22, 0.92), rgba(12, 12, 14, 0.9)) !important;
    box-shadow: 2px 0 18px rgba(0, 0, 0, 0.6) !important;
}

.nav-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
}

.product-card {
    border: 1px solid var(--border) !important;
    background: var(--card-bg) !important;
}

.product-image,
.product-card p {
    color: var(--subtext) !important;
}

.product-price {
    color: var(--text) !important;
}

.submit-btn,
.auth-submit-btn,
.add-to-cart-btn {
    /* translucent accent buttons */
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.92), rgba(94, 35, 190, 0.85)) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
}

.auth-modal-content {
    /* glassy/translucent modal override */
    background: linear-gradient(180deg, rgba(18, 18, 22, 0.64), rgba(10, 10, 12, 0.56)) !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7) !important;
    border-radius: 12px !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

.auth-close-btn {
    color: var(--subtext) !important;
}

.auth-close-btn:hover {
    color: var(--text) !important;
    background: rgba(255, 255, 255, 0.03) !important;
}

.auth-form-container h2 {
    color: var(--text) !important;
}

.auth-subtitle,
.auth-form .form-group label,
.auth-switch {
    color: var(--text) !important;
}

.auth-form .form-group input {
    background: rgba(255, 255, 255, 0.02) !important;
    color: var(--text) !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
}

.auth-form .form-group input:focus {
    border-color: rgba(124, 58, 237, 0.9) !important;
    outline: none !important;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.08) !important;
}

/* improve placeholder and button text contrast */
.auth-form .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.google-btn,
.auth-switch-link {
    color: var(--text) !important;
    font-weight: 600 !important;
}

/* ensure buttons and icons are readable */
button,
.button,
.icon-btn {
    color: var(--text) !important;
}

/* small tweak for tooltip arrow color */
.tooltip::before {
    border-bottom-color: rgba(255, 255, 255, 0.06) !important;
}


/* Product Detail Page Styles */
.product-detail-page {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.back-link {
    margin-bottom: 1.5rem;
}

.back-link a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s ease;
}

.back-link a:hover {
    color: var(--text);
}

/* Product Category Tabs */
.product-category-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0;
    padding-top: 1rem;
    width: 100%;
    position: relative;
}

.product-category-tabs::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.8));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.product-category-tabs:has(.category-tab[data-type="free"].active)::after {
    width: 80px;
    transform: translateX(0);
}

.product-category-tabs:has(.category-tab[data-type="premium"].active)::after {
    width: 120px;
    transform: translateX(90px);
}

.category-tab {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.75rem 1.5rem;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Söhne', 'Helvetica Neue', 'Arial', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    bottom: -1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-tab img.crown-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.6));
}

.category-tab:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.category-tab.active {
    color: #fff;
}

.product-detail-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.product-detail-media {
    flex: 1;
    max-width: 500px;
}

.product-detail-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.product-detail-video {
    width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.product-detail-placeholder {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--subtext);
}

.product-detail-info {
    flex: 1;
    min-width: 300px;
}

.product-detail-info h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text);
    font-weight: 700;
    font-family: 'Söhne', 'Helvetica Neue', 'Arial', sans-serif;
}

.product-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 14px;
    font-family: 'Söhne', 'Helvetica Neue', 'Arial', sans-serif;
}

.product-price-detail {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text);
    font-family: 'Söhne', 'Helvetica Neue', 'Arial', sans-serif;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.quantity-selector label {
    font-weight: 600;
    color: var(--text);
    font-size: 14px;
    font-family: 'Söhne', 'Helvetica Neue', 'Arial', sans-serif;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
}

.quantity-btn {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 2.5rem;
    height: 2.5rem;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-family: 'Söhne', 'Helvetica Neue', 'Arial', sans-serif;
}

.quantity-btn:first-child {
    border-radius: 8px 0 0 8px;
    border-right: none;
}

.quantity-btn:last-child {
    border-radius: 0 8px 8px 0;
    border-left: none;
}

.quantity-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.quantity-btn:active {
    transform: translateY(0);
}

.quantity-controls input[type="number"] {
    width: 60px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: none;
    border-right: none;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    -moz-appearance: textfield;
    padding: 0.5rem;
    height: 2.5rem;
}

.quantity-btn:active {
    transform: scale(0.95);
}

.quantity-controls input[type="number"] {
    width: 3rem;
    height: 2.5rem;
    text-align: center;
    border: none;
    background: transparent;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    -moz-appearance: textfield;
}

.quantity-controls input[type="number"]::-webkit-outer-spin-button,
.quantity-controls input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    align-items: flex-start;
}

.buy-now-btn {
    cursor: pointer !important;
    font-size: 14px !important;
    border-radius: 12px !important;
    border: none !important;
    padding: 14px 32px !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%) !important;
    color: #000 !important;
    font-family: 'Poppins', sans-serif !important;
    transition: all 0.3s ease !important;
    width: 100%;
    max-width: 400px;
    overflow: hidden !important;
    position: relative !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2) !important;
}

.buy-now-btn::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent) !important;
    transition: left 0.6s ease !important;
}

.buy-now-btn:hover::before {
    left: 100% !important;
}

.buy-now-btn:hover {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%) !important;
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4) !important;
    transform: translateY(-2px) !important;
}

.buy-now-btn:active {
    transform: translateY(0) !important;
}

.buy-now-btn-inner {
    position: relative !important;
    z-index: 1 !important;
}

.add-to-cart-btn {
    cursor: pointer !important;
    font-size: 14px !important;
    border-radius: 12px !important;
    border: 2px solid #ffffff !important;
    padding: 14px 32px !important;
    background: transparent !important;
    position: relative !important;
    font-family: 'Poppins', sans-serif !important;
    transition: all 0.3s ease !important;
    width: 100%;
    max-width: 400px;
    color: #ffffff !important;
    overflow: hidden !important;
    font-weight: 600 !important;
}

.add-to-cart-btn:active {
    transform: translateY(0) !important;
}

.add-to-cart-btn-inner {
    position: relative !important;
    z-index: 1 !important;
    color: #000 !important;
    font-weight: 600 !important;
}

.add-to-cart-btn-inner::before {
    content: "" !important;
    width: 100% !important;
    height: 100% !important;
    left: 0 !important;

    .add-to-cart-btn:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        border-color: rgba(46, 213, 115, 0.8) !important;
        transform: translateY(-2px) !important;
    }

    #00ff001a,
    #00ff0011,
    transparent) !important;
    position: absolute !important;
    pointer-events: none !important;
    z-index: -1 !important;
}

/* Free Badge */
.free-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-family: 'Söhne', 'Helvetica Neue', 'Arial', sans-serif;
}

/* Get Free Code Button */
.get-free-code-btn {
    cursor: pointer !important;
    font-size: 14px !important;
    border-radius: 12px !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    padding: 14px 32px !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)) !important;
    color: #fff !important;
    font-family: 'Poppins', sans-serif !important;
    transition: all 0.3s ease !important;
    width: 100%;
    max-width: 400px;
    overflow: hidden !important;
    position: relative !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

.get-free-code-btn::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent) !important;
    transition: left 0.6s ease !important;
}

.get-free-code-btn:hover::before {
    left: 100% !important;
}

.get-free-code-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08)) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-2px) !important;
}

.get-free-code-btn:active {
    transform: translateY(0) !important;
}

/* Add to cart button on product detail page */
.add-to-cart-detail-btn {
    cursor: pointer;
    font-size: 14px;
    border-radius: 16px;
    border: none;
    padding: 2px;
    background: radial-gradient(circle 80px at 80% -10%, #ffffff, #181b1b);
    position: relative;
    font-family: 'Söhne', 'Helvetica Neue', 'Arial', sans-serif;
    transition: all 0.3s ease;
    overflow: hidden;
}

.add-to-cart-detail-btn::after {
    content: "";
    position: absolute;
    width: 65%;
    height: 60%;
    border-radius: 120px;
    top: 0;
    right: 0;
    box-shadow: 0 0 20px #ffffff38;
    z-index: -1;
}

.add-to-cart-detail-btn .blob1 {
    position: absolute;
    width: 70px;
    height: 100%;
    border-radius: 16px;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle 60px at 0% 100%,
            #3fff3f,
            #00ff0080,
            transparent);
    box-shadow: -10px 10px 30px #00ff002d;
}

.add-to-cart-detail-btn-inner {
    padding: 14px 25px;
    border-radius: 14px;
    color: #fff;
    z-index: 3;
    position: relative;
    background: radial-gradient(circle 80px at 80% -50%, #777777, #0f1111);
    font-weight: 600;
    letter-spacing: 0.3px;
    display: block;
    text-align: center;
}

.add-to-cart-detail-btn-inner::before {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 14px;
    background: radial-gradient(circle 60px at 0% 100%,
            #00ff001a,
            #00ff0011,
            transparent);
    position: absolute;
    z-index: -1;
}

.add-to-cart-detail-btn:hover::before {
    width: 90px;
    box-shadow: -10px 10px 40px #00ff0055;
}

.add-to-cart-detail-btn:active {
    transform: scale(0.98);
}

.product-description-section h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

/* Cart Page Styles */
.cart-page {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.cart-content {
    margin-bottom: 2rem;
}

/* Cart Table Container */
.cart-table-container {
    width: 100%;
}

/* Cart Table Header */
.cart-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 8px 8px 0 0;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text);
}

.cart-header-product {
    text-align: left;
}

.cart-header-quantity {
    text-align: center;
}

.cart-header-total {
    text-align: right;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2rem;
}

.cart-item-card {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-top: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cart-item-card:last-child {
    border-radius: 0 0 8px 8px;
}

.cart-item-image {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

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

.cart-item-details {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.cart-item-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.cart-item-price {
    font-size: 0.9rem;
    color: var(--subtext);
    margin: 0;
}

/* Cart Item Actions Text Links */
.cart-item-actions-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
}

.cart-text-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    background: none !important;
    border: none;
    padding: 0;
    cursor: pointer;
}

.cart-text-link:hover {
    color: var(--accent) !important;
    background: none !important;
    opacity: 1 !important;
    text-decoration: underline;
}

.remove-text-link:hover {
    color: #ef4444 !important;
    opacity: 1 !important;
}

.wishlist-text-link:hover {
    color: #10b981 !important;
    opacity: 1 !important;
}

.cart-action-separator {
    color: var(--subtext);
    font-weight: 300;
    margin: 0 0.25rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.quantity-display {
    min-width: 2rem;
    text-align: center;
    font-weight: 600;
    color: var(--text);
}

.cart-item-total {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 0.5rem;
}

.item-total-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
}

.remove-item-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    color: var(--subtext);
    transition: all 0.2s ease;
}

.remove-item-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.cart-summary {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cart-summary h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.cost-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.cost-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cost-label {
    color: var(--subtext);
    font-size: 0.9rem;
}

.cost-value {
    color: var(--text);
    font-weight: 500;
}

.discount-row {
    display: none;
    justify-content: space-between;
    align-items: center;
    color: var(--success);
    font-weight: 600;
}

.total-row {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.total-row .cost-label,
.total-row .cost-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
}

.coupon-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.coupon-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.coupon-code {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--surface);
    color: var(--text);
    font-size: 0.9rem;
}

.coupon-code::placeholder {
    color: var(--muted);
}

.apply-coupon-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: filter 0.2s ease;
}

.apply-coupon-btn:hover {
    filter: brightness(0.95);
}

.coupon-message {
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

/* Checkout Button Styles with White Aesthetic */
.checkout-btn,
.checkout-btn-primary {
    width: 100%;
    cursor: pointer;
    font-size: 14px;
    border-radius: 12px;
    border: none;
    padding: 14px 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(240, 240, 240, 0.85) 100%);
    position: relative;
    font-family: 'Söhne', 'Helvetica Neue', 'Arial', sans-serif;
    transition: all 0.3s ease;
    overflow: hidden;
    color: #000;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    margin-top: 1.5rem;
}

.checkout-btn::before,
.checkout-btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.checkout-btn:hover::before,
.checkout-btn-primary:hover::before {
    left: 100%;
}

.checkout-btn:hover,
.checkout-btn-primary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.checkout-btn-inner,
.checkout-btn-primary-inner {
    position: relative;
    z-index: 1;
    color: #000;
    font-weight: 600;
}

.checkout-btn:active,
.checkout-btn-primary:active {
    transform: translateY(0);
}

/* Empty cart message */
.empty-cart {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--subtext);
    font-size: 1.125rem;
}

/* Responsive Design for Cart */
@media (max-width: 768px) {
    .cart-table-header {
        display: none;
    }

    .cart-item-card {
        grid-template-columns: 1fr;
        gap: 1rem;
        border-radius: 8px;
        border-top: 1px solid var(--border);
        margin-bottom: 1rem;
    }

    .cart-item-details {
        order: 1;
    }

    .cart-item-quantity {
        order: 2;
        justify-content: flex-start;
    }

    .cart-item-total {
        order: 3;
        align-items: flex-start;
    }

    .cart-summary {
        padding: 1rem;
    }

    .coupon-input-group {
        flex-direction: column;
    }

    .apply-coupon-btn {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .cart-page {
        padding: 1rem 0.5rem;
    }

    .cart-item-card {
        padding: 1rem;
    }

    .cart-item-image {
        width: 60px;
        height: 60px;
    }

    .cart-item-title {
        font-size: 1rem;
    }

    .quantity-display {
        min-width: 1.5rem;
        font-size: 0.9rem;
    }

    .cart-text-link {
        font-size: 9px;
    }
}

/* Responsive Design for Product Detail */
@media (max-width: 768px) {
    .product-detail-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .product-detail-media {
        max-width: 100%;
        width: 100%;
    }

    .product-detail-image,
    .product-detail-video,
    .product-detail-placeholder {
        width: 100%;
        max-height: 300px;
    }

    .product-detail-info {
        min-width: auto;
        width: 100%;
    }

    .product-detail-info h1 {
        font-size: 1.75rem;
    }

    .quantity-selector {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .product-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .buy-now-btn,
    .add-to-cart-btn {
        width: 100%;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .product-detail-page {
        padding: 1rem;
    }

    .product-detail-media {
        width: 100%;
    }

    .product-detail-image,
    .product-detail-video,
    .product-detail-placeholder {
        max-height: 250px;
    }

    .product-detail-info h1 {
        font-size: 1.5rem;
    }

    .product-price-detail {
        font-size: 1.25rem;
    }

    .quantity-controls {
        gap: 0.25rem;
    }

    #quantity {
        width: 50px;
        height: 35px;
    }
}

/* ========================================
   PROFESSIONAL ADMIN PANEL - CHATGPT STYLE
   ======================================== */

.admin-header-top {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 1rem 2rem !important;
}

.admin-logo {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    font-family: 'Söhne', 'Helvetica Neue', 'Arial', sans-serif !important;
}

.admin-logout-btn {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ff6b6b !important;
    border: 1px solid rgba(255, 107, 107, 0.2) !important;
    padding: 10px 20px !important;
    border-radius: var(--radius) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    font-family: 'Söhne', 'Helvetica Neue', 'Arial', sans-serif !important;
    transition: all 0.2s ease !important;
}

.admin-logout-btn:hover {
    background: rgba(255, 107, 107, 0.15) !important;
    border-color: rgba(255, 107, 107, 0.4) !important;
    transform: translateY(-2px) !important;
}

.admin-sidebar {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 2rem 1rem !important;
}

.admin-sidebar-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-bottom: 1.5rem !important;
    margin-bottom: 2rem !important;
}

.admin-display-name {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: var(--text) !important;
    font-family: 'Söhne', 'Helvetica Neue', 'Arial', sans-serif !important;
}

.admin-email {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Professional Admin Navigation Links */
.admin-nav-link {
    display: flex !important;
    align-items: center !important;
    padding: 12px 16px !important;
    color: var(--text) !important;
    text-decoration: none !important;
    border-radius: var(--radius) !important;
    transition: all 0.2s ease !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    font-family: 'Söhne', 'Helvetica Neue', 'Arial', sans-serif !important;
    margin-bottom: 4px !important;
}

.admin-nav-link:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    transform: translateX(4px) !important;
}

.admin-nav-link.active {
    background: rgba(255, 255, 255, 0.12) !important;
    color: var(--text) !important;
    font-weight: 600 !important;
}

.admin-nav-link svg {
    width: 20px !important;
    height: 20px !important;
    margin-right: 12px !important;
    opacity: 0.7 !important;
}

.admin-nav-link:hover svg,
.admin-nav-link.active svg {
    opacity: 1 !important;
}

/* Admin Main Content */
.admin-main {
    background: transparent !important;
    padding: 3rem 2rem !important;
}

.admin-greeting {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: var(--text) !important;
    margin-bottom: 0.5rem !important;
    font-family: 'Söhne', 'Helvetica Neue', 'Arial', sans-serif !important;
}

.admin-subtitle {
    font-size: 1.1rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-bottom: 3rem !important;
    font-weight: 400 !important;
}

/* Professional Admin Cards */
.admin-card {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: var(--radius) !important;
    padding: 2.5rem !important;
    margin-bottom: 2rem !important;
    transition: all 0.3s ease !important;
}

.admin-card:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4) !important;
}

.admin-card-title {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: var(--text) !important;
    margin-bottom: 1.5rem !important;
    font-family: 'Söhne', 'Helvetica Neue', 'Arial', sans-serif !important;
}

.admin-card-content {
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.8 !important;
    font-size: 15px !important;
}

/* Admin Statistics Cards */
.stat-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: var(--radius) !important;
    padding: 2rem !important;
    transition: all 0.2s ease !important;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-4px) !important;
}

.stat-value {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: var(--text) !important;
    font-family: 'Söhne', 'Helvetica Neue', 'Arial', sans-serif !important;
}

.stat-label {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 500 !important;
}

/* Loading and Error States */
.loading,
.error {
    text-align: center !important;
    padding: 4rem !important;
    font-size: 1.1rem !important;
    font-family: 'Söhne', 'Helvetica Neue', 'Arial', sans-serif !important;
}

.loading {
    color: rgba(255, 255, 255, 0.6) !important;
}

.error {
    color: #ff6b6b !important;
    background: rgba(255, 107, 107, 0.1) !important;
    border-radius: var(--radius) !important;
    border: 1px solid rgba(255, 107, 107, 0.2) !important;
}

/* Professional Footer */
.site-footer {
    position: relative;
    z-index: 1;
    margin-top: auto;
    background: #000;
    /* unify solid background */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
    /* remove horizontal padding for edge-to-edge */
    color: var(--text);
    font-family: 'Söhne', 'Helvetica Neue', 'Arial', sans-serif;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    /* controlled inner padding; outer is full bleed */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--text);
}

.footer-section .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-section .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.footer-section .social-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: var(--text);
    font-size: 0.95rem;
    font-family: 'Söhne', 'Helvetica Neue', 'Arial', sans-serif;
    transition: all 0.2s ease;
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    padding: 0.875rem 1.75rem;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Söhne', 'Helvetica Neue', 'Arial', sans-serif;
}

.newsletter-form button:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

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

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

/* Toast Notification for Add to Cart */
.toast-notification {
    position: fixed;
    top: 100px;
    right: -400px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.95) 0%, rgba(56, 142, 60, 0.95) 100%);
    color: white;
    padding: 1.25rem 1.75rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(76, 175, 80, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 320px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-family: 'Söhne', 'Helvetica Neue', 'Arial', sans-serif;
}

.toast-notification.show {
    right: 30px;
    animation: slideInBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast-notification.hide {
    right: -400px;
    animation: slideOut 0.3s ease-out;
}

@keyframes slideInBounce {
    0% {
        right: -400px;
        opacity: 0;
    }

    70% {
        right: 40px;
    }

    100% {
        right: 30px;
        opacity: 1;
    }
}

@keyframes slideOut {
    to {
        right: -400px;
        opacity: 0;
    }
}

.toast-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 0.25rem;
}

.toast-message {
    font-size: 13px;
    opacity: 0.95;
}

.toast-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.toast-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Simple Loading Spinner */
.loading-spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    padding-top: 90px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.hero-container {
    max-width: 1000px;
    width: 100%;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-eyebrow {
    color: rgba(46, 213, 115, 0.9);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    display: inline-block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.hero-heading {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    word-break: break-word;
    hyphens: auto;
}

.hero-heading .accent {
    background: linear-gradient(135deg, rgb(74, 222, 128) 0%, rgb(34, 197, 94) 50%, rgb(22, 101, 52) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Gradient only for the word "Snippets" now */
.hero-heading .gradient-snippets {
    background: linear-gradient(135deg, rgb(74, 222, 128) 0%, rgb(34, 197, 94) 50%, rgb(22, 101, 52) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Reusable gradient for other highlighted words like "Fully" */
.hero-heading .gradient-word {
    background: linear-gradient(135deg, rgb(74, 222, 128) 0%, rgb(34, 197, 94) 50%, rgb(22, 101, 52) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-heading .white-text {
    color: #ffffff;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--subtext);
    margin-bottom: 2rem;
    max-width: 700px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.hero-highlights {
    list-style: none;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.hero-highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    font-size: 0.95rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding: 0.55rem 1rem;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 6px;
}

.hero-highlights li svg {
    flex-shrink: 0;
    color: rgb(46, 213, 115);
}

.hero-trust {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2rem;
    font-style: italic;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Hero Button - Primary CTA */
.button {
    --main-color: rgb(46, 213, 115);
    --main-bg-color: rgba(46, 213, 116, 0.36);
    --pattern-color: rgba(46, 213, 116, 0.073);
    filter: hue-rotate(0deg);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    background: radial-gradient(circle,
            var(--main-bg-color) 0%,
            rgba(0, 0, 0, 0) 95%),
        linear-gradient(var(--pattern-color) 1px, transparent 1px),
        linear-gradient(to right, var(--pattern-color) 1px, transparent 1px);
    background-size:
        cover,
        15px 15px,
        15px 15px;
    background-position:
        center center,
        center center,
        center center;
    border-image: radial-gradient(circle,
            var(--main-color) 0%,
            rgba(0, 0, 0, 0) 100%) 1;
    border-width: 1px 0 1px 0;
    border-style: solid;
    color: var(--main-color);
    padding: 1rem 3rem;
    font-weight: 700;
    font-size: 1.5rem;
    transition: background-size 0.2s ease-in-out;
    text-decoration: none;
    display: inline-block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.button:hover {
    background-size:
        cover,
        10px 10px,
        10px 10px;
}

.button:active {
    filter: hue-rotate(250deg);
}

.hero-secondary-btn {
    color: rgba(46, 213, 115, 0.9);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid rgba(46, 213, 115, 0.3);
    padding: 0.9rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.hero-secondary-btn:hover {
    border-color: rgba(46, 213, 115, 0.8);
    background: rgba(46, 213, 115, 0.1);
    transform: translateY(-2px);
}

/* Hero Visual - Featured Product Card */
.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(46, 213, 115, 0.2);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(46, 213, 115, 0.1),
        inset 0 0 60px rgba(46, 213, 115, 0.05);
}

.hero-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(46, 213, 115, 0.3),
        inset 0 0 80px rgba(46, 213, 115, 0.08),
        0 0 60px rgba(46, 213, 115, 0.2);
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(135deg, rgba(46, 213, 115, 0.1), transparent);
    border-radius: 20px 20px 0 0;
}

.card-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, rgb(46, 213, 115), rgb(34, 197, 94));
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(46, 213, 115, 0.4);
}

.card-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, rgba(46, 213, 115, 0.15), rgba(46, 213, 115, 0.05));
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(46, 213, 115, 0.2);
}

.card-image svg {
    width: 120px;
    height: 120px;
    opacity: 0.6;
    color: rgb(46, 213, 115);
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: rgba(46, 213, 115, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.card-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card-price {
    font-size: 2rem;
    font-weight: 700;
    color: rgb(46, 213, 115);
}

.card-original-price {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    font-size: 1.2rem;
    margin-left: 0.5rem;
}

.card-view-btn {
    background: rgba(46, 213, 115, 0.15);
    color: rgb(46, 213, 115);
    border: 1px solid rgba(46, 213, 115, 0.3);
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.card-view-btn:hover {
    background: rgba(46, 213, 115, 0.25);
    border-color: rgba(46, 213, 115, 0.6);
    transform: translateX(4px);
}

/* Floating animation */
@keyframes float {

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

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

.hero-card {
    animation: float 6s ease-in-out infinite;
}

/* ========================================
   RESPONSIVE DESIGN FOR ALL DEVICES
   ======================================== */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 1.5rem;
    }

    .hero-container {
        gap: 3rem;
    }

    .hero-heading {
        font-size: 3rem;
    }

    .button {
        font-size: 1.3rem;
        padding: 0.9rem 2.5rem;
        letter-spacing: 0.3rem;
    }

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

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets and smaller */
@media (max-width: 768px) {
    .header {
        padding: 0.6rem 0;
    }

    .header-container {
        padding: 0 1rem;
        gap: 0.75rem;
        min-height: 60px;
    }

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

    /* Products control bar responsive */
    .products-control-bar {
        flex-direction: column;
        gap: 1rem;
    }

    .search-container {
        min-width: 100%;
    }

    .filter-controls {
        width: 100%;
        flex-direction: column;
    }

    .filter-select {
        width: 100%;
    }

    #homeProductsGrid .product-card {
        /* Allow cards to shrink on very small screens to prevent horizontal overflow */
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .buy-now-btn,
    .add-to-cart-btn {
        max-width: 100% !important;
    }

    /* Hero responsive */
    .hero-container {
        gap: 2rem;
    }

    .hero-section {
        padding-top: 2rem;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .button {
        font-size: 1.1rem;
        padding: 0.8rem 2rem;
        letter-spacing: 0.25rem;
    }

    .hero-secondary-btn {
        font-size: 1rem;
        padding: 0.7rem 1.5rem;
    }

    .card-image {
        height: 220px;
    }

    .menu-toggle {
        padding: 0.2rem;
    }

    .menu-toggle .icon {
        width: 1.3rem;
        height: 1.3rem;
    }

    .logo {
        flex-shrink: 0;
    }

    .logo-img {
        height: 40px;
        max-height: 40px;
    }

    .logo-img:nth-child(2) {
        height: 36px;
        max-height: 36px;
        transform: translateY(3px);
        /* remove negative X shift to prevent potential clipping */
    }

    .logo h1 {
        font-size: 1rem;
    }

    .header-actions {
        gap: 0.5rem;
        flex-shrink: 0;
    }

    .icon-btn {
        padding: 0.4rem;
    }

    .icon-btn .icon {
        width: 1.3rem;
        height: 1.3rem;
    }

    .menu-toggle .icon {
        width: 1.3rem;
        height: 1.3rem;
    }

    .main-content {
        padding-top: 95px !important;
        padding-left: 1rem;
        padding-right: 1rem;
    }

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

    #productsGrid .product-card,
    #freeProductsGrid .product-card {
        min-height: auto;
    }

    .product-card {
        padding: 1rem;
    }

    .sidebar {
        width: 280px;
        left: -280px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* Mobile landscape and small tablets */
@media (max-width: 640px) {
    .header {
        padding: 0.35rem 0;
    }

    .header-container {
        padding: 0 0.6rem;
        gap: 0.4rem;
        min-height: 45px;
    }

    .menu-toggle {
        padding: 0.15rem;
    }

    .menu-toggle .icon {
        width: 1.2rem;
        height: 1.2rem;
    }

    .logo-img {
        height: 40px;
        max-height: 40px;
    }

    .logo-img:nth-child(2) {
        height: 36px;
        max-height: 36px;
        transform: translateX(-6px) translateY(2px);
    }

    .logo h1 {
        font-size: 1rem;
    }

    .header-actions {
        gap: 0.4rem;
    }

    .icon-btn {
        padding: 0.35rem;
    }

    .icon-btn .icon {
        width: 1.2rem;
        height: 1.2rem;
    }

    .main-content {
        padding-top: 110px !important;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        width: 85%;
        max-width: 280px;
        left: -100%;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .header {
        padding: 0.3rem 0;
    }

    .header-container {
        padding: 0 0.4rem;
        gap: 0.3rem;
        min-height: 42px;
    }

    /* Hero mobile adjustments */
    .hero-section {
        padding: 1.5rem 1rem;
        min-height: auto;
    }

    .hero-container {
        gap: 2rem;
    }

    .hero-eyebrow {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .hero-heading {
        font-size: clamp(1.65rem, 8.5vw, 1.9rem);
        margin-bottom: 1rem;
        line-height: 1.22;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .hero-highlights {
        margin-bottom: 1.5rem;
        gap: 0.5rem;
    }

    .hero-highlights li {
        font-size: 0.9rem;
    }

    .hero-highlights li {
        max-width: 100%;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .button {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
        letter-spacing: 0.2rem;
        width: 100%;
        text-align: center;
    }

    .hero-secondary-btn {
        font-size: 0.95rem;
        padding: 0.7rem 1.5rem;
        width: 100%;
        text-align: center;
    }

    .hero-trust {
        font-size: 0.85rem;
        margin-top: 1.5rem;
    }

    .hero-card {
        padding: 1.5rem;
    }

    .card-image {
        height: 200px;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .card-subtitle {
        font-size: 0.9rem;
    }

    .card-price {
        font-size: 1.6rem;
    }

    .card-original-price {
        font-size: 1rem;
    }

    .card-view-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .menu-toggle {
        padding: 0.15rem;
        flex-shrink: 0;
    }

    .menu-toggle .icon {
        width: 1.1rem;
        height: 1.1rem;
    }

    .logo {
        flex-shrink: 0;
        min-width: 0;
    }

    .logo-img {
        height: 35px;
        max-height: 35px;
    }

    .logo-img:nth-child(2) {
        height: 31px;
        max-height: 31px;
        transform: translateX(-5px) translateY(2px);
    }

    .logo h1 {
        font-size: 0.95rem;
        white-space: nowrap;
    }

    .header-actions {
        gap: 0.3rem;
        flex-shrink: 0;
    }

    .icon-btn {
        padding: 0.3rem;
    }

    .icon-btn .icon {
        width: 1.1rem;
        height: 1.1rem;
    }

    .cart-badge {
        width: 16px;
        height: 16px;
        font-size: 0.6rem;
    }

    .main-content {
        padding-top: 95px !important;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .products-grid {
        gap: 0.75rem;
        grid-template-columns: 1fr;
        /* single column prevents cut-off */
        width: 100%;
        margin: 0 auto;
        padding: 0 0.75rem;
        display: grid;
        /* ensure grid layout active even if responsive.css not loaded */
    }

    .product-card {
        padding: 0.75rem;
        border-radius: 10px;
        width: 100%;
        max-width: 100%;
    }

    .products-grid {
        box-sizing: border-box;
    }

    .product-card {
        box-sizing: border-box;
    }

    .product-image img,
    .product-image .icon {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Remove fixed card width on home grid for all small breakpoints */
    @media (max-width: 520px) {
        #homeProductsGrid .product-card {
            width: 100% !important;
            max-width: 100% !important;
        }
    }

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

    .selling-price {
        font-size: 1.15rem;
    }

    .sale-badge {
        font-size: 0.6rem;
        padding: 5px 12px;
    }

    .add-to-cart-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .sidebar {
        width: 90%;
        max-width: 300px;
        left: -100%;
    }

    .site-footer {
        padding: 1.5rem 0.75rem 1rem;
    }

    /* Disable tooltips on mobile */
    .tooltip {
        display: none !important;
    }
}

/* Extra small phones */
@media (max-width: 380px) {
    .header {
        padding: 0.5rem 0;
    }

    .header-container {
        padding: 0 0.5rem;
        gap: 0.5rem;
        min-height: 58px;
    }

    .logo-img,
    .logo .logo-img svg {
        max-width: 120px;
        height: auto;
    }

    .slot {
        width: 48px;
        height: 70px;
        min-width: 45px;
    }

    .slot-number {
        height: 70px;
        font-size: 32px;
    }

    .counter-widget {
        padding: 12px 6px;
        margin: 1.5rem 0.25rem;
    }

    .slots-container {
        gap: 6px;
        padding: 10px 4px;
    }

    .counter-label {
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    .hero-section {
        padding-top: 80px;
    }

    .hero-heading {
        font-size: clamp(1.5rem, 9vw, 1.75rem);
        line-height: 1.25;
    }

    .hero-description {
        font-size: 0.85rem;
        line-height: 1.45;
    }

    .menu-toggle {
        padding: 0.1rem;
    }

    .menu-toggle .icon {
        width: 1rem;
        height: 1rem;
    }

    .logo-img {
        height: 32px;
        max-height: 32px;
    }

    .logo-img:nth-child(2) {
        height: 28px;
        max-height: 28px;
        transform: translateX(-4px) translateY(2px);
    }

    .logo h1 {
        font-size: 0.85rem;
    }

    .header-actions {
        gap: 0.25rem;
    }

    .icon-btn {
        padding: 0.25rem;
    }

    .icon-btn .icon {
        width: 1rem;
        height: 1rem;
    }

    .main-content {
        padding-top: 90px !important;
    }

    .hero h1 {
        font-size: 1.3rem;
    }
}

/* Very small phones */
@media (max-width: 320px) {
    .header {
        padding: 0.25rem 0;
    }

    .header-container {
        padding: 0 0.25rem;
        gap: 0.2rem;
        min-height: 38px;
    }

    .menu-toggle {
        padding: 0.1rem;
    }

    .menu-toggle .icon {
        width: 0.95rem;
        height: 0.95rem;
    }

    .logo-img {
        height: 30px;
        max-height: 30px;
    }

    .logo-img:nth-child(2) {
        height: 26px;
        max-height: 26px;
        transform: translateX(-3px) translateY(1px);
    }

    .logo h1 {
        font-size: 0.8rem;
    }

    .header-actions {
        gap: 0.2rem;
    }

    .icon-btn {
        padding: 0.2rem;
    }

    .icon-btn .icon {
        width: 0.95rem;
        height: 0.95rem;
    }

    .cart-badge {
        width: 14px;
        height: 14px;
        font-size: 0.55rem;
    }

    .main-content {
        padding-top: 80px !important;
    }
}

/* Prevent wrapping and ensure proper alignment */
@media (max-width: 768px) {
    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap !important;
        overflow: visible;
    }

    .menu-toggle {
        order: 1;
        flex-shrink: 0;
    }

    .logo {
        order: 2;
        flex-shrink: 0;
        flex-grow: 0;
    }

    .header-actions {
        order: 3;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        margin-left: auto;
    }
}

/* Payment Loader Overlay */
.payment-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.payment-loader-content {
    text-align: center;
    color: #ffffff;
}

.payment-loader-content p {
    margin-top: 20px;
    font-size: 18px;
    font-family: 'Söhne', 'Helvetica Neue', Arial, sans-serif;
    color: rgb(46, 213, 115);
}

.payment-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(46, 213, 115, 0.2);
    border-top-color: rgb(46, 213, 115);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Custom Payment Modal Wrapper */
#payment-modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

#payment-modal-wrapper.active {
    display: flex;
}

.payment-modal-container {
    position: relative;
    max-width: 500px;
    width: 90%;
    background: rgba(20, 20, 20, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: slideUp 0.4s ease;
}

.payment-modal-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-modal-header h2 {
    color: #ececec;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.payment-modal-header p {
    color: #b4b4b4;
    font-size: 14px;
}

.payment-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #ececec;
    font-size: 20px;
}

.payment-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.payment-iframe-container {
    position: relative;
    min-height: 450px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    overflow: hidden;
}

.payment-amount-display {
    background: rgba(46, 213, 115, 0.1);
    border: 1px solid rgba(46, 213, 115, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.payment-amount-display .amount {
    font-size: 32px;
    font-weight: 700;
    color: rgb(46, 213, 115);
}

.payment-amount-display .label {
    font-size: 12px;
    color: #b4b4b4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    font-size: 12px;
    color: #b4b4b4;
}

.payment-secure-badge svg {
    width: 16px;
    height: 16px;
    fill: rgb(46, 213, 115);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Policy and Documentation Pages */
.docs-content,
.policy-content {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--subtext);
    line-height: 1.8;
    font-size: 0.95rem;
}

.docs-content p,
.policy-content p {
    margin-bottom: 1rem;
}

/* Mobile Responsive for Counter and Free Modal */
@media (max-width: 768px) {
    .counter-widget {
        padding: 25px 15px;
        margin: 2rem 1rem;
        max-width: 90%;
    }

    .slots-container {
        gap: 8px;
        padding: 12px;
    }

    .slot {
        width: 55px;
        height: 80px;
        border-width: 1px;
    }

    .slot-number {
        height: 80px;
        font-size: 45px;
    }

    .counter-label {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .free-modal-content {
        width: 95%;
        padding: 1.5rem;
    }

    .faq-section {
        padding: 1.5rem 1rem;
    }

    .faq-heading {
        font-size: 1.5rem;
    }

    .faq-subheading {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .counter-widget {
        padding: 20px 10px;
        margin: 1.5rem 0.5rem;
    }

    .slots-container {
        gap: 6px;
        padding: 10px;
    }

    .slot {
        width: 45px;
        height: 65px;
    }

    .slot-number {
        height: 65px;
        font-size: 36px;
    }

    .counter-label {
        font-size: 8px;
        letter-spacing: 1.5px;
    }
}

/* Mobile: Best Selling title smaller */
@media (max-width: 768px) {
    .best-selling-title {
        font-size: 28px !important;
        margin: 0.3rem 0 0.2rem 0 !important;
    }
}

@media (max-width: 480px) {
    .best-selling-title {
        font-size: 24px !important;
        margin: 0.2rem 0 0.1rem 0 !important;
    }
}

/* Navbar Search Popup */
.nav-search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
}

.nav-search-popup.active {
    display: flex;
}

.nav-search-popup-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 90%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    padding: 1rem;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.nav-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.nav-search-close {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.nav-search-close:hover {
    opacity: 1;
}

/* Search icon button in navbar */
.search-icon-btn {
    display: none;
}