:root {
    --bg-color: #0d1117;
    --text-color: #f0f6fc;
    --primary: #ff4757;
    /* Vibrant Coral/Red */
    --secondary: #2f3542;
    --accent: #ffa502;
    --glass: rgba(22, 27, 34, 0.7);
    --card-bg: #161b22;
    --border: #30363d;
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Glass Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 1rem;
    /* Reduced padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo .highlight {
    color: var(--primary);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-item-highlight {
    color: #ff4757 !important;
    border: 2px solid #FFD700;
    padding: 0.5rem 1rem;
    border-radius: 8px;

    /* Composite Animation: Spin + Blinking Sync */
    display: inline-block;
    animation: spin-pause 4s infinite linear, blink-sync 4s infinite;
    text-transform: uppercase;
    font-weight: 700 !important;
    /* Force bold */
    letter-spacing: 1px;
}

@keyframes spin-pause {
    0% {
        transform: rotateY(0deg);
    }

    15% {
        transform: rotateY(360deg);
    }

    /* Fast spin ends */
    100% {
        transform: rotateY(360deg);
    }

    /* Stays paused */
}

@keyframes blink-sync {

    0%,
    15% {
        box-shadow: 0 0 10px #FFD700, inset 0 0 5px #FFD700;
        border-color: #FFD700;
    }

    /* Flashing phase */
    16%,
    100% {
        /* Use a repeating animation within this timeframe via sub-animation or simulate via keyframes */
        /* Since we can't inherit, we just define the toggle states simply */
    }

    /* Manual Strobe */
    16%,
    20%,
    24%,
    28%,
    32%,
    36%,
    40%,
    44%,
    48%,
    52%,
    56%,
    60%,
    64%,
    68%,
    72%,
    76%,
    80%,
    84%,
    88%,
    92%,
    96% {
        box-shadow: 0 0 25px #FFD700, 0 0 10px #fff;
        border-color: #fff;
    }

    18%,
    22%,
    26%,
    30%,
    34%,
    38%,
    42%,
    46%,
    50%,
    54%,
    58%,
    62%,
    66%,
    70%,
    74%,
    78%,
    82%,
    86%,
    90%,
    94%,
    98% {
        box-shadow: 0 0 5px #40e0d0, inset 0 0 2px #40e0d0;
        border-color: #40e0d0;
    }
}



.cta-button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
}

/* Price Notice Banner */
.price-notice {
    position: fixed;
    top: 72px; /* Appears just under the nav bar */
    left: 0;
    width: 100%;
    background: #ff4757;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    overflow: hidden;
    z-index: 990;
    border-bottom: 2px solid #FFD700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    white-space: nowrap;
}

.price-notice-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

/* Hero Section */
.hero-section {
    min-height: 50vh;
    /* Reduced from 100vh to let user see products immediately */
    padding-top: 8rem;
    /* Make room for fixed nav */
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.1rem;
    color: #8b949e;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.hero-visual {
    display: none;
    /* Hide the big blob visual to save space */
}

.health-notice {
    display: inline-block;
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid #2ecc71;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    color: #2ecc71;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.quality-info {
    background: rgba(22, 27, 34, 0.6);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 650px;
    margin: 0 auto 2rem;
    text-align: left;
    border-left: 4px solid var(--primary);
}

.quality-info h3 {
    color: var(--text-color);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.quality-info p {
    font-size: 0.95rem !important;
    color: #c9d1d9 !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.5;
}

.result-text {
    margin-top: 0.8rem !important;
    font-weight: 500;
    color: var(--accent) !important;
}

.highlight-icon {
    color: var(--primary);
    margin-right: 0.5rem;
}

.hero-buttons {
    display: none;
    /* Remove buttons since products are right below */
}

.primary-btn {
    padding: 1rem 2rem;
    background: var(--text-color);
    color: var(--bg-color);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.2s;
}

.primary-btn:hover {
    transform: translateY(-2px);
}

.secondary-btn {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Abstract Background Blobs */
.blobs {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.blob-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.2;
    animation: move 10s infinite alternate;
}

.blob-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 350px;
    height: 350px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.2;
    animation: move 15s infinite alternate-reverse;
}

@keyframes move {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(50px, -50px);
    }
}

/* Products Section */
.products-section {
    padding: 5rem 10%;
}

.header-group {
    text-align: center;
    margin-bottom: 4rem;
}

.header-group h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.header-group p {
    color: #8b949e;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: linear-gradient(145deg, #1a2029, #12161d);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* 3D Depth Shadows */
    box-shadow:
        0 10px 20px -5px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    /* Subtle Outline */

    /* Side Light Framing Setup */
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    /* Thickness of the side framelght */
    background: linear-gradient(180deg, var(--primary), transparent 40%, transparent 60%, var(--primary));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 2;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);

    /* Stronger 3D Shadow + Side Glow */
    box-shadow:
        0 20px 40px -10px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(255, 71, 87, 0.2),
        /* Outer Glow */
        inset 0 0 0 1px rgba(255, 71, 87, 0.3);
    /* Inner Frame Glow */
}

.product-card:hover::before {
    opacity: 1;
    /* Activate the side light frame */
}

.product-image-container {
    height: 250px;
    background: #1e262f;
    position: relative;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.card-info {
    padding: 1.5rem;
    text-align: center;
}

.card-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    /* Reduced bottom margin to fit wholesale info */
}

.wholesale-price {
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 600;
    background: rgba(255, 165, 2, 0.1);
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
}

.unit {
    font-size: 0.9rem;
    color: #8b949e;
    font-weight: 400;
}

.add-btn {
    width: 100%;
    padding: 0.8rem;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.add-btn:hover {
    background: var(--primary);
}

/* Contact Section */
.contact-section {
    padding: 5rem 10%;
    background: #0d1117;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.privacy-note {
    text-align: center;
    color: #8b949e;
    margin-top: 1.5rem;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 2rem;
    color: #8b949e;
    border-top: 1px solid var(--border);
    margin-top: 4rem;
}

.visitor-counter {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #586069;
    font-family: monospace;
    background: rgba(255, 255, 255, 0.05);
    display: inline-block;
    padding: 2px 10px;
    border-radius: 4px;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 1;
    transition: opacity 0.3s;
}

.modal.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-content {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    border: 1px solid var(--border);
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #8b949e;
}

.modal h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.2rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #c9d1d9;
}

input,
textarea {
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: #0d1117;
    color: white;
    font-family: inherit;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.payment-info {
    background: rgba(255, 71, 87, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border: 1px solid var(--primary);
}

.bank-details {
    background: #0d1117;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.cart-item-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.total-section {
    text-align: right;
    margin: 1rem 0 2rem;
    font-size: 1.2rem;
    color: var(--primary);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100%;
    }

    .glass-nav {
        flex-direction: column;
        padding: 0.8rem;
        gap: 0.8rem;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .nav-right {
        width: 100%;
        justify-content: center;
    }

    .price-notice {
        top: 110px; /* Shift lower for mobile stacked nav */
    }

    .hero-section {
        padding-top: 11rem;
        /* Adjust for taller stacked nav */
        padding-bottom: 2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        /* Scaled down for mobile */
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .quality-info {
        margin: 1rem;
    }

    .products-section,
    .contact-section {
        padding: 3rem 5%;
    }

    .header-group h2 {
        font-size: 2rem;
    }

    .contact-container {
        padding: 1.5rem;
    }
}