/* ============================================
   O.D.S Enterprise — Shared Stylesheet
   ============================================ */
*{box-sizing:border-box;margin:0;padding:0}
:root{
  --ods-burgundy:#6B1E2E;
  --ods-burgundy-dark:#4A1020;
  --ods-burgundy-light:#F5E8EB;
  --ods-tan:#D4956A;
  --ods-tan-light:#F7EDE3;
  --ods-tan-dark:#A06438;
  --ods-navy:#2D2D3A;
  --ods-gold:#C9973A;
  --ods-gold-light:#FAF0DC;
  --bg-primary:#FFFFFF;
  --bg-secondary:#F7F7F8;
  --bg-tertiary:#F0F0F1;
  --text-primary:#1A1A1A;
  --text-secondary:#6B6B70;
  --border-color:#E5E5E7;
}
body{
  font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
  background:var(--bg-tertiary);
  color:var(--text-primary);
}
a{text-decoration:none;color:inherit}
.sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}

/* ===== NAV ===== */
.nav{
  background:var(--ods-burgundy-dark);
  border-bottom:1px solid rgba(255,255,255,0.08);
  padding:0 24px;
  display:flex;align-items:center;gap:16px;
  height:62px;position:sticky;top:0;z-index:100;
}
.nav-brand{flex:1;display:flex;align-items:center;gap:10px;min-width:0}
.nav-logo{width:36px;height:36px;border-radius:8px;overflow:hidden;background:#fff;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.nav-logo img{width:100%;height:100%;object-fit:contain}
.nav-brand-text{display:flex;flex-direction:column;min-width:0}
.nav-brand-name{font-size:15px;font-weight:600;color:#fff;letter-spacing:0.2px;white-space:nowrap}
.nav-brand-sub{font-size:10px;color:rgba(255,255,255,0.5);letter-spacing:1.5px;text-transform:uppercase;white-space:nowrap}
.nav-links{display:flex;gap:4px}
.nav-btn{background:transparent;border:none;padding:8px 12px;font-size:13px;color:rgba(255,255,255,0.65);cursor:pointer;border-radius:6px;transition:all 0.15s;white-space:nowrap;font-family:inherit}
.nav-btn:hover{background:rgba(255,255,255,0.1);color:#fff}
.nav-btn.active{color:#fff;background:rgba(255,255,255,0.12)}
.cart-btn{background:var(--ods-gold);color:#fff;border:none;padding:8px 16px;border-radius:8px;font-size:13px;cursor:pointer;display:flex;align-items:center;gap:7px;font-weight:600;font-family:inherit;flex-shrink:0}
.cart-badge{background:var(--ods-burgundy-dark);color:#fff;border-radius:50%;width:18px;height:18px;font-size:11px;font-weight:600;display:flex;align-items:center;justify-content:center}

/* Mobile nav toggle (hamburger) */
.nav-toggle{
  display:none;
  background:transparent;
  border:none;
  color:#fff;
  font-size:22px;
  cursor:pointer;
  padding:6px;
  border-radius:6px;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  transition:background .15s;
}
.nav-toggle:hover{background:rgba(255,255,255,.1)}

/*/HERO SECTION/*/
.hero{
    margin-top: -65px;
    position:relative;
    overflow:hidden;
    padding:100px 8%;
    background:
    linear-gradient(135deg,#260711 0%,#461221 55%,#6b4122 100%);
}

.hero-bg-grid{

    position:absolute;

    inset:0;

    background-image:
    linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);

    background-size:50px 50px;

    mask-image:linear-gradient(to bottom,black,transparent);
}

.hero-flex{

    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;
    position:relative;
    z-index:2;
}

/* LEFT */

.hero h1{
    font-size:4rem;
    line-height:1.1;
    color:#fff;
    margin:20px 0;
}

.hero h1 span{

    color:#D4AF37;
}

.hero p{

    color:#d6d6d6;

    font-size:18px;

    line-height:1.8;

    max-width:560px;

    margin-bottom:40px;
}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:rgba(255,255,255,.08);

    padding:10px 18px;

    border-radius:30px;

    border:1px solid rgba(255,255,255,.12);

    color:#FFD26F;
}

/*==============================
RIGHT SIDE
==============================*/

.hero-media{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:600px;
}

/* Golden Glow */

.hero-glow{

    position:absolute;

    width:650px;
    height:650px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(212,175,55,.28),
    rgba(212,175,55,.08),
    transparent 72%);

    filter:blur(35px);

    z-index:0;
}

.hero-image{

    position:relative;

    z-index:2;

    animation:heroFloat 5s ease-in-out infinite;
}

.hero-image img{

    width:100%;
    max-width:680px;
    display:block;
    object-fit:contain;

    opacity:.92;

    filter:
        drop-shadow(0 20px 35px rgba(0,0,0,.35))
        drop-shadow(0 45px 80px rgba(0,0,0,.28));

    transition:.4s ease;
}

.hero-image:hover img{

    transform:scale(1.04);
}


/*==============================
 HERO BUTTONS
==============================*/

.hero-actions{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
    margin-top:35px;
}

/* Primary Button */

.btn-primary{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    padding:15px 34px;

    background:linear-gradient(
        135deg,
        var(--ods-gold),
        #E8B84A
    );

    color:#fff;

    font-size:15px;
    font-weight:600;

    border:none;
    border-radius:14px;

    cursor:pointer;

    transition:all .35s ease;

    box-shadow:
        0 15px 35px rgba(201,151,58,.35);

    position:relative;

    overflow:hidden;
}

.btn-primary::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );

    transform:skewX(-25deg);

    transition:.6s;
}

.btn-primary:hover::before{

    left:150%;
}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:
        0 22px 45px rgba(201,151,58,.45);
}

.hero-actions{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-outline{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    min-width:180px;      /* Same width */
    height:54px;          /* Same height */

    padding:0 32px;

    border-radius:14px;

    font-size:15px;
    font-weight:600;
    font-family:inherit;

    text-decoration:none;

    box-sizing:border-box;

    transition:.35s ease;

    cursor:pointer;
}

/* Primary */

.btn-primary{

    border:none;

    color:#fff;

    background:linear-gradient(
        135deg,
        var(--ods-gold),
        #E8B84A
    );

    box-shadow:0 15px 35px rgba(201,151,58,.35);
}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 22px 45px rgba(201,151,58,.45);
}

/* Outline */

.btn-outline{
    border:1px solid rgba(255,255,255,.2);
    background:rgba(255,255,255,.06);
    backdrop-filter:blur(10px);
    color:#fff;
}

.btn-outline:hover{
    background:#fff;
    color:var(--ods-burgundy);
    transform:translateY(-4px);
}


/* Floating cards */

.floating-box{
    position:absolute;
    background:white;

    padding:14px 18px;

    border-radius:16px;

    font-weight:600;

    box-shadow:0 15px 40px rgba(0,0,0,.18);

    animation:float 5s ease-in-out infinite;
}

.top{
    top:20px;
    left:-40px;
}

.middle{
    right:-40px;
    top:180px;
}

.bottom{
    bottom:20px;
    left:0;
}

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


/*============================
Mobile View Hero
==============================*/
/* ==========================
   HERO RESPONSIVE
========================== */
@media (max-width: 768px){

    .hero{
        margin-top: 0;
        padding: 70px 20px 50px;
    }

    .hero-flex{
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content{
        order: 1;
    }

    .hero-media{
        order: 2;
        min-height: auto;
    }

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

    .hero p{
        font-size: 16px;
        max-width: 100%;
        margin: 0 auto 30px;
    }

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

    .hero-image img{
        align-self: center;
        justify-content: center;
        max-width: 100%;
        width: 100%;
    }

    .hero-glow{
        width: 350px;
        height: 350px;
    }
}




@media (max-width: 480px){

    .hero{
        padding: 60px 16px 40px;
    }

    .hero h1{
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-badge{
        font-size: 13px;
        padding: 8px 14px;
    }

    .hero-actions{
        flex-direction: column;
        width: 100%;
    }

    .hero-image img{
        align-self: center;
        justify-content: center;
    }

    .btn-primary,
    .btn-outline{
        width: 100%;
        max-width: 320px;
    }

    .hero-glow{
        width: 280px;
        height: 280px;
    }
}


/*=================================
  PREMIUM STATS SECTION
==================================*/

.stats-bar{

    max-width:1200px;

    margin:-55px auto 70px;

    padding:0 20px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    position:relative;

    z-index:10;
}

.stat-item{

    background:rgba(255,255,255,.96);

    border:1px solid rgba(0,0,0,.06);

    border-radius:18px;

    padding:28px 20px;

    text-align:center;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08);

    transition:all .35s ease;
}

.stat-item:hover{

    transform:translateY(-8px);

    box-shadow:
        0 25px 60px rgba(0,0,0,.15);

    border-color:var(--ods-gold);
}

.stat-item .num{

    font-size:2rem;

    font-weight:700;

    color:var(--ods-burgundy);

    margin-bottom:8px;
}

.stat-item .lbl{

    color:#666;

    font-size:.95rem;

    line-height:1.5;
}

/* Gold line on top */

.stat-item::before{

    content:"";

    display:block;

    width:55px;

    height:4px;

    margin:0 auto 18px;

    background:var(--ods-gold);

    border-radius:30px;
}

/* Responsive */

/* ==========================
   TABLET
========================== */
@media (max-width: 900px){

    .stats-bar{
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin: -35px 20px 50px;
    }

    .stat-item{
        padding: 20px 15px;
    }

    .stat-item .num{
        font-size: 1.6rem;
    }

    .stat-item .lbl{
        font-size: .85rem;
    }

    .stat-item::before{
        width: 45px;
        margin-bottom: 14px;
    }
}


/* ==========================
   MOBILE
========================== */
@media (max-width: 600px){

    .stats-bar{
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: -25px 15px 40px;
    }

    .stat-item{
        padding: 14px 10px;
        border-radius: 14px;
    }

    .stat-item .num{
        font-size: 1.25rem;
        margin-bottom: 5px;
    }

    .stat-item .lbl{
        font-size: .75rem;
        line-height: 1.3;
    }

    .stat-item::before{
        width: 35px;
        height: 3px;
        margin-bottom: 10px;
    }
}


/* ==========================
   EXTRA SMALL PHONES
========================== */
@media (max-width: 380px){

    .stats-bar{
        gap: 10px;
        margin: -20px 10px 35px;
    }

    .stat-item{
        padding: 12px 8px;
    }

    .stat-item .num{
        font-size: 1.1rem;
    }

    .stat-item .lbl{
        font-size: .7rem;
    }

}


/* ===== TRENDING / SHOWCASE ===== */
.showcase-section{
  background:var(--bg-primary);
  border-bottom:1px solid var(--border-color);
  padding:32px clamp(16px,4vw,64px) 36px;
}
.showcase-head{
  max-width:1600px;
  margin:0 auto 18px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  height:fit-content;
}
.showcase-eyebrow{
  font-size:11px;font-weight:600;letter-spacing:1.5px;text-transform:uppercase;
  color:var(--ods-tan-dark);margin-bottom:4px;
}
.showcase-head h2{font-size:21px;font-weight:600;color:var(--ods-burgundy)}
.showcase-sub{font-size:13px;color:var(--text-secondary);max-width:280px}

/* ===== TRENDING / SHOWCASE ===== */

.showcase-wrapper{
    max-width:1600px;
    margin:auto;
    overflow:hidden;
    position:relative;
    width:100%;
    height:250px;
}

.showcase-track{

    display:flex;
    gap:14px;

    width:max-content;

    animation:showcaseScroll 35s linear infinite;

    will-change:transform;
}

.showcase-track:hover{

    animation-play-state:paused;
}

/* Works on touch devices too */

@media (hover:none){

    .showcase-track:hover{

        animation-play-state:running;
    }

}

@keyframes showcaseScroll{

    from{

        transform:translateX(0);
    }

    to{

        transform:translateX(-50%);
    }

}

.showcase-card{
  flex:0 0 170px;
  scroll-snap-align:start;
  background:var(--bg-primary);
  border:1px solid var(--border-color);
  border-radius:12px;
  padding:12px;
  position:relative;
  transition:border-color 0.15s;
}
.showcase-card:hover{border-color:var(--ods-tan)}
.showcase-tag{
  position:absolute;top:10px;left:10px;z-index:1;
  background:var(--ods-burgundy);color:#fff;
  font-size:10px;font-weight:600;
  padding:3px 8px;border-radius:20px;
  display:flex;align-items:center;gap:4px;
}
.showcase-img{
  width:100%;height:130px;border-radius:8px;overflow:hidden;
  background:#f7f7f7;display:flex;align-items:center;justify-content:center;
  margin-bottom:10px;
}
.showcase-img img{width:100%;height:100%;object-fit:contain}
.showcase-name{font-size:13px;font-weight:600;margin-bottom:8px;line-height:1.3}
.showcase-row{display:flex;align-items:center;justify-content:space-between;gap:8px}
.showcase-price{font-size:14px;font-weight:600;color:var(--ods-burgundy)}


/* ===== SHOP / PRODUCTS ===== */
/* Spread the grid almost to both edges of the viewport, scaling the side
   gutter with screen size instead of a fixed centered column */
.shop-layout{max-width:1800px;margin:0 auto;padding:24px clamp(14px,4vw,56px) 48px}
.filter-bar{display:flex;gap:8px;margin-bottom:20px;flex-wrap:wrap;align-items:center}
.filter-btn{background:transparent;border:1px solid var(--border-color);padding:6px 14px;border-radius:20px;font-size:13px;cursor:pointer;color:var(--text-secondary);transition:all 0.15s;font-family:inherit}
.filter-btn:hover,.filter-btn.active{background:var(--ods-burgundy);color:#fff;border-color:var(--ods-burgundy)}
.search-input{margin-left:auto;padding:7px 14px;border:1px solid var(--border-color);border-radius:8px;font-size:13px;background:var(--bg-primary);color:var(--text-primary);width:200px;font-family:inherit}
.products-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:16px;align-items:stretch}

/* Card is a fixed-shape column: image → info block → price/buy pinned to the
   bottom. Nothing about the card's size can move because of desc length —
   only the (already-clamped) description text is allowed to differ, and it
   sits inside a locked-height box. */
.product-card{
  background:var(--bg-primary);
  border:1px solid var(--border-color);
  border-radius:12px;
  overflow:hidden;
  transition:border-color 0.15s, box-shadow .15s, transform .15s;
  display:flex;
  flex-direction:column;
  height:100%;
}
.product-card:hover{border-color:var(--ods-tan);box-shadow:0 10px 26px rgba(0,0,0,.08);transform:translateY(-3px)}

.product-img{
    width:100%;
    height:240px;
    overflow:hidden;
    border-radius:16px 16px 0 0;
    background:#f7f7f7;
    flex-shrink:0;
}

.product-image{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
    transition:.3s;
}

.product-card:hover .product-image{
    transform:scale(1.05);
}
.product-info{
  padding:12px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.product-name{
  font-size:14px;font-weight:600;margin-bottom:4px;
  line-height:1.3;
  height:1.3em;                 /* locked to exactly one line */
  display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis;
}
.product-cat{
  font-size:11px;color:var(--text-secondary);text-transform:uppercase;letter-spacing:0.5px;margin-bottom:6px;
  line-height:1.3;
  height:1.3em;                 /* locked to exactly one line */
  display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis;
}
.product-desc{
    font-size:12px;
    line-height:1.5;
    height:6em;                 /* locked to exactly 4 lines, always */
    margin-bottom:10px;
    color:var(--text-secondary);
    overflow:hidden;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:4;
    line-clamp:4;                /* standards-track fallback */
    word-break:break-word;
}

/* Pinned to the bottom of the card no matter how tall the content above is */
.product-row{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-top:auto}
.product-price{font-size:16px;font-weight:600;color:var(--ods-burgundy)}
.add-btn{background:var(--bg-secondary);border:1px solid var(--border-color);color:var(--ods-burgundy);width:30px;height:30px;border-radius:8px;cursor:pointer;font-size:18px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.buy-btn{background:var(--ods-burgundy);color:#fff;border:none;padding:8px 0;border-radius:8px;cursor:pointer;font-size:12.5px;font-weight:600;width:100%;margin-top:10px;display:flex;align-items:center;justify-content:center;gap:6px;font-family:inherit}
.badge-new{background:var(--ods-burgundy-light);color:var(--ods-burgundy);font-size:10px;padding:2px 7px;border-radius:4px;font-weight:600;display:inline-block;margin-bottom:6px}
.badge-sale{background:var(--ods-gold-light);color:var(--ods-tan-dark);font-size:10px;padding:2px 7px;border-radius:4px;font-weight:600;display:inline-block;margin-bottom:6px}

/* ===== CART ===== */
.cart-layout{
  max-width:920px;
  margin:0 auto;
  padding:32px 24px 64px;
  display:grid;
  grid-template-columns:1fr 320px;
  gap:24px;
  align-items:start;
}
.cart-title{
  font-size:22px;
  font-weight:700;
  margin-bottom:20px;
  color:var(--ods-burgundy);
  grid-column:1 / -1;
}
.cart-items-col{display:flex;flex-direction:column;min-width:0}

.cart-item{
    display:flex;
    gap:16px;
    align-items:center;
    background:var(--bg-primary);
    border:1px solid var(--border-color);
    border-radius:14px;
    padding:14px;
    margin-bottom:12px;
    transition:border-color .15s, box-shadow .15s;
}
.cart-item:hover{
    border-color:var(--ods-tan);
    box-shadow:0 8px 22px rgba(0,0,0,.06);
}

.cart-item-img{
    width:84px;
    height:84px;
    border-radius:12px;
    overflow:hidden;
    background:#fff;
    border:1px solid var(--border-color);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.cart-item-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.cart-item-info{flex:1;min-width:0}
.cart-item-name{
  font-size:14.5px;
  font-weight:600;
  display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis;
}
.cart-item-price{font-size:13px;color:var(--ods-burgundy);font-weight:600;margin-top:4px}
.qty-ctrl{
  display:flex;
  align-items:center;
  gap:6px;
  flex-shrink:0;
  background:var(--bg-secondary);
  border:1px solid var(--border-color);
  border-radius:8px;
  padding:3px;
}
.qty-btn{
  background:#fff;
  border:1px solid var(--border-color);
  width:26px;height:26px;
  border-radius:6px;
  cursor:pointer;
  font-size:14px;
  display:flex;align-items:center;justify-content:center;
  transition:background .15s, border-color .15s;
}
.qty-btn:hover{background:var(--ods-burgundy);border-color:var(--ods-burgundy);color:#fff}
.qty-num{font-size:13px;font-weight:600;min-width:22px;text-align:center}
.remove-btn{
  background:none;border:none;color:var(--text-secondary);
  cursor:pointer;font-size:18px;padding:6px;flex-shrink:0;
  border-radius:6px;
  transition:background .15s, color .15s;
}
.remove-btn:hover{background:var(--ods-burgundy-light);color:var(--ods-burgundy)}

.cart-summary{
  background:var(--bg-primary);
  border:1px solid var(--border-color);
  border-radius:14px;
  padding:22px;
  position:sticky;
  top:78px;
}
.cart-summary h3{font-size:15px;font-weight:600;margin-bottom:16px;color:var(--ods-burgundy)}
.summary-row{display:flex;justify-content:space-between;font-size:14px;margin-bottom:10px;color:var(--text-secondary)}
.summary-total{display:flex;justify-content:space-between;font-size:17px;font-weight:700;padding-top:14px;border-top:1px solid var(--border-color);margin-top:6px;color:var(--text-primary)}
.checkout-btn{
  width:100%;
  background:linear-gradient(135deg,var(--ods-burgundy),var(--ods-burgundy-dark));
  color:#fff;border:none;padding:14px;border-radius:10px;
  font-size:15px;font-weight:600;cursor:pointer;margin-top:18px;font-family:inherit;
  box-shadow:0 12px 28px rgba(107,30,46,.25);
  transition:transform .2s, box-shadow .2s;
}
.checkout-btn:hover{transform:translateY(-3px);box-shadow:0 18px 36px rgba(107,30,46,.32)}
.empty-cart{
  grid-column:1 / -1;
  text-align:center;
  padding:70px 24px;
  color:var(--text-secondary);
  background:var(--bg-primary);
  border:1px solid var(--border-color);
  border-radius:16px;
}
.empty-cart i{font-size:52px;display:block;margin-bottom:14px;color:var(--ods-tan)}
.empty-cart p{margin-bottom:20px;font-size:14px}

@media (max-width:700px){
  .cart-layout{grid-template-columns:1fr;padding:20px 16px 48px}
  .cart-summary{position:static}
}

/* ===== ACCOUNT ===== */
.account-layout{max-width:760px;margin:0 auto;padding:24px}
.account-header{background:var(--ods-burgundy-dark);border-radius:12px;padding:20px;margin-bottom:20px;display:flex;align-items:center;gap:16px}
.avatar{width:56px;height:56px;border-radius:50%;background:rgba(201,151,58,0.25);border:2px solid var(--ods-gold);display:flex;align-items:center;justify-content:center;font-size:18px;font-weight:600;color:var(--ods-gold);flex-shrink:0}
.account-name{color:#fff;font-size:16px;font-weight:600}
.account-email{color:rgba(255,255,255,0.5);font-size:13px;margin-top:2px}
.account-tabs{display:flex;gap:4px;margin-bottom:20px}
.account-tab{background:transparent;border:1px solid var(--border-color);padding:7px 16px;border-radius:8px;font-size:13px;cursor:pointer;color:var(--text-secondary);font-family:inherit}
.account-tab.active{background:var(--ods-burgundy);color:#fff;border-color:var(--ods-burgundy)}
.order-card{background:var(--bg-primary);border:1px solid var(--border-color);border-radius:12px;padding:16px;margin-bottom:12px}
.order-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:12px}
.order-id{font-size:13px;font-weight:600}
.order-date{font-size:12px;color:var(--text-secondary)}
.status-badge{font-size:11px;padding:3px 10px;border-radius:4px;font-weight:600}
.status-delivered{background:#EAF3DE;color:#27500A}
.status-shipped{background:var(--ods-tan-light);color:var(--ods-tan-dark)}
.status-processing{background:var(--ods-gold-light);color:var(--ods-tan-dark)}
.order-items-list{font-size:13px;color:var(--text-secondary);margin-bottom:8px}
.order-total{font-size:14px;font-weight:600}
.track-order-btn{background:transparent;border:1px solid var(--border-color);padding:5px 14px;border-radius:8px;font-size:12px;cursor:pointer;color:var(--text-secondary);font-family:inherit}
.profile-form{background:var(--bg-primary);border:1px solid var(--border-color);border-radius:12px;padding:20px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:14px}
.form-row.single{grid-template-columns:1fr}
.form-group label{display:block;font-size:12px;color:var(--text-secondary);margin-bottom:4px}
.form-group input{width:100%;padding:8px 12px;border:1px solid var(--border-color);border-radius:8px;font-size:13px;background:var(--bg-primary);color:var(--text-primary);font-family:inherit}
.save-btn{background:var(--ods-burgundy);color:#fff;border:none;padding:9px 24px;border-radius:8px;font-size:14px;cursor:pointer;font-weight:600;font-family:inherit}
.addr-card{border:1px solid var(--border-color);border-radius:8px;padding:14px}
.addr-default-tag{background:var(--ods-burgundy-light);color:var(--ods-burgundy);font-size:10px;padding:2px 8px;border-radius:4px;margin-left:6px}

/* ===== CHECKOUT ===== */
.checkout-layout{max-width:720px;margin:0 auto;padding:24px}
.checkout-steps{display:flex;gap:0;margin-bottom:28px}
.step{flex:1;text-align:center;position:relative}
.step::after{content:'';position:absolute;top:14px;left:50%;right:-50%;height:1px;background:var(--border-color);z-index:0}
.step:last-child::after{display:none}
.step-circle{width:28px;height:28px;border-radius:50%;background:var(--bg-secondary);border:1px solid var(--border-color);display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:600;margin:0 auto 6px;position:relative;z-index:1}
.step.done .step-circle{background:var(--ods-burgundy);color:#fff;border-color:var(--ods-burgundy)}
.step.active .step-circle{background:var(--ods-gold);color:#fff;border-color:var(--ods-gold)}
.step-label{font-size:11px;color:var(--text-secondary)}
.step.active .step-label{color:var(--text-primary);font-weight:600}
.checkout-card{background:var(--bg-primary);border:1px solid var(--border-color);border-radius:12px;padding:20px;margin-bottom:16px}
.checkout-card h3{font-size:15px;font-weight:600;margin-bottom:16px}
.checkout-order-row{display:flex;justify-content:space-between;align-items:center;padding:8px 0;border-bottom:1px solid var(--border-color);font-size:13px}
.checkout-order-row:last-child{border-bottom:none}
.payment-options{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:16px}
.payment-option{border:1px solid var(--border-color);border-radius:12px;padding:14px;cursor:pointer;text-align:center}
.payment-option.selected{border:2px solid var(--ods-burgundy)}
.payment-option i{font-size:24px;color:var(--text-secondary)}
.payment-option.selected i{color:var(--ods-burgundy)}
.payment-option div.lbl{font-size:13px;font-weight:600;margin-top:6px;color:var(--text-secondary)}
.payment-option.selected div.lbl{color:var(--text-primary)}
.success-screen{text-align:center;padding:48px 24px}
.success-icon{width:64px;height:64px;border-radius:50%;background:var(--ods-burgundy-light);display:flex;align-items:center;justify-content:center;margin:0 auto 16px}
.track-code{background:var(--bg-secondary);border-radius:8px;padding:12px 20px;display:inline-block;font-size:14px;font-weight:600;letter-spacing:1px;margin-bottom:24px}

/* ===== ABOUT ===== */
.about-hero{background:var(--ods-burgundy-dark);padding:48px 24px;text-align:center;position:relative;overflow:hidden}
.about-hero h1{color:#fff;font-size:30px;font-weight:600;position:relative;z-index:1}
.about-hero p{color:rgba(255,255,255,0.6);font-size:14px;margin-top:8px;position:relative;z-index:1}
.about-layout{max-width:880px;margin:0 auto;padding:48px 24px}
.about-section{margin-bottom:48px}
.about-section h2{font-size:22px;font-weight:600;margin-bottom:14px;color:var(--ods-burgundy)}
.about-section p{font-size:14.5px;line-height:1.7;color:var(--text-secondary)}
.about-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:24px}
.about-card{background:var(--bg-primary);border:1px solid var(--border-color);border-radius:12px;padding:24px;text-align:center}
.about-card-icon{width:48px;height:48px;border-radius:12px;background:var(--ods-burgundy-light);display:flex;align-items:center;justify-content:center;margin:0 auto 14px;font-size:22px;color:var(--ods-burgundy)}
.about-card h3{font-size:15px;font-weight:600;margin-bottom:8px}
.about-card p{font-size:13px;color:var(--text-secondary);line-height:1.5}
.timeline{margin-top:20px}
.timeline-item{display:flex;gap:20px;padding-bottom:24px;position:relative}
.timeline-item::before{content:'';position:absolute;left:7px;top:24px;bottom:0;width:1px;background:var(--border-color)}
.timeline-item:last-child::before{display:none}
.timeline-dot{width:16px;height:16px;border-radius:50%;background:var(--ods-gold);flex-shrink:0;margin-top:2px;border:3px solid var(--ods-gold-light)}
.timeline-year{font-size:13px;font-weight:600;color:var(--ods-burgundy);margin-bottom:4px}
.timeline-text{font-size:13.5px;color:var(--text-secondary);line-height:1.6}
.values-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin-top:20px}
.value-item{display:flex;gap:12px;align-items:flex-start}
.value-icon{width:36px;height:36px;border-radius:8px;background:var(--ods-gold-light);color:var(--ods-tan-dark);display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:17px}
.value-item h4{font-size:14px;font-weight:600;margin-bottom:3px}
.value-item p{font-size:13px;color:var(--text-secondary);line-height:1.5}
.about-cta{background:var(--ods-burgundy-light);border-radius:12px;padding:32px;text-align:center;margin-top:8px}
.about-cta h3{font-size:18px;font-weight:600;color:var(--ods-burgundy);margin-bottom:8px}
.about-cta p{font-size:13.5px;color:var(--text-secondary);margin-bottom:18px}

/* ===== FOOTER ===== */
.site-footer{
  background:var(--ods-burgundy-dark);
  color:rgba(255,255,255,0.7);
  padding:48px 24px 0;
  margin-top:24px;
}
.footer-top{
  max-width:1100px;margin:0 auto;
  display:grid;grid-template-columns:1.6fr 1fr 1fr 1.2fr;gap:32px;
  padding-bottom:36px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
.footer-brand-row{display:flex;align-items:center;gap:10px;margin-bottom:14px}
.footer-brand-name{font-size:15px;font-weight:600;color:#fff}
.footer-tagline{font-size:13px;line-height:1.6;color:rgba(255,255,255,0.5);max-width:280px;margin-bottom:16px}
/*==============================
  Footer Social Icons
==============================*/

.footer-social{
    display:flex;
    align-items:center;
    gap:16px;
    margin-top:20px;
    flex-wrap:wrap;
}

.footer-social a{
    position:relative;
    width:48px;
    height:48px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.1);
    border-radius:50%;
    transition:all .3s ease;
    overflow:hidden;
}

.footer-social a img{
    width:22px;
    height:22px;
    object-fit:contain;
    transition:transform .3s ease;
}

.footer-social a:hover{
    background:var(--ods-gold);
    transform:translateY(-5px);
    box-shadow:0 10px 20px rgba(0,0,0,.2);
}

.footer-social a:hover img{
    transform:scale(1.15);
}

/*==============================
  Tooltip
==============================*/

.footer-social a::after{
    content:attr(title);
    position:absolute;
    bottom:120%;
    left:50%;
    transform:translateX(-50%);
    background:#111;
    color:#fff;
    padding:6px 10px;
    border-radius:6px;
    font-size:12px;
    white-space:nowrap;

    opacity:0;
    visibility:hidden;
    transition:.25s;
}

.footer-social a::before{
    content:"";
    position:absolute;
    bottom:108%;
    left:50%;
    transform:translateX(-50%);
    border:6px solid transparent;
    border-top-color:#111;

    opacity:0;
    visibility:hidden;
    transition:.25s;
}

.footer-social a:hover::after,
.footer-social a:hover::before{
    opacity:1;
    visibility:visible;
}

.footer-col h4{font-size:13px;font-weight:600;color:#fff;margin-bottom:14px;letter-spacing:0.3px}
.footer-col{display:flex;flex-direction:column;gap:10px}
.footer-col a{font-size:13px;color:rgba(255,255,255,0.55);transition:color 0.15s;display:flex;align-items:center;gap:6px}
.footer-col a:hover{color:var(--ods-gold)}

.footer-bottom{
  max-width:1100px;margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:10px;
  padding:18px 0;
  font-size:12px;color:rgba(255,255,255,0.4);
}
.footer-bottom-links{display:flex;gap:18px}
.footer-bottom-links a{color:rgba(255,255,255,0.4)}
.footer-bottom-links a:hover{color:#fff}

/* ===== TOAST ===== */
#toast{position:fixed;bottom:24px;right:24px;background:var(--ods-burgundy);color:#fff;padding:10px 18px;border-radius:8px;font-size:13px;z-index:999;opacity:0;transition:opacity 0.2s;pointer-events:none}
#toast.show{opacity:1}

@media (max-width:900px){
  .footer-top{grid-template-columns:1fr 1fr}
}

/* ===== MOBILE (<=700px) ===== */
@media (max-width:700px){
  .about-grid,.values-grid,.form-row,.payment-options{grid-template-columns:1fr}

  /* Nav: hide inline links, show hamburger + dropdown */
  .nav{padding:0 14px}
  .nav-brand-sub{display:none}
  .nav-toggle{display:flex}
  .nav-links{
    display:none;
    position:absolute;
    top:62px;left:0;right:0;
    background:var(--ods-burgundy-dark);
    flex-direction:column;
    gap:2px;
    padding:8px 14px 14px;
    border-bottom:1px solid rgba(255,255,255,0.1);
    box-shadow:0 12px 24px rgba(0,0,0,0.25);
  }
  .nav-links.show{display:flex}
  .nav-links .nav-btn{width:100%;text-align:left;padding:12px 10px}
  .cart-btn{padding:8px 12px;font-size:12px}
  .cart-btn i{font-size:16px}

  .hero-flex{flex-direction:column;text-align:center}
  .hero-content{text-align:center}
  .hero p{margin:0 auto 28px}
  .hero-actions{justify-content:center}
  .hero-media{flex:none;width:100%;max-width:280px}
  .showcase-head{flex-direction:column;align-items:flex-start}
  .footer-top{grid-template-columns:1fr}

  /* Shop filter bar: full-width search, wraps cleanly */
  .filter-bar{gap:8px}
  .search-input{margin-left:0;width:100%;order:10}

  /* Product popup: stack image over details, allow scrolling */
  .popup{grid-template-columns:1fr;max-height:92vh;overflow-y:auto}
  .popup-left{padding:20px}
  .popup-right{padding:20px}
  #popupImage{height:240px}
}

@media (max-width:420px){
  .products-grid{grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:10px}
  .shop-layout{padding-left:12px;padding-right:12px}
}


.product-popup{
position:fixed;
inset:0;
background:rgba(0,0,0,.75);
display:none;
justify-content:center;
align-items:center;
backdrop-filter:blur(5px);
z-index:9999;
padding:16px;
}

.product-popup.active{
display:flex;
}

.popup{
width:1100px;
max-width:95%;
max-height:90vh;
background:#fff;
border-radius:18px;
overflow:hidden;
display:grid;
grid-template-columns:1fr 1fr;
position:relative;
}

.popup-left{
padding:30px;
background:#fafafa;
}

.popup-right{
padding:35px;
overflow-y:auto;
}

#popupImage{
width:100%;
height:420px;
object-fit:contain;
border-radius:12px;
}

#popupGallery{
display:flex;
gap:12px;
margin-top:20px;
flex-wrap:wrap;
}

#popupGallery img{
width:75px;
height:75px;
object-fit:cover;
border-radius:10px;
cursor:pointer;
border:2px solid transparent;
transition:.3s;
}

#popupGallery img:hover{
border-color:#8B1E3F;
}

.popup-close{
position:absolute;
top:15px;
right:15px;
width:42px;
height:42px;
border:none;
background:#8B1E3F;
color:#fff;
border-radius:50%;
cursor:pointer;
font-size:22px;
z-index:2;
}

#popupBadge{
display:inline-block;
padding:6px 12px;
background:#8B1E3F;
color:#fff;
border-radius:30px;
margin-bottom:15px;
}

#popupName{
margin-bottom:10px;
}

#popupPrice{
font-size:30px;
color:#8B1E3F;
margin-bottom:20px;
}

#popupDesc{
margin-bottom:25px;
line-height:1.7;
color:#666;
}

.spec{
display:flex;
justify-content:space-between;
padding:12px 0;
border-bottom:1px solid #eee;
}


/*====================================
    CHECKOUT PAGE
====================================*/

.checkout-page{
    background:linear-gradient(
        180deg,
        #f7f7f8 0%,
        #f1f1f2 100%
    );
    min-height:calc(100vh - 62px);
    padding:60px 20px;
}

.checkout-container{
    max-width:900px;
    margin:auto;
    background:#fff;
    border:1px solid var(--border-color);
    border-radius:22px;
    overflow:hidden;
    box-shadow:
        0 15px 45px rgba(0,0,0,.08);
}

/*====================================
    HEADER
====================================*/

.checkout-container h1{
    background:linear-gradient(
        135deg,
        var(--ods-burgundy),
        var(--ods-burgundy-dark)
    );
    color:#fff;
    text-align:center;
    padding:35px;
    font-size:34px;
    font-weight:700;
    letter-spacing:.5px;
}

.checkout-container h1::after{
    content:"";
    display:block;
    width:70px;
    height:4px;
    background:var(--ods-gold);
    margin:18px auto 0;
    border-radius:50px;
}

/*====================================
    SECTIONS
====================================*/

.section{
    margin:35px;
    background:#fff;
    border:1px solid var(--border-color);
    border-radius:18px;
    padding:28px;
    transition:.3s;
}

.section:hover{
    border-color:var(--ods-gold);
    box-shadow:0 12px 30px rgba(0,0,0,.05);
}

.section h3{
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--ods-burgundy);
    font-size:20px;
    margin-bottom:25px;
    padding-bottom:15px;
    border-bottom:2px solid var(--ods-gold-light);
}

.section h3 i{
    color:var(--ods-gold);
    font-size:24px;
}

.field-error{
    color:#c0392b;
    font-size:12px;
    margin-top:-14px;
    margin-bottom:14px;
    display:none;
}

.field-error.show{display:block}

/*====================================
    FORM
====================================*/

.row{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:4px 20px;
    margin-bottom:4px;
}

label{
    display:block;
    margin-bottom:8px;
    font-size:13px;
    font-weight:600;
    color:var(--text-secondary);
}

input,
select,
textarea{

    width:100%;
    padding:15px 18px;
    margin-bottom:16px;

    background:#fff;

    border:1.5px solid var(--border-color);

    border-radius:14px;

    font-size:15px;

    font-family:inherit;
    color:var(--text-primary);

    transition:border-color .25s, box-shadow .25s, background .25s;
}

select{
    appearance:none;
    -webkit-appearance:none;
    background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'><path d='M1 1L7 7L13 1' stroke='%236B1E2E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat:no-repeat;
    background-position:right 18px center;
    padding-right:44px;
    cursor:pointer;
}

textarea{
    min-height:120px;
    resize:vertical;
}

input::placeholder,
textarea::placeholder{color:#B4B4B8}

input:hover,
select:hover,
textarea:hover{border-color:var(--ods-tan)}

input:focus,
select:focus,
textarea:focus{

    outline:none;

    border-color:var(--ods-gold);

    background:var(--ods-gold-light);

    box-shadow:
        0 0 0 4px rgba(201,151,58,.18);

}

input.invalid,
textarea.invalid{
    border-color:#c0392b;
    background:#FBEEEC;
    box-shadow:0 0 0 4px rgba(192,57,43,.12);
}

/*====================================
    DELIVERY NOTICE
====================================*/

.notice{

    margin-top:20px;

    background:var(--ods-gold-light);

    border-left:5px solid var(--ods-gold);

    padding:18px;

    border-radius:12px;

    color:var(--text-secondary);

    line-height:1.8;

    font-size:14px;
}

.notice strong{
    color:var(--ods-burgundy);
}

/*====================================
    ORDER SUMMARY
====================================*/

.order-box{

    background:var(--bg-secondary);

    border:1px solid var(--border-color);

    border-radius:16px;

    padding:22px;
}

.order-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:12px;

    padding:16px 4px;

    border-bottom:1px solid var(--border-color);

    font-size:15px;

    transition:background .15s;

    border-radius:8px;
}

.order-item:hover{background:rgba(107,30,46,.03)}

.order-item span:first-child{
    color:var(--text-primary);
}

.order-item:last-child{

    border:none;

    font-size:20px;

    color:var(--ods-burgundy);

    font-weight:700;
}

.order-item:last-child:hover{background:none}

.order-box hr{
    border:none;
    border-top:1px dashed var(--border-color);
    margin:6px 4px;
}

.order-empty{
    color:var(--text-secondary);
    font-size:14px;
    text-align:center;
    padding:34px 10px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
}

.order-empty i{
    font-size:40px;
    color:var(--ods-tan);
}

.order-empty a{
    color:var(--ods-burgundy);
    font-weight:600;
}

/*====================================
    TERMS
====================================*/

.checkbox{

    margin:35px;

    display:flex;

    gap:12px;

    align-items:flex-start;

    font-size:14px;

    color:var(--text-secondary);
}

.checkbox input{

    width:20px;
    height:20px;
    accent-color:var(--ods-burgundy);
    margin-top:2px;
}

/*====================================
    BUTTONS
====================================*/

.buttons{

    display:flex;

    gap:20px;

    margin:35px;

    margin-top:0;

    flex-wrap:wrap;
}

.order-btn,
.whatsapp-btn{

    flex:1;

    min-width:240px;

    height:58px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    border-radius:15px;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;
}

/* Place Order */

.order-btn{

    border:none;

    color:#fff;

    background:linear-gradient(
        135deg,
        var(--ods-burgundy),
        var(--ods-burgundy-dark)
    );

    box-shadow:
        0 15px 35px rgba(107,30,46,.25);
}

.order-btn:hover{

    transform:translateY(-5px);

    box-shadow:
        0 22px 45px rgba(107,30,46,.35);
}

.order-btn:disabled{
    opacity:.55;
    cursor:not-allowed;
    transform:none;
    box-shadow:none;
}

/* WhatsApp */

.whatsapp-btn{

    text-decoration:none;

    color:#fff;

    background:#25D366;

    box-shadow:
        0 15px 35px rgba(37,211,102,.25);
}

.whatsapp-btn:hover{

    transform:translateY(-5px);

    background:#1db954;
}

/*====================================
    RESPONSIVE
====================================*/

@media(max-width:768px){

.checkout-page{
    padding:30px 15px;
}

.checkout-container h1{
    font-size:26px;
    padding:26px 20px;
}

.section{
    margin:16px;
    padding:18px;
}

.row{
    grid-template-columns:1fr;
    gap:14px;
}

.buttons{
    margin:16px;
    flex-direction:column;
}

.buttons .order-btn,
.buttons .whatsapp-btn{
    min-width:0;
    width:100%;
}

.checkbox{
    margin:16px;
}

input,select,textarea{
    padding:13px 14px;
    font-size:14px;
}

.bank-row{
    flex-wrap:wrap;
}

}


.bank-info{

    display:none;

    margin-top:25px;

    background:var(--ods-gold-light);

    border:1px solid rgba(201,151,58,.35);

    border-radius:16px;

    padding:25px;

}

.bank-info h4{

    display:flex;

    align-items:center;

    gap:10px;

    color:var(--ods-burgundy);

    margin-bottom:18px;

}

.bank-card{

    background:#fff;

    border-radius:14px;

    padding:18px;

    border:1px solid var(--border-color);

}

.bank-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 0;

    border-bottom:1px solid var(--border-color);

}

.bank-row:last-child{

    border-bottom:none;

}

.copy-btn{

    border:none;

    width:36px;

    height:36px;

    border-radius:10px;

    cursor:pointer;

    background:var(--ods-burgundy);

    color:#fff;

}

.bank-note{

    margin-top:18px;

    font-size:13px;

    color:var(--text-secondary);

}


/* Floating WhatsApp Customer Care */

.customer-care-btn{
    position:fixed;
    right:25px;
    bottom:25px;
    display:flex;
    align-items:center;
    gap:15px;
    padding:14px 18px;
    background:#ffffff;
    border-radius:18px;
    text-decoration:none;
    box-shadow:0 12px 35px rgba(0,0,0,.15);
    z-index:9999;
    transition:.35s ease;
    min-width:320px;
    border:1px solid #e5e7eb;
}

.customer-care-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 45px rgba(0,0,0,.2);
}

.care-icon{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
}

.care-icon i{
    font-size:34px;
    color:#fff;
}

.care-text{
    display:flex;
    flex-direction:column;
    flex:1;
}

.care-text span{
    color:#111827;
    font-size:16px;
    font-weight:700;
}

.care-text small{
    display:flex;
    align-items:center;
    gap:6px;
    margin-top:4px;
    color:#6b7280;
    font-size:13px;
}

.online-status{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:12px;
    font-weight:600;
    color:#16a34a;
    white-space:nowrap;
}

.online-status span{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#16a34a;
    animation:pulse 1.5s infinite;
}

@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(22,163,74,.6);
    }
    70%{
        box-shadow:0 0 0 10px rgba(22,163,74,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(22,163,74,0);
    }
}

/* Mobile */

@media(max-width:768px){

    .customer-care-btn{
        right:15px;
        left:15px;
        bottom:15px;
        min-width:auto;
        padding:12px 15px;
    }

    .care-icon{
        width:50px;
        height:50px;
    }

    .care-icon i{
        font-size:30px;
    }

    .care-text span{
        font-size:15px;
    }

    .online-status{
        display:none;
    }

}


/* ==========================
      SUCCESS POPUP
========================== */

.popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:10000;
    padding:16px;
}

.popup-overlay.show{
    opacity:1;
    visibility:visible;
}

.popup-box{
    width:90%;
    max-width:430px;
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 20px 50px rgba(0,0,0,.2);
    animation:popup .35s ease;
}

@keyframes popup{

    from{
        transform:translateY(40px) scale(.9);
        opacity:0;
    }

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

}

.popup-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:#e8f8ee;
    display:flex;
    justify-content:center;
    align-items:center;
}

.popup-icon i{
    font-size:55px;
    color:#16a34a;
}

.popup-box h2{
    margin:20px 0 10px;
    color:#222;
}

.popup-box p{
    color:#666;
    line-height:1.7;
    margin-bottom:25px;
}

.popup-btn{
    width:100%;
    border:none;
    padding:14px;
    background:#16a34a;
    color:#fff;
    border-radius:12px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.popup-btn:hover{
    background:#15803d;
}