/* ============================================================
   GLOBAL – Premium Cinematic Look
============================================================ */
body {
    background: linear-gradient(to bottom,
        #080808 0%, #101010 22%, #161616 45%, #1d1d1d 75%, #222 100%);
    background-attachment: fixed;
    color: #fff;
    font-family: "Varela Round", sans-serif;
}

h1, h2, h3 {
    background: linear-gradient(90deg, #ffffff, #ffe1c7, #ffb48a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

section {
    padding: 90px 8%;
}



/* ============================================================
   HERO — Lifestyle Strip Banner
============================================================ */
.ls-hero {
    position: relative;
    height: 250px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 65px;
}

.ls-hero-bg {
    position: absolute;
    inset: 0;
    display: flex;
}

.ls-hero-bg img {
    width: 25%;
    object-fit: cover;
    filter: brightness(0.55);
    transition: 0.5s ease;
}

.ls-hero-bg img:hover {
    filter: brightness(0.9);
    transform: scale(1.04);
}

.ls-hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    backdrop-filter: blur(4px);
}

.ls-hero-text h1 {
    font-size: 56px;
    margin-bottom: 6px;
}

.ls-hero-text p {
    font-size: 20px;
    color: #f2f2f2;
    opacity: 0.9;
}



/* ============================================================
   WELLNESS SECTION
============================================================ */
.ls-section {
    text-align: center;
}

.subtitle {
    margin-top: 10px;
    font-size: 18px;
    color: #d3d3d3;
}

.article-grid {
    margin-top: 50px;
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    justify-content: center;
}

.article-card {
    width: 300px;
    padding: 28px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.35s cubic-bezier(.22,.61,.36,1);
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255,140,80,0.25);
}



/* ============================================================
   FILTER BAR – Modern Glass UI
============================================================ */
.shop-filters {
    padding: 60px 8% 25px;
}

.filter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.filter-item label {
    font-size: 14px;
    color: #ffb48a;
    margin-right: 6px;
}

.filter-item select,
.filter-item input {
    padding: 12px 16px;
    border-radius: 12px;
    border: none;

    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);

    color: #fff;
    font-size: 15px;
}

.filter-item input {
    width: 260px;
}

.filter-item select:focus,
.filter-item input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255,180,138,0.45);
}



/* ============================================================
   PRODUCT GRID — Ultra Gloss Premium
============================================================ */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 45px;
    padding: 40px 8% 130px;
}

.product-card {
    position: relative;
    text-align: center;
    padding: 42px 28px 38px;

    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 22px;
    backdrop-filter: blur(20px);

    box-shadow: 0 0 30px rgba(0,0,0,0.35);
    transition: 0.35s cubic-bezier(.22,.61,.36,1);
}

.product-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255,180,138,0.45);
    box-shadow: 0 18px 55px rgba(255,180,138,0.25);
}

.product-card img {
    width: 270px;
    margin-bottom: 24px;
    filter: drop-shadow(0 22px 25px rgba(0,0,0,0.45));
    transition: 0.35s ease;
}

.product-card:hover img {
    transform: translateY(-8px);
    filter: drop-shadow(0 32px 35px rgba(255,180,138,0.28));
}

.product-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.product-card p {
    opacity: .75;
    font-size: 15px;
    margin-bottom: 22px;
}



/* ============================================================
   CATEGORY RIBBONS — Premium
============================================================ */
.ribbon {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 10px;

    color: #000;
    background: linear-gradient(90deg, #ffe1c7, #ffb48a);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}



/* ============================================================
   BUTTON – Neon Glow
============================================================ */
.btn.primary {
    display: inline-block;
    padding: 12px 36px;
    border-radius: 40px;
    font-weight: 600;
    letter-spacing: .4px;

    background: linear-gradient(90deg, #ffb48a, #ff7b3f);
    color: #000;

    box-shadow: 0 0 14px rgba(255,123,63,0.35);
    transition: 0.3s ease;
}

.product-card:hover .btn.primary {
    transform: translateY(-4px);
    box-shadow: 0 0 24px rgba(255,123,63,0.55);
}



/* ============================================================
   ANIMATIONS — Smooth Slide
============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: 0.9s cubic-bezier(.22,.61,.36,1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================================
   PRODUCT COLOR TONES — Matches oChico Brand
============================================================ */


/* Multivitamin (Orange) */
.p-title.mv {
       background: linear-gradient(90deg, #eaa94d, #e3a243);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.product-card.mv:hover {
    border-color: rgba(255,123,63,0.45);
    box-shadow: 0 18px 50px rgba(255,123,63,0.25);
}

/* Apple Cider (Red Tone Updated) */
.p-title.acv {
    background: linear-gradient(90deg, #c8503d, #c74f3d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.product-card.acv:hover {
    border-color: rgba(202, 81, 62, 0.55);
    box-shadow: 0 18px 50px rgba(201, 80, 62, 0.35);
}

/* Snoozzz (Blue) */
.p-title.snooz {
    background: linear-gradient(90deg, #7AC8FF, #4AA0FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.product-card.snooz:hover {
    border-color: rgba(120,180,255,0.45);
    box-shadow: 0 18px 55px rgba(120,180,255,0.28);
}

/* 7-Day Cleanse (Orange Updated) */
.p-title.cleanse {
    background: linear-gradient(90deg, #d6783f, #d4763d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.product-card.cleanse:hover {
    border-color: rgba(214, 119, 62, 0.55);
    box-shadow: 0 18px 55px rgba(220, 125, 70, 0.32);
}

/* Reboot Liver (Pink) */
.p-title.liver {
        background: linear-gradient(90deg, #a75f3c, #a65e3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.product-card.liver:hover {
        border-color: rgb(169 96 60);
    box-shadow: 0 18px 55px rgb(167 95 60);
}


/* WHY OCHICO */
.why-ochico {
    text-align: center;
    padding: 90px 8%;
    background: linear-gradient(to bottom, #1a1a1a, #0d0d0d);
}

.why-ochico h2 {
    font-size: 34px;
    margin-bottom: 40px;
}

.why-grid {
    display: flex;
    justify-content: center;
    gap: 45px;
    flex-wrap: wrap;
}

.why-item {
    background: rgba(255,255,255,0.05);
    padding: 25px 28px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    width: 220px;
    transition: .35s ease;
}

.why-item span {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.why-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255,145,80,0.22);
}

/* Product Action Buttons */
.prod-actions {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-view,
.btn-cart {
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: 0.3s ease;
    color: #000;
}

/* Dark text for VIEW (always readable) */
.btn-view { background: #fff; }

/* ADD TO CART follows product color tone */
.btn-cart { color: #000; }

/* Hover effects */
.btn-view:hover,
.btn-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 18px rgba(255,255,255,0.15);
}

/* COLOR TONES — Matches your brand */

/* Multivitamin */
.mv-btn {
    background: linear-gradient(90deg, #FFA35C, #FF7B3F);
}

/* Apple Cider */
.acv-btn {
    background: linear-gradient(90deg, #c8503d, #c74f3d);
    color: black;
}

/* Snoozzz */
.snooz-btn {
    background: linear-gradient(90deg, #7AC8FF, #4AA0FF);
}

/* Cleanse */
.cleanse-btn {
    background: linear-gradient(90deg, #d6783f, #d4763d);
}

/* Reboot Liver */
.liver-btn {
    background: linear-gradient(90deg, #FF9BB8, #FF5D7A);
}

.floating-cart {
    position: fixed;
    right: 28px;
    bottom: 28px;
    background: #ff7b3f;
    color: #000;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 6px 22px rgba(255,123,63,0.45);
    z-index: 9000;
}

.cart-count {
    background: #000;
    color: #fff;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 14px;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100vh;

    background: rgba(15,15,15,0.92);
    border-left: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(18px);

    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    transition: 0.35s ease;
    z-index: 9999;

    display: flex;
    flex-direction: column;
    padding: 20px;
}

.cart-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-header h3 {
    margin: 0;
    font-size: 22px;
}

.drawer-close {
    font-size: 26px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

.drawer-body {
    flex-grow: 1;
    overflow-y: auto;
    margin-top: 20px;
}

.cart-empty {
    text-align: center;
    opacity: 0.7;
}

.cart-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cart-item img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.checkout-btn {
    width: 100%;
    padding: 14px;
    border-radius: 40px;
    background: linear-gradient(90deg,#ffb48a,#ff7b3f);
    border: none;
    font-weight: 700;
    cursor: pointer;
    color: #000;
}

.fly-img {
    position: fixed;
    width: 120px;
    height: auto;
    z-index: 99999;
    transition: transform 0.6s ease, opacity 0.6s ease;
    pointer-events: none;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    height: 95%;
    background: rgba(15,15,15,0.92);
    backdrop-filter: blur(14px);
    transition: 0.35s ease;
    z-index: 9999;
}

.cart-drawer.open {
    right: 0;
}

/* Floating Cart */
.floating-cart {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #ff7b3f;
    padding: 12px 18px;
    border-radius: 40px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(255,123,63,0.35);
    z-index: 9999;
    transition: 0.3s ease;
}

.floating-cart:hover {
    transform: translateY(-4px);
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -380px;
    width: 340px;
    height: 95vh;
    background: #111;
    padding: 20px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.4);
    transition: 0.4s ease;
    z-index: 99999;
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    margin-top: 20px;
}

.cart-item {
    display: flex;
    gap: 12px;
    background: rgba(255,255,255,0.05);
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.cart-item img {
    width: 60px;
}

.cart-item h4 {
    margin: 0;
}

.qty-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    background: #ff7b3f;
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    cursor: pointer;
    color: #000;
    font-weight: bold;
}

.remove-btn {
    background: none;
    border: none;
    color: #ff6b6b;
    font-size: 18px;
    cursor: pointer;
}

.drawer-footer {
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.drawer-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    margin-bottom: 14px;
}

.checkout-btn {
    display: block;
    text-align: center;
    padding: 12px;
    background: #ff7b3f;
    color: #000;
    border-radius: 40px;
    font-weight: bold;
    text-decoration: none;
}
/* ============================
   BUNDLE PRODUCT
============================ */
.product-card.bundle {
    border: 1px solid rgba(255,180,138,0.4);
    background: linear-gradient(180deg, #141414, #0f0f0f);
    position: relative;
}

.bundle-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, #ffb48a, #ffd27d);
    color: #111;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(255,180,138,0.35);
}

.bundle-btn {
    background: linear-gradient(135deg, #ffb48a, #ffd27d);
    color: #111;
    font-weight: 700;
}
