  @import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

  /* ===========================
    MAIN STYLESHEET SUMMARY
    This file contains all global styles extracted from blade templates.
    
    - ROOT + BASE: Global variables and base styles
    - HEADER / NAVBAR: Navigation and header styles
    - HERO SECTIONS: Hero section variants
    - TREND ONE: Trending products section
    - TESTIMONIALS: Customer reviews section
    - FOOTER: Footer styles
    - WOMENS/MENS/KIDS PAGES: Category page layouts
    - CSS OVERRIDE FOR PRODUCT CARDS: Consistent card design
    - PRODUCT DETAILS PAGE STYLES: Product detail page
    - OFFER BANNER STYLES: Banner styles
    - KIDS PAGE STYLES: Kids page layout
    - SHOP PAGE STYLES: Shop page layout
    - CHECKOUT PAGE STYLES: Checkout page layout
    - STAFF DASHBOARD STYLES: Staff dashboard layout
  =========================== */

  /* ===========================
    ROOT + BASE
  =========================== */
  :root{
    --bg:#f8f9fa;
    --brand:#ff6b9d;
    --brand-2:#ff8e9d;
    --brand-dark:#e14b86; /* kids uses this */
    --text:#333;
    --soft:#666;
    --radius:15px;
    --shadow-sm:0 4px 15px rgba(0,0,0,.08);
    --shadow-md:0 15px 35px rgba(255,107,157,.15);
    --space: clamp(14px, 1.6vw, 20px);
  }

  *{margin:0;padding:0;box-sizing:border-box}
  body{
    background:var(--bg);
    font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,"Helvetica Neue",Arial,"Noto Sans",sans-serif
  }

  /* ===========================
    HEADER / NAVBAR
  =========================== */
:root{
  --navBg: #ffffff;
  --navBorder: #e2e8f0;
  --navText: #0f5c50;
  --navMuted: #64748b;
  --accent: #ffb400;
}

/* Navbar base */
.ashion-navbar{
  width: 100%;
  background: var(--navBg);
  border-bottom: 1px solid var(--navBorder);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.ashion-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  max-width: 1400px;
  margin: 0 auto;
}
.ashion-logo{ text-decoration:none; display:flex; align-items:center; }
.logo-image{ height: 80px; width:auto; object-fit: contain; margin-left: 20px; }

/* links */
.ashion-links{ display:flex; gap:20px; }
.ashion-links a{
  text-decoration:none;
  color:#144d7c;
  font-weight:600;
  font-size:16px;
  padding:8px 0;
}

/* right */
.ashion-right{
  display:flex;
  align-items:center;
  gap: 18px;
  margin-right: 20px;
  padding-right: 10px;
}
#authArea{ display:flex; align-items:center; }

/* icon buttons */
.icon-btn{
  background:none;
  border:none;
  cursor:pointer;
  color:#0f5c50;

  width:36px;
  height:36px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;
  font-size:1.25rem;
  line-height: 1;
  padding: 0;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
}
.icon-btn:hover{
  background: rgba(15,92,80,.08);
}
.user-dropdown-btn:focus{ outline:none; box-shadow:none; }
.login-link{ text-decoration:none; }

/* ✅ ACCOUNT DROPDOWN STYLE (screenshot like) */
.asion-account-dd .dropdown-menu.asion-dropdown{
  min-width: 200px;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 16px 30px rgba(0,0,0,.15);
  overflow: hidden;
}
.asion-dropdown .dropdown-item{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  color:#111;
}
.asion-dropdown .dropdown-item i{
  width: 18px;
  text-align:center;
  opacity: .9;
}
.asion-dropdown .dropdown-item:hover{
  background: #f3f4f6;
  color:#111;
}
.asion-divider{
  margin: 6px 6px;
  border-top: 1px solid rgba(0,0,0,.10);
}

/* badges */
.badge{
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #dc3545;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(220, 53, 69, 0.3);
  border: 2px solid #fff;
  z-index: 10;
}
.icon-wrapper{ position:relative; }

/* Desktop search */
.desktop-search-bar{
  flex:1;
  max-width:400px;
  margin:0 20px;
  display:none;
  position:relative;
}
.search-form-inline{ width:100%; display:flex; position:relative; }
.search-input-inline{
  width:100%;
  padding:12px 20px;
  padding-right:45px;
  border:2px solid #e2e8f0;
  border-radius:25px;
}
.search-submit-inline{
  position:absolute;
  right:8px;
  top:50%;
  transform: translateY(-50%);
  border:none;
  background:none;
  cursor:pointer;
}

/* Mobile Search */
.responsive-search-container{
  display:none;
  padding: 0 30px 15px;
  background:#fff;
  border-bottom:1px solid #e2e8f0;
}
.responsive-search-container.show{ display:block; }
.responsive-search-form{
  width:100%;
  max-width:500px;
  margin:0 auto;
  position:relative;
  display:flex;
}
.responsive-search-input{
  width:100%;
  padding:12px 20px;
  padding-right:45px;
  border:2px solid #e2e8f0;
  border-radius:25px;
}
.responsive-search-submit{
  position:absolute;
  right:8px;
  top:50%;
  transform: translateY(-50%);
  border:none;
  background:none;
  cursor:pointer;
}

/* Search suggestions dropdown */
.search-suggestions-dropdown{
  position:absolute;
  top:100%;
  left:0; right:0;
  background:#fff;
  border:1px solid #e2e8f0;
  border-top:none;
  border-radius:0 0 25px 25px;
  box-shadow:0 10px 25px rgba(0,0,0,.1);
  z-index: 2000;
  max-height:300px;
  overflow-y:auto;
}
.search-suggestions-dropdown.mobile{
  position: static;
  border-radius:25px;
  margin-top:10px;
}

/* Search suggestion items */
.search-suggestions-list{
  padding: 5px 0;
  margin: 0;
}

.search-suggestion-item{
  padding: 12px 15px;
  cursor: pointer;
  border-bottom: 1px solid #f1f5f9;
  transition: background-color 0.2s ease;
}

.search-suggestion-item:hover{
  background-color: #f8fafc;
}

.search-suggestion-item:last-child{
  border-bottom: none;
}

.search-suggestion-name{
  font-weight: 500;
  color: #1e293b;
  margin-bottom: 4px;
}

.search-suggestion-category{
  font-size: 12px;
  color: #64748b;
}

/* Category match items */
.search-suggestion-item.category-match{
  background-color: #f0f9ff;
  border-left: 3px solid #0ea5e9;
}

.search-suggestion-item.category-match .search-suggestion-name{
  color: #0369a1;
  font-weight: 600;
}

.search-suggestion-item.category-match .search-suggestion-category{
  color: #0ea5e9;
  font-style: italic;
}

/* Popular category suggestions */
.search-suggestion-item.popular-category{
  background: linear-gradient(135deg, #fff0f5 0%, #ffe6f0 100%);
  border-left: 4px solid #ff69b4;
  box-shadow: 0 2px 8px rgba(255, 105, 180, 0.2);
}

.search-suggestion-item.popular-category .search-suggestion-name{
  color: #c71585;
  font-weight: 700;
  font-size: 1.05rem;
}

.search-suggestion-item.popular-category .search-suggestion-category{
  color: #ff69b4;
  font-weight: 500;
}

/* Menu toggle */
.menu-toggle{ display:none; }

/* Mobile menu overlay */
.mobile-menu{
  position: fixed;
  inset: 0;
  background: rgba(2,6,23,.55);
  z-index: 99999;
  display:none;
}
.mobile-menu.active{ display:block; }
.mobile-drawer{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  background:#fff;
  transform: translateX(-100%);
  transition: transform .25s ease;
  overflow-y:auto;
}
.mobile-menu.active .mobile-drawer{ transform: translateX(0); }
.mobile-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 16px;
  border-bottom:1px solid #e2e8f0;
}
.mobile-logo-image{ height: 30px; margin-left:0; }
.close-btn{ border:none; background:none; font-size:1.5rem; cursor:pointer; }

.mobile-icons{
  display:flex;
  gap:15px;
  margin: 20px 0;
  padding: 0 16px;
  align-items:center;
}
.mobile-links{
  display:flex;
  flex-direction:column;
  gap:15px;
  padding: 0 16px 20px;
}
.mobile-links a{
  text-decoration:none;
  color:#0f5c50;
  font-weight:600;
  font-size:1.1rem;
  padding:12px 0;
}

/* hide header row when menu open */
body.menu-open .ashion-container,
body.menu-open .responsive-search-container{
  opacity: 0;
  pointer-events: none;
}

/* Responsive */
@media (min-width: 993px){
  .desktop-search-bar{ display:block; }
}
@media (max-width: 992px){
  .ashion-links{ display:none; }
  .menu-toggle{ display:flex; }
  .desktop-search-bar{ display:none; }
  .responsive-search-container{ display:block; }
}
@media (max-width: 480px){
  .logo-image{ height:70px; }
  .ashion-right{ gap:15px; margin-right:15px; padding-right:8px; }
  .icon-btn{ font-size:1.15rem; width:32px; height:32px; }
  .badge{ top:-4px; right:-4px; min-width:16px; height:16px; font-size:9px; }
}
  /* ===========================
   HERO IMAGE SLIDER (FULL COVER)
=========================== */
.hero-section{
  position: relative;
  padding-top: 90px;   /* pushes hero content below navbar */
}
/* ===========================
   2 COLUMN LAYOUT
=========================== */
.two-col-slider{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
/* ===========================
   CARD SLIDER (HEIGHT INCREASED)
=========================== */
.hero-img-slider{
  position: relative;
  width: 100%;
  height: clamp(380px, 30vw, 620px); /* INCREASED HEIGHT */
  border-radius: 22px;
  overflow: hidden;
  background: #f2f2f2;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

/* slides */
.hero-img-slider .img-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .7s ease, transform .7s ease;
  pointer-events: none;
}

.hero-img-slider .img-slide.active{
  opacity: 1;
  transform: scale(1);
  z-index: 2;
  pointer-events: auto;
}

/* image */
.hero-img-slider img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
/* ===========================
  HERO RESPONSIVE
=========================== */
@media (max-width: 900px){
  .two-col-slider{
    grid-template-columns: 1fr;
  }
  .hero-img-slider{
    height: 420px; /* bigger on mobile */
  }
}

@media (max-width: 480px){
  .hero-section{ padding-top: 75px; } /* smaller nav height */
  .hero-img-slider{
    height: 340px;
  }
  .hero-wave svg{
    height: 55px;
  }
}
/* hero end  */

 /* ===========================
   NEW ARRIVALS STYLE
  =========================== */
.nm-products{
  padding: 56px 0;
  background:#fff;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue";
}
.nm-container{
  width:min(1180px, 92vw);
  margin:0 auto;
}

/* Header */
.nm-header{ text-align:center; margin-bottom:24px; }
.nm-title{
  font-size: 26px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  margin:0;
}
.nm-subtitle{
  margin:8px 0 0;
  color:#666;
  font-size: 14px;
  letter-spacing:.02em;
}

/* Filter */
.nm-filter{
  display:flex;
  justify-content:center;
  gap:10px;
  margin: 18px 0 28px;
  flex-wrap:wrap;
}
.nm-tab{
  border:1px solid #e6e6e6;
  background:#fff;
  color:#222;
  padding:8px 14px;
  border-radius:999px;
  font-size:13px;
  letter-spacing:.04em;
  cursor:pointer;
  transition:.2s;
}
.nm-tab:hover{ border-color:#cfcfcf; }
.nm-tab.active{
  border-color:#222;
  color:#fff;
  background:#222;
}

/* ---------- GRID (like image) ---------- */
.nm-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 22px;
}

@media (max-width: 1024px){
  .nm-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px){
  .nm-grid{ grid-template-columns: repeat(2, 1fr); gap:20px 16px; }
}
@media (max-width: 420px){
  .nm-grid{ grid-template-columns: 1fr; }
}

/* ---------- CARD ---------- */
.nm-card{
  background:#fff;
  cursor:pointer;
  border:1px solid transparent;
  transition: .25s ease;
}
.nm-card:hover{ border-color:#efefef; }

/* Image area */
.nm-imgWrap{
  position:relative;
  width:100%;
  overflow:hidden;
  background:#fafafa;
}

/* keep “fashion catalog” ratio */
.nm-img{
  width:100%;
  height:auto;
  display:block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform .35s ease;
}
.nm-card:hover .nm-img{ transform: scale(1.03); }

/* SOLD OUT tag (top like screenshot) */
.nm-soldout{
  position:absolute;
  top:10px;
  right:10px;
  background:#fff;
  border:1px solid #e7e7e7;
  color:#222;
  font-size: 11px;
  letter-spacing:.12em;
  text-transform: uppercase;
  padding:6px 10px;
  border-radius: 999px;
}

/* Optional badge (if you still want) */
.nm-badge{
  position:absolute;
  top:10px;
  left:10px;
  background:#222;
  color:#fff;
  font-size:11px;
  letter-spacing:.10em;
  text-transform: uppercase;
  padding:6px 10px;
  border-radius: 999px;
}

/* Wishlist (minimal: only show on hover) */
.nm-wish{
  position:absolute;
  bottom:10px;
  right:10px;
  width:38px;
  height:38px;
  border-radius:999px;
  border:1px solid #e7e7e7;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  line-height:1;
  opacity:0;
  transform: translateY(6px);
  transition:.2s ease;
}
.nm-card:hover .nm-wish{ opacity:1; transform: translateY(0); }
.nm-wish.active{
  border-color:#222;
  color:#222;
}

/* Info area under image (centered like screenshot) */
.nm-info{
  padding: 14px 6px 6px;
  text-align:center;
}
.nm-name{
  margin:0;
  font-size:12px;
  letter-spacing:.14em;
  text-transform: uppercase;
  font-weight: 500;
  color:#111;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* Price row */
.nm-priceRow{
  margin-top:8px;
  display:flex;
  justify-content:center;
  gap:10px;
  align-items:baseline;
}
.nm-price{
  font-size:12px;
  color:#222;
  letter-spacing:.06em;
}
.nm-oprice{
  font-size:12px;
  color:#999;
  text-decoration: line-through;
  letter-spacing:.06em;
}

/* Actions hidden (keep your JS working; you can show on hover if needed) */
.nm-actions{
  display:none; /* minimal like screenshot */
}

/* Optional: show Add to cart on hover (if you want, change to flex)
.nm-actions{
  display:flex;
  gap:10px;
  justify-content:center;
  margin-top:12px;
}
.nm-cart, .nm-view{
  font-size:12px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid #e7e7e7;
  background:#fff;
  color:#222;
}
.nm-cart:hover, .nm-view:hover{ border-color:#cfcfcf; }
*/
.nm-empty{
  grid-column: 1 / -1;
  text-align:center;
  color:#777;
  padding:40px 0;
}
.pd-grid{
    display:grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap:18px;
  }
  @media (max-width:1200px){
    .pd-grid{ grid-template-columns: repeat(4, minmax(0,1fr)); }
  }
  @media (max-width:992px){
    .pd-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
  }
  @media (max-width:640px){
    .pd-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  }

  /* ✅ kill slider behavior if any CSS exists */
  .pd-scroll{ overflow: visible !important; white-space: normal !important; }

  /* card should take full width inside grid */
  .pd-card{ width:100% !important; }
  .pd-card .img img{ width:100%; height:auto; display:block; }

/* new arrivals end  */
  /* /* ===========================
    TREND ONE (HOT TREND / BEST SELLER / FEATURE)
  =========================== */
  .trend-one{
    padding: 40px 16px;
  }
  .trend-one-wrap{
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }
  .trend-one-col{
    background:#fff;
    border:1px solid rgba(0,0,0,0.06);
    border-radius:16px;
    box-shadow:0 10px 26px rgba(0,0,0,0.08);
    padding: 18px;
  }
  .trend-one-title{
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .6px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom: 14px;
    text-transform: uppercase;
  }
  .trend-one-title::after{
    content:"";
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: #ff3b3b;
  }
  .trend-one-list{
    display:flex;
    flex-direction:column;
    gap: 14px;
  }
  .trend-one-item{
    display:flex;
    gap: 12px;
    text-decoration:none;
    color: inherit;
    padding: 10px;
    border-radius: 14px;
    background: #f8f9fa;
    transition: transform .15s ease, box-shadow .15s ease;
  }
  .trend-one-item:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(0,0,0,.08);
  }
  .trend-one-img{
    width: 78px;
    height: 78px;
    border-radius: 14px;
    overflow:hidden;
    flex: 0 0 78px;
    background:#eee;
  }
  .trend-one-img img{
    width:100%;
    height:100%;
    object-fit: cover;
    display:block;
  }
  .trend-one-info{
    flex:1;
    min-width: 0;
  }
  .trend-one-name{
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 6px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .trend-one-stars{
    display:flex;
    gap:2px;
    margin-bottom: 6px;
  }
  .trend-one-stars .star{
    font-size: 13px;
    opacity: .25;
  }
  .trend-one-stars .star.filled{
    opacity: 1;
    color:#ffb400;
  }
  .trend-one-price{
    font-size: 14px;
    font-weight: 900;
  }
  @media (max-width: 900px){
    .trend-one-wrap{ grid-template-columns: 1fr; }
  }
  /*    TRENDy end  */

  /* ===========================
  MODERN BANNER STYLE
  =========================== */
  .hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 8% 5rem 8%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(34, 34, 34, 0.8)),
      url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    min-height: 80vh;
    z-index: 0;
    background-color: #613535;
  }

  /* Curves (Top + Bottom) */
  .hero-curve { position: absolute; left: 0; width: 100%; overflow: hidden; line-height: 0; z-index: 2; }
  .hero-curve-top { top: -1px; }
  .hero-curve-bottom { bottom: -1px; }
  .curve-svg { position: relative; display: block; width: 100%; height: 100px; }
  .hero-curve.invert .curve-svg { transform: scaleY(-1); transform-origin: center; }
  .curve-path { fill: #ffffff; opacity: 1; filter: drop-shadow(0px -2px 4px rgba(0, 0, 0, 0.08)); }

  /* Content */
  .hero-content {
    max-width: 600px;
    transform: perspective(1000px) rotateY(-5deg);
    animation: fadeSlideIn 1.2s ease-out forwards;
  }
  .hero-title { font-size: 3.5rem; line-height: 1.2; font-weight: 800; color: #fff; margin-bottom: 1rem; }
  .hero-title span { color: #e63946; }
  .hero-subtitle { font-size: 1.2rem; margin: 1rem 0 2rem; color: #f8f8f8; line-height: 1.6; }

  .hero-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #e63946;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: none;
  }
  .hero-btn:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 10px 25px rgba(230, 57, 70, 0.3); }

  /* 3D images */
  .hero-images { display: flex; gap: 1.5rem; perspective: 1200px; }
  .hero-img {
    width: 150px;
    height: 180px;
    border-radius: 1rem;
    transform-style: preserve-3d;
    transform: rotateY(15deg) rotateX(5deg) scale(1.05);
    transition: transform 0.8s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: floatY 4s ease-in-out infinite alternate;
    object-fit: cover;
  }
  .hero-img:hover { transform: rotateY(0deg) rotateX(0deg) scale(1.1); }

  /* Animations */
  @keyframes fadeSlideIn {
    from { opacity: 0; transform: perspective(1000px) translateX(-50px) rotateY(-10deg); }
    to { opacity: 1; transform: perspective(1000px) translateX(0) rotateY(-5deg); }
  }
  @keyframes floatY {
    0% { transform: translateY(0px) rotateY(15deg) rotateX(5deg) scale(1.05); }
    100% { transform: translateY(-15px) rotateY(15deg) rotateX(5deg) scale(1.05); }
  }

  /* Responsive */
  @media (max-width: 1200px) {
    .hero { min-height: 70vh; padding: 2rem 6%; }
    .hero-title { font-size: 3rem; }
    .hero-img { width: 130px; height: 160px; }
    .curve-svg { height: 90px; }
  }
  @media (max-width: 992px) {
    .hero { min-height: 65vh; padding: 2rem 5%; }
    .hero-content { max-width: 500px; }
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-btn { padding: 0.7rem 1.8rem; font-size: 0.95rem; }
    .hero-img { width: 120px; height: 150px; }
    .curve-svg { height: 80px; }
  }
  @media (max-width: 768px) {
    .hero { flex-direction: column; text-align: center; padding: 3rem 5%; min-height: auto; }
    .hero-images { margin-top: 2rem; justify-content: center; width: 100%; }
    .hero-content { transform: none; max-width: 100%; margin-bottom: 2rem; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; margin: 1rem 0 1.5rem; }
    .hero-btn { padding: 0.8rem 2rem; font-size: 1rem; }
    .hero-img { width: 100px; height: 130px; }
    .curve-svg { height: 70px; }
  }
  @media (max-width: 576px) {
    .hero { padding: 2rem 4%; }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-btn { padding: 0.7rem 1.8rem; font-size: 0.95rem; }
    .hero-images { gap: 1rem; }
    .hero-img { width: 90px; height: 120px; }
    .curve-svg { height: 60px; }
  }
  @media (max-width: 480px) {
    .hero { padding: 2rem 3%; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 0.9rem; }
    .hero-btn { padding: 0.6rem 1.5rem; font-size: 0.9rem; }
    .hero-images { gap: 0.8rem; }
    .hero-img { width: 80px; height: 110px; }
    .curve-svg { height: 50px; }
  }
  @media (max-width: 360px) {
    .hero { padding: 1.5rem 2%; }
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 0.85rem; }
    .hero-btn { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
    .hero-images { gap: 0.5rem; }
    .hero-img { width: 70px; height: 100px; }
    .curve-svg { height: 45px; }
  }
  /*    MODERN BANNER STYLE end  */

  /* ===========================
    TESTIMONIALS
  =========================== */
  .reviews { max-width: 1200px; margin: auto; text-align: center; }
  .reviews h2 { font-size: 32px; margin-bottom: 8px; }
  .subtitle { color: #666; margin-bottom: 20px; }
  .add-review { display: inline-block; margin-bottom: 35px; font-weight: 600; color: #000; text-decoration: none; }

  .slider-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
  .slider { width: 100%; overflow: hidden; padding: 20px 0; }
  .track { display: flex; transition: transform 0.5s ease; gap: 30px; }

  .card {
    min-width: calc((100% - 60px) / 3);
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }

  .top { display: flex; align-items: center; gap: 12px; }
  .avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #cfcfcf;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
  }
  .info h4 { font-size: 16px; text-transform: lowercase; }
  .info small { color: #777; font-size: 13px; }
  .stars { margin-left: auto; color: orange; font-size: 14px; }

  .card hr { border: none; border-top: 1px solid #eee; margin: 15px 0; }
  .msg { color: #444; margin-bottom: 18px; font-style: italic; }
  .product { color: #666; font-size: 14px; }

  .nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .prev { left: -20px; }
  .next { right: -20px; }

  .dots { display: flex; gap: 10px; justify-content: center; margin-top: 20px; }
  .dot { width: 10px; height: 10px; border-radius: 50%; background: #ddd; cursor: pointer; }
  .dot.active { background: #2196f3; transform: scale(1.2); }
  /*    TESTIMONIALS end  */

    /* ===========================
   PRODUCT DETAILS 
  =========================== */
.pd-wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 18px 70px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue";
  color:#111;
}
.pd-top{ display:flex; gap:46px; align-items:flex-start; }
@media (max-width: 980px){ .pd-top{ flex-direction:column; gap:26px; } }

/* LEFT */
.pd-left{ flex: 1.1; min-width: 0; }
.pd-gallery{ display:flex; gap:14px; align-items:flex-start; }
.pd-thumbs{ width:74px; display:flex; flex-direction:column; gap:10px; }
.pd-thumb{
  width:74px; height:92px; object-fit:cover;
  border:1px solid #e9e9e9; background:#fafafa;
  cursor:pointer; transition:.18s ease;
}
.pd-thumb:hover{ border-color:#cfcfcf; }
.pd-thumb.active{ border-color:#111; }

.pd-main{
  flex:1; border:1px solid #f0f0f0; background:#fafafa;
  position:relative; overflow:hidden;
}
.pd-main img{
  width:100%; height:auto; display:block;
  aspect-ratio: 4/5; object-fit:cover;
}

/* Back link */
.pd-back{
  display:inline-flex; align-items:center; gap:8px;
  color:#333; font-size:12px; text-decoration:none;
  margin-bottom:10px; letter-spacing:.04em;
}
.pd-back:hover{ text-decoration:underline; }

/* RIGHT */
.pd-right{ flex: 0.9; min-width: 320px; }
.pd-title{
  font-size:26px; font-weight:600;
  letter-spacing:.06em; text-transform:uppercase;
  margin:0 0 6px;
}
.pd-sub{
  font-size:12px; color:#666; letter-spacing:.08em;
  text-transform:uppercase; margin-bottom:18px;
}
.pd-price{ display:flex; align-items:baseline; gap:10px; margin:6px 0 10px; }
.pd-price .now{ font-size:18px; font-weight:600; letter-spacing:.04em; }
.pd-price .was{ font-size:13px; color:#999; text-decoration:line-through; }
.pd-price .off{
  font-size:12px; color:#111; border:1px solid #e9e9e9;
  padding:4px 8px; border-radius:999px; letter-spacing:.06em;
}
.pd-divider{ border:0; border-top:1px solid #efefef; margin:18px 0; }

.pd-block-title{
  font-size:12px; letter-spacing:.10em;
  text-transform:uppercase; margin:0 0 10px; color:#111;
}

/* Color dots */
.pd-colors{ display:flex; gap:10px; flex-wrap:wrap; }
.pd-color{
  display:inline-flex; align-items:center; gap:10px;
  border:1px solid #e9e9e9; padding:8px 12px;
  border-radius:999px; cursor:pointer; transition:.18s;
  user-select:none;
}
.pd-color:hover{ border-color:#cfcfcf; }
.pd-color .dot{
  width:18px; height:18px; border-radius:50%;
  display:inline-block; border:1px solid #dcdcdc;
}
.pd-color input{ display:none; }
.pd-color.active{ border-color:#111; background:#111; color:#fff; }
.pd-color.active .dot{ border-color: rgba(255,255,255,.7); }

/* Size */
.pd-sizes{ display:flex; gap:10px; flex-wrap:wrap; }
.pd-size{
  border:1px solid #e9e9e9;
  padding:10px 14px;
  border-radius:10px;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  cursor:pointer;
  transition:.18s;
  user-select:none;
}
.pd-size:hover{ border-color:#cfcfcf; }
.pd-size input{ display:none; }
.pd-size.active{ border-color:#111; background:#111; color:#fff; }

/* ✅ Quantity */
.pd-qty{
  margin-top:18px;
}
.pd-qty-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.pd-stock{
  font-size:12px;
  color:#666;
  letter-spacing:.06em;
}
.pd-qty-box{
  display:flex;
  align-items:center;
  gap:0;
  border:1px solid #e9e9e9;
  height:42px;
}
.pd-qty-btn{
  width:42px; height:42px;
  border:0;
  background:#fff;
  cursor:pointer;
  font-size:18px;
  transition:.18s;
}
.pd-qty-btn:hover{ background:#f7f7f7; }
.pd-qty-input{
  width:62px;
  height:42px;
  border:0;
  text-align:center;
  font-size:14px;
  outline:none;
}
.pd-qty-btn:disabled{ opacity:.4; cursor:not-allowed; }
.pd-qty-note{
  margin-top:8px;
  font-size:12px;
  color:#777;
}

/* Buttons */
.pd-cta{ display:flex; flex-direction:column; gap:10px; margin-top:18px; }
.pd-btn{
  width:100%;
  padding:14px 14px;
  border-radius:0;
  border:1px solid #111;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  cursor:pointer;
  transition:.2s;
}
.pd-btn.primary{ background:#111; color:#fff; }
.pd-btn.primary:hover{ opacity:.92; }
.pd-btn.ghost{ background:#fff; color:#111; }
.pd-btn.ghost:hover{ background:#f7f7f7; }
.pd-btn:disabled{ opacity:.45; cursor:not-allowed; }

/* Wishlist row */
.pd-mini-actions{ display:flex; gap:14px; align-items:center; margin-top:10px; }
.pd-mini{
  display:inline-flex; gap:10px; align-items:center;
  font-size:12px; letter-spacing:.08em; text-transform:uppercase;
  background:transparent; border:0; cursor:pointer; padding:6px 0;
}
.pd-mini span.icon{
  width:30px; height:30px;
  border:1px solid #e9e9e9;
  display:inline-flex; align-items:center; justify-content:center;
  font-size:16px;
}
.pd-mini:hover span.icon{ border-color:#cfcfcf; }
.pd-mini.active span.icon{ border-color:#111; background:#111; color:#fff; }

/* description */
.pd-desc h4{
  margin:0 0 10px;
  font-size:12px;
  letter-spacing:.10em;
  text-transform:uppercase;
}
.pd-desc p{ margin:0; color:#444; font-size:13px; line-height:1.7; }

/* Rails */
.pd-rail{ margin-top:56px; }
.pd-rail-title{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin:0 0 16px;
}
.pd-scroll{
  display:flex; gap:18px;
  overflow:auto; padding-bottom:8px;
  scroll-snap-type:x mandatory;
}
.pd-scroll::-webkit-scrollbar{ height:8px; }
.pd-scroll::-webkit-scrollbar-thumb{ background:#e9e9e9; border-radius:999px; }
.pd-card{ min-width:210px; max-width:210px; scroll-snap-align:start; }
.pd-card a{ text-decoration:none; color:inherit; }
.pd-card .img{ border:1px solid #efefef; background:#fafafa; overflow:hidden; position:relative; }
.pd-card img{ width:100%; aspect-ratio:4/5; object-fit:cover; display:block; transition:.35s; }
.pd-card:hover img{ transform:scale(1.03); }
.pd-card .meta{ text-align:center; padding:10px 6px 0; }
.pd-card .name{
  font-size:11px; letter-spacing:.14em; text-transform:uppercase; margin:0;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.pd-card .p{ margin-top:8px; font-size:12px; letter-spacing:.06em; color:#111; }

.pd-wbtn{
  position:absolute; top:10px; right:10px;
  width:34px; height:34px; border-radius:999px;
  border:1px solid #e9e9e9;
  background:rgba(255,255,255,.95);
  cursor:pointer; font-size:16px;
  display:flex; align-items:center; justify-content:center;
  transition:.18s;
}
.pd-wbtn:hover{ border-color:#cfcfcf; }
.pd-wbtn.active{ background:#111; color:#fff; border-color:#111; }
/* PRODUCT DETAILS END  */


  /* ===========================
    FOOTER
  =========================== */
  .footer {
  background: linear-gradient(135deg, #2c1a2a 0%, #6e3967 100%);
  color: #ffffff;
  padding: 80px 0 0;
  font-family: "Inter", sans-serif;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(245, 87, 108, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.footer .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }
.footer .row { display: flex; flex-wrap: wrap; gap: 40px; margin-bottom: 60px; }
.footer .col-lg-3, .footer .col-lg-2, .footer .col-lg-4 { flex: 1; min-width: 250px; }
.footer .col-lg-4 { flex: 1.5; }
.footer__about { padding-right: 20px; }
.footer__about__logo { margin-bottom: 30px; }
.footer__about__logo img { height: 50px; width: auto; filter: brightness(0) invert(1); }
.footer__about__logo a {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -1px;
}
.footer__about ul { list-style: none; padding: 0; margin: 0; }
.footer__about ul li {
  margin-bottom: 12px;
  color: #cbd5e0;
  font-size: 14px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__about ul li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  flex-shrink: 0;
}
.footer__about ul li:hover { color: #ffffff; transform: translateX(5px); transition: all 0.3s ease; }

.footer__widget { margin-bottom: 30px; }
.footer__widget h6 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}
.footer__widget h6::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 2px;
}
.footer__widget ul { list-style: none; padding: 0; margin: 0; }
.footer__widget ul li { margin-bottom: 12px; }
.footer__widget ul li a {
  color: #cbd5e0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}
.footer__widget ul li a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  transition: width 0.3s ease;
}
.footer__widget ul li a:hover { color: #ffffff; transform: translateX(8px); }
.footer__widget ul li a:hover::before { width: 100%; }

.footer__newslatter { max-width: 400px; }
.footer__newslatter p {
  color: #cbd5e0;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
}
.footer__newslatter form { display: flex; gap: 12px; margin-bottom: 30px; flex-wrap: wrap; }
.footer__newslatter input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 14px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.footer__newslatter input::placeholder { color: #a0aec0; }
.footer__newslatter input:focus {
  outline: none;
  border-color: #667eea;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}
.footer__newslatter button {
  padding: 14px 28px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.footer__newslatter button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  background: linear-gradient(135deg, #5a67d8, #667eea);
}

.footer__social { display: flex; gap: 15px; flex-wrap: wrap; }
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #cbd5e0;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.footer__social a i { font-size: 18px; line-height: 1; }
.footer__social a:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.footer__copyright {
  /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
  padding: 40px 0;
  text-align: center;
}
.footer__copyright p { color: #a0aec0; font-size: 14px; margin: 0; line-height: 1.6; }
.footer__copyright a { color: #ffffff; text-decoration: none; font-weight: 600; transition: all 0.3s ease; }
.footer__copyright a:hover { color: #667eea; text-decoration: underline; }

@media (max-width: 992px) {
  .footer { padding: 60px 0 0; }
  .row { gap: 30px; margin-bottom: 50px; }
  .col-lg-3, .col-lg-2, .col-lg-4 { min-width: 100%; flex: none; }
  .footer__about { padding-right: 0; text-align: center; }
  .footer__widget { text-align: center; }
  .footer__widget h6::after { left: 50%; transform: translateX(-50%); }
  .footer__newslatter { max-width: 100%; }
}
@media (max-width: 768px) {
  .footer { padding: 50px 0 0; }
  .container { padding: 0 15px; }
  .row { flex-direction: column; gap: 40px; margin-bottom: 40px; }
  .footer__newslatter form { flex-direction: column; gap: 15px; }
  .footer__newslatter input { min-width: 100%; }
  .footer__social { justify-content: center; }
}
@media (max-width: 480px) {
  .footer { padding: 40px 0 0; }
  .footer__about__logo a { font-size: 28px; }
  .footer__widget h6 { font-size: 16px; }
  .footer__social a { width: 40px; height: 40px; font-size: 16px; }
  .footer__copyright { padding: 30px 0; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
/*    FOOTER end  */

/* ===========================
    WHISHLIST PAGE STYLES
  =========================== */
/* ===== Page ===== */
.wl-page{
  padding: 22px 0 60px;
  background: #fff;
  min-height: calc(100vh - 120px);
}
.wl-container{ max-width: 1100px; }

/* Title */
.wl-top{ margin-bottom: 12px; }
.wl-heading{
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #2b2b2b;
}

/* ===== Table layout (like image) ===== */
.wl-table{
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.wl-head-row{
  display:grid;
  grid-template-columns: 1fr 160px 160px 170px 40px;
  gap: 12px;
  padding: 12px 10px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(0,0,0,0.65);
  background: #fff7f3; /* light peach header */
}

.wl-row{
  display:grid;
  grid-template-columns: 1fr 160px 160px 170px 40px;
  gap: 12px;
  align-items:center;
  padding: 14px 10px;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: #fff;
}

/* Product cell */
.wl-product{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 0;
}

.wl-img{
  width: 60px;
  height: 60px;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 6px;
  object-fit: cover;
  background: #f6f6f6;
  cursor: pointer;
}

.wl-prod-info{ min-width:0; }
.wl-name{
  font-weight: 700;
  font-size: 13px;
  color: #2b2b2b;
  margin: 0 0 6px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wl-size{
  display:inline-block;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  background: #e9d7c8; /* beige tag like image */
  color: rgba(0,0,0,0.70);
  font-weight: 700;
}

/* price */
.wl-price{
  font-weight: 700;
  font-size: 12px;
  color: rgba(0,0,0,0.75);
}

/* status */
.wl-status{
  font-size: 12px;
  font-weight: 800;
}
.wl-in{ color: #22c55e; }     /* green */
.wl-out{ color: #ef4444; }    /* red */

/* add to cart btn */
.wl-add{
  width: 100%;
  height: 34px;
  border: 1px solid rgba(0,0,0,0.25);
  background: #fff;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  cursor:pointer;
}
.wl-add:hover{
  border-color: rgba(0,0,0,0.40);
}

/* remove X */
.wl-x{
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  font-size: 18px;
  color: rgba(0,0,0,0.45);
  cursor: pointer;
  display:grid;
  place-items:center;
}
.wl-x:hover{ color:#111; }

/* ===== Empty ===== */
.wl-empty{
  border: 1px dashed rgba(0,0,0,0.18);
  border-radius: 10px;
  padding: 44px 18px;
  text-align:center;
}
.wl-empty-icon{
  width: 64px; height:64px;
  border-radius: 999px;
  background: rgba(0,0,0,0.05);
  display:grid;
  place-items:center;
  margin: 0 auto 12px;
  font-size: 22px;
  color: rgba(0,0,0,0.45);
}
.wl-empty h4{ margin:0 0 6px; font-weight:900; }
.wl-empty p{ margin:0 0 14px; color: rgba(0,0,0,0.60); font-size: 12px; }
.wl-empty-btn{
  display:inline-block;
  padding: 10px 14px;
  border-radius: 8px;
  background: #111;
  color:#fff;
  text-decoration:none;
  font-weight: 900;
  font-size: 12px;
}

/* ===== Responsive ===== */
@media (max-width: 900px){
  .wl-head-row{ display:none; }

  .wl-row{
    grid-template-columns: 1fr;
    gap: 10px;
    position: relative;
    padding: 14px 12px;
  }

  .wl-price::before{ content:"Unit Price: "; color: rgba(0,0,0,0.55); font-weight:700; }
  .wl-status::before{ content:"Stock: "; color: rgba(0,0,0,0.55); font-weight:700; display:inline-block; margin-right:6px; }

  .wl-actions-mobile{
    display:flex;
    gap: 10px;
    align-items:center;
    justify-content: space-between;
  }

  .wl-x{
    position:absolute;
    top: 10px;
    right: 10px;
  }

  .wl-add{
    max-width: 220px;
  }
}

/* ===========================
    MY-ORDERS PAGE STYLES
  =========================== */
/* Page container */
.od-wrap{
  width:100%;
  padding: 24px 14px 60px;
  background: #fafafa;
}
.od-inner{
  max-width: 1050px;
  margin: 0 auto;
}

/* header */
.od-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 14px;
  margin-bottom: 18px;
}
.od-title{
  margin:0;
  font-size: 40px;
  font-weight: 800;
  color:#111;
}
.od-filter{
  display:flex;
  gap: 10px;
  align-items:center;
}
.od-select{
  min-width: 170px;
  border-radius: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,.12);
  background:#fff;
}
.od-filter-btn{
  border:none;
  background:#111;
  color:#fff;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 800;
}

/* list */
.od-list{
  display:flex;
  flex-direction:column;
  gap: 14px;
}

/* card */
.od-card{
  background:#fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  overflow:hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
}

/* top bar like screenshot */
.od-top{
  display:flex;
  align-items:flex-start;
  gap: 18px;
  padding: 12px 16px;
  background: #f3f4f6;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.od-top-col{
  min-width: 140px;
}
.od-top-grow{
  flex:1;
  min-width: 220px;
}
.od-top-label{
  font-size: 11px;
  letter-spacing: .6px;
  color:#6b7280;
  font-weight: 800;
}
.od-top-val{
  margin-top: 2px;
  font-size: 13px;
  color:#111;
  font-weight: 700;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}
.od-top-right{
  margin-left:auto;
  text-align:right;
  min-width: 120px;
}
.od-top-orderno{
  font-size: 12px;
  color:#111;
  font-weight: 800;
}
.od-details-link{
  display:inline-block;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 800;
  color:#111;
  text-decoration:none;
  border-bottom: 1px dotted rgba(0,0,0,.35);
}
.od-details-link:hover{ opacity:.8; }

/* body */
.od-body{
  display:grid;
  grid-template-columns: 120px 1fr 90px 170px;
  gap: 16px;
  padding: 16px;
  align-items: start;
}

/* thumb */
.od-thumb{
  width:120px;
  height:120px;
  border-radius: 8px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.08);
  background:#f8fafc;
}
.od-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* middle */
.od-mid{ min-width:0; }
.od-name{
  font-size: 16px;
  font-weight: 900;
  color:#111;
}
.od-meta{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin-top: 6px;
  font-size: 13px;
  color:#374151;
}
.od-received{ margin-top: 8px; }
.od-received-pill{
  display:inline-block;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  background: #e9f7ef;
  color: #1f7a3f;
}
.od-desc{
  margin-top: 10px;
  font-size: 13px;
  color:#4b5563;
  line-height: 1.4;
}
.od-muted{ color:#6b7280; }

/* qty */
.od-qty{
  text-align:center;
}
.od-qty-label{
  font-size: 12px;
  color:#6b7280;
  font-weight: 800;
}
.od-qty-box{
  margin-top: 8px;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 6px;
  padding: 8px 0;
  font-weight: 900;
  color:#111;
}
.od-lineprice{
  margin-top: 10px;
  font-size: 13px;
  font-weight: 900;
  color:#111;
}

/* actions (right side buttons like screenshot) */
.od-actions{
  display:flex;
  flex-direction:column;
  gap: 10px;
  align-items: stretch;
  justify-content:flex-start;
}
.od-btn{
  width:100%;
  border-radius: 6px;
  padding: 10px 12px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .3px;
  border: 1px solid transparent;
  cursor:pointer;
}
.od-btn-primary{
  background:#f59e0b;
  border-color:#f59e0b;
  color:#111;
}
.od-btn-dark{
  background:#111;
  border-color:#111;
  color:#fff;
}
.od-btn-outline{
  background:#fff;
  border-color: rgba(0,0,0,.22);
  color:#111;
}
.od-btn:hover{ opacity:.9; }

/* foot status */
.od-foot{
  padding: 10px 16px 14px;
}
.od-status{
  display:flex;
  gap: 10px;
  align-items:flex-start;
}
.od-dot{
  width:10px; height:10px;
  border-radius: 50%;
  margin-top: 6px;
}
.od-status-title{
  font-size: 13px;
  font-weight: 900;
  color:#111;
}
.od-status-sub{
  margin-top: 2px;
  font-size: 12px;
  color:#6b7280;
}

/* dot colors */
.dot-pending{ background:#f59e0b; }
.dot-confirmed{ background:#06b6d4; }
.dot-shipped{ background:#2563eb; }
.dot-delivered{ background:#16a34a; }
.dot-cancelled{ background:#dc2626; }

/* responsive */
@media (max-width: 992px){
  .od-title{ font-size: 32px; }
  .od-top{
    flex-wrap:wrap;
  }
  .od-top-right{
    width:100%;
    text-align:left;
    margin-left:0;
  }
  .od-body{
    grid-template-columns: 100px 1fr;
    grid-template-rows: auto auto auto;
  }
  .od-thumb{
    width:100px;
    height:100px;
  }
  .od-qty{
    grid-column: 1 / -1;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 10px;
    text-align:left;
  }
  .od-qty-box{
    width: 90px;
    padding: 8px 0;
    text-align:center;
  }
  .od-actions{
    grid-column: 1 / -1;
    flex-direction:row;
  }
  .od-actions .od-btn{
    width: 100%;
  }
}

@media (max-width: 576px){
  .od-header{
    flex-direction:column;
    align-items:flex-start;
  }
  .od-filter{
    width:100%;
    justify-content:flex-end;
  }
  .od-actions{
    flex-direction:column;
  }
}
  /* ===========================
    CHECKOUT PAGE STYLES
  =========================== */
/* ====== PAGE (scoped; won't affect other pages) ====== */
.checkout-page{
  background:#fff;
}
.checkout-container{
  max-width:1180px;
  margin:0 auto;
  padding:32px 18px 60px;
}
.checkout-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:32px;
  align-items:start;
}
@media (max-width: 992px){
  .checkout-grid{ grid-template-columns: 1fr; }
}

/* LEFT */
.page-title{
  font-size:24px;
  font-weight:800;
  margin:0 0 18px;
  color:#111827;
}
.section{
  margin-bottom:22px;
}
.section-title{
  font-size:13px;
  font-weight:800;
  color:#111827;
  margin:0 0 12px;
}
.section-title::after{
  content:"";
  display:block;
  height:1px;
  background:#eef0f4;
  margin-top:10px;
}
.field label{
  display:block;
  font-size:12px;
  color:#6b7280;
  margin-bottom:6px;
  font-weight:700;
}
.field label span{ color:#ef4444; }

.input{
  width:100%;
  height:42px;
  border:1px solid #eef0f4;
  background:#f7f8fb;
  border-radius:8px;
  padding:0 12px;
  outline:none;
  color:#111827;
  font-size:13px;
}
.input:focus{
  border-color:#c7d2fe;
  box-shadow:0 0 0 3px rgba(99,102,241,.12);
  background:#fff;
}

.row-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.row-3{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:14px;
}
@media (max-width: 640px){
  .row-2,.row-3{ grid-template-columns:1fr; }
}

.phone-wrap{
  display:grid;
  grid-template-columns: 120px 1fr;
  gap:10px;
}
.phone-code{ padding-right:8px; }

/* Payment */
.pay-methods{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:10px 0 12px;
}
.pay-pill{
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border:1px solid #eef0f4;
  border-radius:10px;
  background:#fff;
  cursor:pointer;
  font-size:13px;
  color:#374151;
  font-weight:700;
}
.pay-pill input{ accent-color:#111827; }
.pay-pill.active{
  border-color:#c7d2fe;
  background: #f3f4ff;
  color:#111827;
}

.card-fields{
  margin-top:10px;
}

.primary-btn{
  width:100%;
  height:46px;
  border:none;
  border-radius:10px;
  background:#111827;
  color:#fff;
  font-weight:800;
  cursor:pointer;
}
.primary-btn:hover{ opacity:.92; }

/* RIGHT SUMMARY */
.summary-card{
  border-left:1px solid #eef0f4;
  padding-left:26px;
}
@media (max-width: 992px){
  .summary-card{
    border-left:none;
    padding-left:0;
    border-top:1px solid #eef0f4;
    padding-top:22px;
  }
}
.summary-head h3{
  margin:0 0 14px;
  font-size:14px;
  font-weight:900;
  color:#111827;
}

.summary-items{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.item{
  display:grid;
  grid-template-columns: 56px 1fr auto;
  gap:12px;
  align-items:start;
}
.item img{
  width:56px;height:56px;border-radius:10px;object-fit:cover;
  border:1px solid #eef0f4;
}
.item-title{
  font-size:13px;
  font-weight:800;
  color:#111827;
  margin:0 0 6px;
}
.item-price{
  font-size:13px;
  font-weight:900;
  color:#111827;
}

.item-shipping{
  font-size:12px;
  color:#4a5568;
  margin-top:4px;
}
.qty{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:8px;
}
.qbtn{
  width:26px;height:26px;border-radius:7px;
  border:1px solid #eef0f4;background:#fff;
  cursor:pointer;font-weight:900;color:#111827;
}
.qval{
  min-width:18px;text-align:center;
  font-size:13px;font-weight:800;color:#111827;
}
.remove{
  color:#9ca3af;
  cursor:pointer;
  font-weight:900;
  margin-left:10px;
}
.remove:hover{ color:#ef4444; }

.divider{
  height:1px;background:#eef0f4;margin:16px 0;
}

.coupon label{
  display:block;
  font-size:12px;
  font-weight:800;
  color:#6b7280;
  margin-bottom:8px;
}
.coupon-row{
  display:grid;
  grid-template-columns: 1fr 92px;
  gap:10px;
}
.ghost-btn{
  height:42px;
  border-radius:10px;
  border:1px solid #111827;
  background:#111827;
  color:#fff;
  font-weight:800;
  cursor:pointer;
}
.ghost-btn:hover{ opacity:.92; }
.hint{
  margin:8px 0 0;
  font-size:12px;
  color:#6b7280;
}

.totals .trow{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:7px 0;
  color:#6b7280;
  font-size:13px;
  font-weight:700;
}
.totals .trow span:last-child{
  color:#111827;
  font-weight:900;
}
.totals .trow.total{
  font-size:14px;
  padding-top:10px;
}
.checkout-btn{
  width:100%;
  height:46px;
  border:none;
  border-radius:10px;
  background:#0f172a;
  color:#fff;
  font-weight:900;
  cursor:pointer;
  margin-top:12px;
}
.checkout-btn:hover{ opacity:.92; }


    /* ===========================
    CART PAGE STYLES
  =========================== */
/* ====== Page ====== */
.cart-page{
  background: #fffffe; /* light peach like image */
  padding: 28px 0 60px;
  min-height: calc(100vh - 120px);
}

.cart-container{
  max-width: 1100px;
}

.cart-title{
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 14px;
  color: #2b2b2b;
}

/* ====== Layout ====== */
.cart-layout{
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 18px;
  align-items: start;
}

.cart-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  border-radius: 6px;
  overflow: hidden;
}

.cart-card-head{
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: #fff;
}

.cart-card-head-title{
  font-weight: 700;
  font-size: 13px;
  color: #2b2b2b;
}

/* ====== Items ====== */
.cart-items{
  padding: 0;
}

.cart-item{
  display: grid;
  grid-template-columns: 86px 1fr 180px;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.cart-item:last-child{
  border-bottom: none;
}

.item-img{
  width: 86px;
  height: 86px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
  background: #f7f7f7;
}

.item-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.item-info{
  min-width: 0;
}

.item-name{
  font-weight: 700;
  font-size: 13px;
  color: #2b2b2b;
  margin: 0 0 6px;
  line-height: 1.25;
}

.item-meta{
  font-size: 11px;
  color: rgba(0,0,0,0.55);
  margin-bottom: 8px;
}

.item-price-line{
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.item-price{
  font-weight: 800;
  font-size: 13px;
  color: #2b2b2b;
}

.item-mrp{
  font-size: 11px;
  color: rgba(0,0,0,0.40);
  text-decoration: line-through;
}

.item-off{
  font-size: 11px;
  color: #f04c4c;
  font-weight: 700;
}

/* Right controls inside item */
.item-controls{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.qty-box{
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 4px;
  overflow: hidden;
  height: 28px;
}

.qty-btn{
  width: 30px;
  height: 28px;
  border: 0;
  background: #111;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.qty-val{
  width: 34px;
  height: 28px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 12px;
  background: #fff;
  color: #2b2b2b;
}

.remove-link{
  border: 0;
  background: transparent;
  color: rgba(0,0,0,0.45);
  font-size: 11px;
  cursor: pointer;
  padding: 0;
}
.remove-link:hover{
  color: #dc3545;
  text-decoration: underline;
}

/* ====== Coupon ====== */
.coupon-box{
  padding: 14px 16px 16px;
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 10px;
}

.coupon-input{
  height: 36px;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.18);
  padding: 0 10px;
  font-size: 12px;
  outline: none;
}

.coupon-btn{
  height: 36px;
  border-radius: 4px;
  border: 0;
  background: #111;
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  cursor: pointer;
}

.coupon-msg{
  padding: 0 16px 14px;
  font-size: 12px;
  color: #16a34a;
  font-weight: 700;
}

/* ====== Summary ====== */
.summary-body{
  padding: 14px 16px 16px;
}

.sum-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.sum-row:last-child{
  border-bottom: none;
}

.sum-row-muted strong{
  color: rgba(0,0,0,0.55);
  font-weight: 700;
}

.sum-divider{
  height: 1px;
  background: rgba(0,0,0,0.10);
  margin: 12px 0;
}

.sum-total{
  display:flex;
  justify-content: space-between;
  align-items:center;
  font-size: 13px;
  font-weight: 900;
  padding: 6px 0 12px;
}

.sum-discount{
  color: #16a34a;
  font-weight: 900;
}

.checkout-btn{
  width: 100%;
  height: 42px;
  border-radius: 4px;
  border: 0;
  background: #ff6a00;
  color: #fff;
  font-weight: 900;
  font-size: 11px;
  cursor: pointer;
  letter-spacing: .2px;
}

.checkout-btn:disabled{
  opacity: .55;
  cursor: not-allowed;
}

.sum-footnote{
  text-align: center;
  margin-top: 10px;
  font-size: 11px;
  color: rgba(0,0,0,0.55);
}

/* ====== Empty ====== */
.cart-empty{
  padding: 34px 16px;
  text-align: center;
}
.cart-empty-icon{
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(0,0,0,0.06);
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  font-size: 20px;
  color: rgba(0,0,0,0.50);
}
.cart-empty h4{ margin: 0 0 6px; font-weight: 800; }
.cart-empty p{ margin: 0 0 14px; color: rgba(0,0,0,0.55); font-size: 12px; }

/* ====== Responsive ====== */
@media (max-width: 992px){
  .cart-layout{ grid-template-columns: 1fr; }
  .cart-right{ order: 2; }
  .cart-left{ order: 1; }
}

@media (max-width: 576px){
  .cart-item{
    grid-template-columns: 76px 1fr;
    grid-template-rows: auto auto;
  }
  .item-controls{
    grid-column: 1 / -1;
    justify-content: space-between;
    padding-top: 8px;
  }
}


    /* ===========================
    PAYMENT PAGE STYLES
  =========================== */

  :root{
    --bg:#f6f7fb;
    --card:#fff;
    --text:#1f2937;
    --muted:#6b7280;
    --line:#e5e7eb;
    --purple:#8b0f7a;
    --green:#0f9d58;
    --shadow:0 6px 18px rgba(17, 24, 39, .08);
    --btnFlat:#1f2d1f;
  }

  body{ background: var(--bg); }

  .wrap{max-width:1120px;margin:24px auto;padding:0 16px; min-height: 80vh}
  .grid{display:flex;gap:28px;align-items:flex-start;}
  .col-left{flex:1.25}
  .col-right{flex:.75}

  /* no curve cards */
  .card-flat{ border-radius:0 !important; }
  .pay-card-flat{ border-radius:0 !important; }
  .pay-group-flat{ border-radius:0 !important; }
  .qr-box-flat{ border-radius:0 !important; }

  .card{
    background:var(--card);
    border:1px solid var(--line);
    box-shadow:var(--shadow);
    overflow:hidden;
  }

  .section-title{ font-size:18px;font-weight:800;margin:0 0 12px;color: var(--text); }

  /* flat buttons */
  .btn-flat{
    border:none;
    border-radius:0;
    background: var(--btnFlat);
    color:#fff;
    font-weight:900;
    font-size:13px;
    cursor:pointer;
    letter-spacing:.35px;
    box-shadow:none;
    transition: opacity .12s ease;
  }
  .btn-flat:hover{ opacity:.92; }
  .btn-flat:active{ opacity:.88; }

  .btn-flat--primary{
    width: calc(100% - 32px);
    height:48px;
    margin: 0 16px 16px;
  }
  .btn-flat--sm{ height:42px; padding:0 16px; border-radius:0; }

  .mini-input{
    padding:10px 12px;
    border:1px solid var(--line);
    border-radius:0;
    font-weight:700;
    outline:none;
  }

  .pay-wrap{padding:18px}
  .pay-card{
    border:1px solid var(--line);
    background:#fff;
    padding:14px 14px;
    display:flex;
    gap:14px;
    align-items:flex-start;
    position:relative;
    box-shadow: 0 4px 14px rgba(17,24,39,.06);
    margin-bottom:14px;
    cursor:pointer;
  }
  .pay-card.selected{ border:2px solid var(--purple); }

  .left-price{ width:86px; display:flex; flex-direction:column; gap:6px; padding-top:2px; }
  .price-big{ font-weight:900; font-size:20px; }
  .price-stack{ display:flex; flex-direction:column; line-height:1.05; gap:4px; }

  .strike{ font-size:12px; color:var(--muted); text-decoration:line-through; font-weight:700; }
  .offer{ font-size:20px; color:var(--green); font-weight:900; }
  .save{
    font-size:12px; background:#dff7ea; color:var(--green);
    font-weight:800; width:max-content; padding:3px 6px;
    border-radius:0; border:1px solid #bfe9d1;
  }

  .pay-main{ flex:1; display:flex; flex-direction:column; gap:6px; padding-top:2px; }
  .pay-row{ display:flex; justify-content:space-between; align-items:center; gap:10px; }
  .pay-title{ font-size:16px; font-weight:800; display:flex; align-items:center; gap:10px; }
  .icon-pill{ width:22px;height:22px;border-radius:0;border:1px solid var(--line); display:inline-flex;align-items:center;justify-content:center; }

  .radio{
    width:18px;height:18px;border-radius:50%;
    border:2px solid #c7c9d1;
    display:inline-flex;align-items:center;justify-content:center;
  }
  .pay-card.selected .radio{ border-color:var(--purple); background:var(--purple); }
  .radio::after{ content:""; width:8px;height:8px;border-radius:50%; background:#fff; opacity:0; }
  .pay-card.selected .radio::after{ opacity:1; }

  .sub-note{ color:var(--muted); font-size:13px; font-weight:600; display:flex; align-items:center; gap:8px; }
  .leaf{ width:16px;height:16px;border-radius:50%; background:#e7f7ef;border:1px solid #bfe9d1; display:inline-flex;align-items:center;justify-content:center; }

  .expand{ margin-top:10px; border-top:1px solid var(--line); padding-top:12px; display:none; }
  .pay-card.selected .expand{display:block;}
  .offers{ color:var(--green); font-weight:900; }

  .pay-group{ border:1px solid var(--line); overflow:hidden; background:#fff; }
  .group-head{ padding:12px; display:flex; justify-content:space-between; align-items:center; cursor:pointer; }
  .group-head .right{ color:var(--green); font-weight:900; font-size:12px; display:flex; align-items:center; gap:8px; }
  .chev{ width:10px;height:10px;border-right:2px solid #9aa0aa;border-bottom:2px solid #9aa0aa; transform:rotate(45deg); transition:.15s ease; }
  .group.open .chev{ transform:rotate(-135deg); }
  .group-body{ border-top:1px solid var(--line); padding:12px; display:none; }
  .group.open .group-body{ display:block; }

  .qr-box{ border:1px dashed #cfd3db; padding:14px; display:flex; flex-direction:column; align-items:center; gap:10px; margin:10px 0; }
  .qr{ width:140px;height:140px;border:1px solid var(--line); background:
      linear-gradient(90deg,#f3f4f6 10px,transparent 10px) 0 0/20px 20px,
      linear-gradient(#f3f4f6 10px,transparent 10px) 0 0/20px 20px; position:relative; }
  .qr::after{ content:""; position:absolute; inset:18px; border:2px solid rgba(0,0,0,.08); background:rgba(255,255,255,.55); }
  .qr-caption{ font-size:11.5px; color:var(--muted); font-weight:700; text-align:center; max-width:260px; }

  .add-upi{ color:var(--purple); font-weight:900; font-size:12px; display:flex; align-items:center; gap:8px; padding:10px 0 2px; cursor:pointer; }
  .plus{ width:18px;height:18px;border-radius:0;border:1px solid rgba(139,15,122,.25); background:rgba(139,15,122,.08); display:flex;align-items:center;justify-content:center; }

  .price-head{ padding:14px 16px; border-bottom:1px solid var(--line); font-weight:900; }

  @media (max-width: 900px){
    .grid{flex-direction:column;}
    .col-left,.col-right{ width:100%; }
  }

  /* ✅ SUCCESS MODAL STYLES */
  .success-overlay{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.6);
    z-index:9999;
    align-items:center;
    justify-content:center;
    backdrop-filter:blur(4px);
  }
  .success-card{
    background:#fff;
    padding:40px;
    border-radius:24px;
    text-align:center;
    box-shadow:0 20px 50px rgba(0,0,0,0.25);
    max-width:90%;
    width:400px;
  }
  .success-title{
    font-size:24px;
    font-weight:900;
    margin:24px 0 8px;
    color:#111;
  }
  .success-sub{
    color:#666;
    font-size:15px;
    margin:0;
  }

  /* ✅ CHECKMARK ANIMATION */
  .success-checkmark { width: 80px; height: 80px; margin: 0 auto; }
  .check-icon { width: 80px; height: 80px; position: relative; border-radius: 50%; box-sizing: content-box; border: 4px solid #4CAF50; }
  .check-icon::before { top: 3px; left: -2px; width: 30px; transform-origin: 100% 50%; border-radius: 100% 0 0 100%; }
  .check-icon::after { top: 0; left: 30px; width: 60px; transform-origin: 0 50%; border-radius: 0 100% 100% 0; animation: rotate-circle 4.25s ease-in; }
  .check-icon::before, .check-icon::after { content: ''; height: 100px; position: absolute; background: #fff; transform: rotate(-45deg); }
  .check-line { height: 5px; background-color: #4CAF50; display: block; border-radius: 2px; position: absolute; z-index: 10; }
  .check-line.line-tip { top: 46px; left: 14px; width: 25px; transform: rotate(45deg); animation: icon-line-tip 0.75s; }
  .check-line.line-long { top: 38px; right: 8px; width: 47px; transform: rotate(-45deg); animation: icon-line-long 0.75s; }
  .check-circle { top: -4px; left: -4px; z-index: 10; width: 80px; height: 80px; border-radius: 50%; position: absolute; box-sizing: content-box; border: 4px solid rgba(76, 175, 80, .5); }
  .check-fix { top: 8px; width: 5px; left: 26px; z-index: 1; height: 85px; position: absolute; transform: rotate(-45deg); background-color: #fff; }
  @keyframes rotate-circle { 0% { transform: rotate(-45deg); } 5% { transform: rotate(-45deg); } 12% { transform: rotate(-405deg); } 100% { transform: rotate(-405deg); } }
  @keyframes icon-line-tip { 0% { width: 0; left: 1px; top: 19px; } 54% { width: 0; left: 1px; top: 19px; } 70% { width: 50px; left: -8px; top: 37px; } 84% { width: 17px; left: 21px; top: 48px; } 100% { width: 25px; left: 14px; top: 46px; } }
  @keyframes icon-line-long { 0% { width: 0; right: 46px; top: 54px; } 65% { width: 0; right: 46px; top: 54px; } 84% { width: 55px; right: 0px; top: 35px; } 100% { width: 47px; right: 8px; top: 38px; } }

  /* ===========================
  login-verify-otp
  =========================== */
/* ===== Modal wrapper ===== */
.auth-modal-wrap{ min-height: 100vh; }

/* overlay */
.auth-overlay{
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, .55);
  z-index: 9990;
}

/* modal split */
.auth-modal{
  position: fixed;
  inset: 0;
  margin: auto;
  z-index: 9991;
  width: min(1040px, 92vw);
  height: min(560px, 92vh);
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
}

/* close button */
.auth-close{
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  display: grid;
  place-items: center;
  text-decoration: none;
  border: 1px solid rgba(17,24,39,.12);
  z-index: 5;
}
.auth-close:hover{ background:#f8fafc; }

/* left image */
.auth-left{
  position: relative;
  background:
    url("https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1200&q=60")
    center/cover no-repeat;
}
.auth-left-overlay{
  position:absolute;
  inset:0;
  background: rgba(2,6,23,.35);
}
.auth-left-text{
  position:absolute;
  left: 26px;
  bottom: 22px;
  z-index: 2;
}
.auth-tag{
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 30px;
  color: #fbbf24;
  text-transform: uppercase;
}
.auth-subtag{
  margin-top: 6px;
  color: rgba(255,255,255,.92);
  font-weight: 700;
  letter-spacing: .6px;
  font-size: 12px;
}

/* right grey panel */
.auth-right{
  background: #e6e6e6;
  padding: 56px 46px 40px;
  display:flex;
  flex-direction: column;
  justify-content: center;
}

.auth-welcome{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #0f5c50;
}
.auth-title{
  margin: 8px 0 6px;
  font-size: 32px;
  font-weight: 900;
  color: #111827;
}
.auth-desc{
  margin: 0 0 18px;
  color: #6b7280;
  font-weight: 600;
  font-size: 13px;
}

/* alerts */
.auth-alert{
  padding: 12px 12px;
  border-radius: 10px;
  margin-bottom: 12px;
  font-weight: 800;
  font-size: 13px;
  border: 1px solid rgba(0,0,0,.08);
  background:#fff;
}
.auth-alert.success{ border-color:#b7e4c7; color:#14532d; background:#eaf7ee; }
.auth-alert.error{ border-color:#fecdd3; color:#7f1d1d; background:#fff1f2; }

/* form */
.auth-field{ margin-bottom: 14px; }
.auth-label{
  display:block;
  font-weight: 800;
  color:#111827;
  font-size: 13px;
  margin-bottom: 8px;
}
.req{ color:#ef4444; }

.auth-input-wrap{
  background:#fff;
  border-radius: 10px;
  border: 1px solid rgba(17,24,39,.12);
  overflow:hidden;
}
.auth-input-wrap.has-error{
  border-color: rgba(239,68,68,.55);
  box-shadow: 0 0 0 4px rgba(239,68,68,.10);
}
.auth-input{
  width:100%;
  border:0;
  outline:none;
  padding: 14px 14px;
  font-size: 15px;
  font-weight: 700;
  color:#111827;
}
.auth-input::placeholder{ color:#94a3b8; font-weight:700; }

.auth-error{
  margin-top: 8px;
  color:#dc2626;
  font-weight: 800;
  font-size: 12px;
}

/* button */
.auth-btn{
  width:100%;
  border:0;
  margin-top: 10px;
  padding: 14px 14px;
  border-radius: 10px;
  background: #0f5c50;
  color:#fff;
  font-weight: 900;
  font-size: 15px;
  cursor:pointer;
  transition: transform .15s ease, opacity .15s ease;
}
.auth-btn:hover{ transform: translateY(-1px); opacity: .95; }

/* links */
.auth-footer{ margin-top: 14px; text-align:center; }
.auth-bottom{ margin-top: 18px; text-align:center; font-weight:800; font-size:13px; }
.muted{ color:#374151; }

.auth-link{
  color:#0f5c50;
  font-weight: 900;
  text-decoration: underline;
}
.auth-link.strong{ margin-left: 6px; }

/* responsive */
@media (max-width: 992px){
  .auth-modal{
    grid-template-columns: 1fr;
    width: min(640px, 92vw);
    height: min(720px, 92vh);
  }
  .auth-left{ min-height: 240px; }
  .auth-right{ padding: 44px 22px 30px; }
  .auth-title{ font-size: 28px; }
}
/* end */


  /* ===========================
  login-verify-otp
  =========================== */
/* ===== Modal wrapper ===== */
.auth-modal-wrap{ min-height:100vh; }

/* overlay */
.auth-overlay{
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, .55);
  z-index: 9990;
}

/* modal split */
.auth-modal{
  position: fixed;
  inset: 0;
  margin: auto;
  z-index: 9991;
  width: min(1040px, 92vw);
  height: min(560px, 92vh);
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
}

/* close */
.auth-close{
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  display: grid;
  place-items: center;
  text-decoration: none;
  border: 1px solid rgba(17,24,39,.12);
  z-index: 5;
}
.auth-close:hover{ background:#f8fafc; }

/* left image */
.auth-left{
  position: relative;
  background:
    url("https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1200&q=60")
    center/cover no-repeat;
}
.auth-left-overlay{
  position:absolute;
  inset:0;
  background: rgba(2,6,23,.35);
}
.auth-left-text{
  position:absolute;
  left: 26px;
  bottom: 22px;
  z-index: 2;
}
.auth-tag{
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 30px;
  color: #fbbf24;
  text-transform: uppercase;
}
.auth-subtag{
  margin-top: 6px;
  color: rgba(255,255,255,.92);
  font-weight: 700;
  letter-spacing: .6px;
  font-size: 12px;
}

/* right panel grey */
.auth-right{
  background: #e6e6e6;
  padding: 56px 46px 40px;
  display:flex;
  flex-direction: column;
  justify-content: center;
}

.auth-welcome{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #0f5c50;
}
.auth-title{
  margin: 8px 0 6px;
  font-size: 32px;
  font-weight: 900;
  color: #111827;
}
.auth-desc{
  margin: 0 0 18px;
  color: #6b7280;
  font-weight: 600;
  font-size: 13px;
}

/* alerts */
.auth-alert{
  padding: 12px 12px;
  border-radius: 10px;
  margin-bottom: 12px;
  font-weight: 800;
  font-size: 13px;
  border: 1px solid rgba(0,0,0,.08);
  background:#fff;
}
.auth-alert.success{ border-color:#b7e4c7; color:#14532d; background:#eaf7ee; }
.auth-alert.error{ border-color:#fecdd3; color:#7f1d1d; background:#fff1f2; }

/* form */
.auth-field{ margin-bottom: 14px; }
.auth-label{
  display:block;
  font-weight: 800;
  color:#111827;
  font-size: 13px;
  margin-bottom: 8px;
}
.req{ color:#ef4444; }

.auth-input-wrap{
  background:#fff;
  border-radius: 10px;
  border: 1px solid rgba(17,24,39,.12);
  overflow:hidden;
}
.auth-input-wrap.has-error{
  border-color: rgba(239,68,68,.55);
  box-shadow: 0 0 0 4px rgba(239,68,68,.10);
}
.auth-input{
  width:100%;
  border:0;
  outline:none;
  padding: 14px 14px;
  font-size: 15px;
  font-weight: 700;
  color:#111827;
}
.auth-input::placeholder{ color:#94a3b8; font-weight:700; }

/* button */
.auth-btn{
  width:100%;
  border:0;
  margin-top: 10px;
  padding: 14px 14px;
  border-radius: 10px;
  background: #0f5c50;
  color:#fff;
  font-weight: 900;
  font-size: 15px;
  cursor:pointer;
  transition: transform .15s ease, opacity .15s ease;
}
.auth-btn:hover{ transform: translateY(-1px); opacity: .95; }

/* links */
.auth-footer{ margin-top: 14px; text-align:center; }
.auth-bottom{ margin-top: 18px; text-align:center; font-weight:800; font-size:13px; }
.muted{ color:#374151; }

.auth-link{
  color:#0f5c50;
  font-weight: 900;
  text-decoration: underline;
}
.auth-link.strong{ margin-left: 6px; }

/* responsive */
@media (max-width: 992px){
  .auth-modal{
    grid-template-columns: 1fr;
    width: min(640px, 92vw);
    height: min(720px, 92vh);
  }
  .auth-left{ min-height: 240px; }
  .auth-right{ padding: 44px 22px 30px; }
  .auth-title{ font-size: 28px; }
}
/*   login-verify-otp end */


