/* --------------------------------------------------
   GLOBAL
-------------------------------------------------- */
body {
    margin: 0;
    background: #0a0a0a;
    color: #fff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* --------------------------------------------------
   NAVIGATION
-------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    z-index: 1000;
}

.nav-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

    .nav-menu a {
        color: #fff;
        text-decoration: none;
        font-size: 18px;
        transition: 0.3s;
    }

        .nav-menu a:hover {
            color: #00d4ff;
        }

/* Cart Icon */
.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
}

    .cart-icon img {
        width: 28px;
        height: 28px;
        filter: invert(1);
    }

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #00d4ff;
    color: #000;
    font-size: 14px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
}

.nav-spacer {
    height: 100px;
}

/* Burger button */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

    .nav-toggle span {
        width: 28px;
        height: 3px;
        background: #fff;
        border-radius: 3px;
        transition: 0.3s;
    }

/* --------------------------------------------------
   HERO SLIDER
/* --------------------------------------------------
   HERO SLIDER (FULL WIDTH)
-------------------------------------------------- */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh; /* Full screen */
    overflow: hidden;
    background: #0a0a0a;
}

/* Slide wrapper */
.hero-slides {
    display: flex;
    width: 300%; /* 3 slides */
    height: 100%;
    transition: transform 1.2s ease-in-out;
}

/* Each slide */
.hero-slide {
    min-width: 35%;
    height: 100%;
    position: relative;
}

    /* Slide images */
    .hero-slide img,
    .hero-slide picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Dark overlay for text contrast */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%; /* Increase this to expand gradient area */
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0));
    z-index: 1;
}


/* Text on top of slider */
.hero-text {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 550px;
    
}

    .hero-text h1 {
        font-size: clamp(3rem, 6vw, 6rem);
        font-weight: 900;
        margin-bottom: 15px;
    }

.hero-tagline {
    font-size: 1.6rem;
    color: #ddd;
    margin-bottom: 10px;
}

.hero-offer {
    font-size: 1.4rem;
    margin-bottom: 25px;
}

.hero-note {
    margin-top: 20px;
    font-size: 1rem;
    color: #bbb;
}

/* Mobile adjustments */
@media (max-width: 900px) {
    .hero-slider {
        height: 60vh;
    }

    .hero-text {
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 90%;
    }

        .hero-text h1 {
            font-size: 2.4rem;
        }

    .hero-tagline {
        font-size: 1.2rem;
    }
}


/* Buttons */
.buy-btn {
    background: #00d4ff;
    color: #000;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    font-size: 20px;
    transition: 0.3s;
    margin-top: 35px;
}

    .buy-btn:hover {
        background: #00e0ff;
    }

    .buy-btn.disabled {
        background: #555;
        cursor: not-allowed;
        opacity: 0.5;
    }

/* --------------------------------------------------
   SECTIONS
-------------------------------------------------- */
.section {
    padding: 20px 0;
    text-align: center;


}

    .section h2 {
        font-size: 50px;
        margin-bottom: 40px;
    }
    .section p {
        max-width: 750px; /* controls paragraph width */
        margin: 0 auto; /* centers it */
        font-size: 20px; /* readable size */
        line-height: 1.6; /* better spacing */
        color: #ccc; /* softer text */
    }
    
@media (max-width: 900px) {
    .section p {
        font-size: 18px;
        max-width: 90%;
    }
}

/* --------------------------------------------------
   HOW IT WORKS — FINAL FIX (Overrides applied)
-------------------------------------------------- */

.section.how-section {
    padding: 40px 0 !important; /* reduce section height */
}
.how-section .container {
    max-width: 1100px; /* or 800px, 700px, etc. */
}

.how-row {
    display: flex;
    align-items: center;
    gap: 24px !important; /* force closer spacing */
    margin-bottom: 35px !important;
}

    .how-row.reverse {
        flex-direction: row-reverse;
    }
/* Rounded border around HOW IT WORKS section */
.how-section {
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 40px 30px;
    background: #111; /* subtle Dawn-style tint */
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 60px auto; /* center it */
}
.how-subtitle
{
    padding-bottom:20px;
}
/* IMAGE */
.how-image-wrap {
    flex: 0 0 380px !important; /* smaller image column */
    max-width: 500px !important;
}

.how-large-image {
    width: 100%;
    height: auto;
    aspect-ratio: 300 / 550;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.35);
    
}

/* TEXT */
.how-text {
    flex: 1;
    text-align: left;
    max-width: 620px !important; /* keeps text tight */
}

    .how-text h3 {
        font-size: 30px !important; /* smaller */
        margin-bottom: 6px !important;
    }

    .how-text p {
        font-size: 18px !important; /* smaller */
        line-height: 1.45 !important; /* tighter */
        color: #ccc;
    }

/* MOBILE */
@media (max-width: 900px) {

    .how-row,
    .how-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 18px !important;
    }

    .how-image-wrap {
        max-width: 65% !important;
    }

    .how-text {
        text-align: left;
        max-width: 100% !important;
    }

        .how-text h3 {
            font-size: 18px !important;
        }

        .how-text p {
            font-size: 14px !important;
        }
}


/* --------------------------------------------------
   PRODUCTS
-------------------------------------------------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;

}

.product-card {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    transition: 0.3s;
}

    .product-card:hover {
        transform: translateY(-5px);
    }

    .product-card img {
        width: 100%;
        height: 300px;
        object-fit: contain;
    }

.price {
    font-size: 40px;
    color: #00d4ff;
    font-weight: bold;
    margin: 20px 0;
}

/* --------------------------------------------------
   PRODUCT DETAILS
-------------------------------------------------- */
.product-details {
    display: flex;
    gap: 50px;
    padding: 80px 0;
}

.product-details-img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    object-fit: contain;
}

.product-details-right h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.product-price {
    font-size: 36px;
    color: #00d4ff;
    margin-bottom: 20px;
}

.product-desc {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 40px;
}
/* Center the entire products section */
.products-section {
    text-align: center;
}

/* NEW: Center wrapper */
.products-center {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0 auto;
    width: 100%;
}

    /* Ensure product card doesn't stretch */
    .products-center .product-card {
        max-width: 360px;
        width: 100%;
    }


/* --------------------------------------------------
   CART PAGE — TRUE SHOPIFY STYLE
-------------------------------------------------- */

/* Center the whole cart like Shopify */
.cart-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 0 120px 0;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
}

/* CART ITEMS */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* CART ITEM CARD */
.cart-item {
    display: grid;
    grid-template-columns: 90px 1fr auto auto;
    align-items: center;
    gap: 20px;
    background: #1a1a1a;
    padding: 18px 20px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
}

/* PRODUCT IMAGE */
.cart-thumb {
    width: 90px;
    height: 90px;
    object-fit: contain;
    background: #111;
    border-radius: 10px;
    padding: 6px;
}

/* PRODUCT INFO */
.cart-info h3 {
    margin: 0 0 6px 0;
    font-size: 1.15rem;
    font-weight: 600;
}

.cart-price {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 10px;
}

/* PRODUCT DETAILS */
.cart-details {
    margin: 0;
    padding-left: 18px;
    font-size: 0.85rem;
    color: #bbb;
    line-height: 1.4;
}

    .cart-details li {
        margin-bottom: 4px;
    }

/* LINE TOTAL */
.cart-line-total {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: right;
    min-width: 80px;
}

/* REMOVE BUTTON */
.cart-remove {
    background: transparent;
    border: none;
    color: #ff6b6b;
    font-size: 0.9rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

    .cart-remove:hover {
        opacity: 0.7;
    }

/* SUMMARY BOX */
.cart-summary {
    background: #111;
    padding: 24px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    height: fit-content;
}

    .cart-summary h3 {
        margin-bottom: 16px;
        font-size: 1.25rem;
    }

/* SUMMARY ROWS */
.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #ccc;
}

.summary-total {
    margin-top: 14px;
    font-weight: 700;
    font-size: 1.15rem;
}
.section-title {
    text-align: center;
    width: 100%;
    margin: 0 auto 30px auto;
    font-size: 2rem;
    font-weight: 700;
}

/* CHECKOUT BUTTON */
.summary-checkout {
    width: 100%;
    margin-top: 20px;
    text-align: center;
}

    /* DISABLED CHECKOUT */
    .buy-btn.disabled,
    .summary-checkout.disabled {
        background: #555;
        cursor: not-allowed;
        opacity: 0.5;
    }

/* MOBILE */
@media (max-width: 900px) {
    .cart-wrapper {
        grid-template-columns: 1fr;
        max-width: 90%;
    }

    .cart-item {
        grid-template-columns: 90px 1fr;
        grid-template-rows: auto auto auto;
    }

    .cart-line-total {
        text-align: left;
    }
}


/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
.footer {
    background: #0d0d0d;
    padding: 50px 0 30px 0;
    margin-top: 60px;
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

    .footer-grid h3 {
        margin-bottom: 12px;
        font-size: 1.1rem;
    }

    .footer-grid a {
        color: #ccc;
        font-size: 0.95rem;
        line-height: 1.6;
    }

        .footer-grid a:hover {
            color: #fff;
        }

.footer p {
    color: #aaa;
    font-size: 0.95rem;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    font-size: 0.85rem;
    color: #777;
}

/* --------------------------------------------------
   PAGE FADE-IN
-------------------------------------------------- */
.page-fade {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

    .page-fade.show {
        opacity: 1;
        transform: translateY(0);
    }


.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

    .whatsapp-float:hover {
        transform: scale(1.12);
        box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
    }

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */
@media (max-width: 900px) {
    .hero-slider {
        height: 55vh;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .how-grid,
    .product-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-item {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto auto;
        row-gap: 10px;
    }

    .cart-line-total {
        text-align: left;
    }

    .nav-spacer {
        height: 70px;
    }

    /* Mobile nav menu */
    .nav-menu {
        position: absolute;
        top: 100%;
        right: 10px;
        width: 90%;
        background: rgba(10,10,10,0.95);
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        display: none;
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.1);
    }

        .nav-menu.show {
            display: flex;
        }

    .nav-toggle {
        display: flex;
    }

    .nav-container {
        justify-content: space-between;
    }
}

/* Force desktop menu to show */
@media (min-width: 901px) {
    .nav-menu {
        display: flex !important;
    }
}

/* Vendor Page */
.vendor-page .hero-overlay,
.vendor-page .hero-slider {
    display: none;
}

.vendor-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
}

.vendor-section {
    text-align: left;
    max-width: 750px;
    margin: auto;
    padding: 40px 0;
}

.vendor-tagline {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
}

.vendor-subtext {
    font-size: 18px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

.vendor-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
}

.benefit {
    font-size: 18px;
    color: #00d4ff;
    font-weight: 500;
}

.vendor-form-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.vendor-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .vendor-form input,
    .vendor-form textarea {
        width: 100%;
        padding: 14px;
        border-radius: 10px;
        border: none;
        background: #1a1a1a;
        color: #fff;
        font-size: 16px;
    }

    .vendor-form textarea {
        height: 120px;
        resize: none;
    }

.vendor-btn {
    width: 100%;
    margin-top: 10px;
}
.vendor-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
}
.vendor-access-section {
    margin: 50px auto;
    max-width: 750px;
    text-align: center;
}

.vendor-access-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
}

.vendor-access-box {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
}

.access-option {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 14px;
    flex: 1;
    min-width: 280px;
}

    .access-option h4 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .access-option p {
        font-size: 16px;
        color: #ccc;
        line-height: 1.6;
    }

/* Mobile */
@media (max-width: 900px) {
    .vendor-access-box {
        flex-direction: column;
    }
}
.copyright {
    text-align: center;
    padding: 30px 0 20px;
    color: #777;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 60px;
}
/* Scroll fade for sections */
.fade-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

    .fade-section.visible {
        opacity: 1;
        transform: translateY(0);
    }


.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.legal-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

    .legal-nav a {
        color: #3a6cf4;
        font-weight: 600;
    }

.legal-section {
    margin-bottom: 60px;
}

    .legal-section h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .legal-section h3 {
        margin-top: 20px;
        margin-bottom: 10px;
        font-size: 1.1rem;
    }

    .legal-section p,
    .legal-section ul {
        color: #ccc;
        line-height: 1.6;
    }

    .legal-section ul {
        padding-left: 20px;
    }
.how-bullets li {
    margin-bottom: 14px;
    line-height: 1.6;
}
