
/* =========================================
   SKELETON LOADER STYLES
   ========================================= */
#app-loading {
  position: fixed; 
  inset: 0; 
  background: var(--bg); 
  z-index: 9999;
  overflow: hidden;
}

/* শিমার ইফেক্ট অ্যানিমেশন */
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

.skeleton {
  background: #f6f7f8;
  background-image: linear-gradient(90deg, #eeeeee 25%, #dddddd 50%, #eeeeee 75%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite linear forwards;
  border-radius: var(--radius);
}

/* লেআউট অনুযায়ী স্কেলিটনের সাইজ */
.skel-header { height: var(--nav-h); border-bottom: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: space-evenly; padding: 0 1rem; max-width: var(--max-w); margin: 0 auto; }
.skel-logo { width: 120px; height: 35px; }
.skel-nav-links { display: flex; gap: 1.5rem; }
.skel-nav-item { width: 70px; height: 20px; border-radius: 4px; }
@media (max-width: 768px) { .skel-nav-links { display: none; } }

.skel-hero { width: 100%; aspect-ratio: 1640/624; max-height: 624px; min-height: 160px; margin-bottom: 3rem; border-radius: 0; }

.skel-container { max-width: var(--max-w); margin: 0 auto; padding: 0 1rem; }
.skel-section-title { width: 200px; height: 30px; margin-bottom: 1.5rem; }
.skel-grid { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
@media (max-width: 768px) { .skel-grid { grid-template-columns: repeat(2, 1fr); } }

.skel-card { background: var(--card-bg); border: 1px solid var(--gold-border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; gap: 0.8rem; padding-bottom: 1rem; }
.skel-card-img { width: 100%; aspect-ratio: 1/1; border-radius: 0; }
.skel-card-text { width: 80%; height: 16px; margin: 0 1rem; }
.skel-card-text.short { width: 50%; height: 20px; margin-bottom: 0.5rem; }
.skel-card-btn { width: 90%; height: 35px; margin: auto auto 0 auto; border-radius: var(--radius); }

#toast-container {
  position:fixed;
  top:4.5rem; right:1.5rem;
  z-index:10000;
  display:flex; flex-direction:column-reverse; gap:.6rem;
  pointer-events:none;
}
.k-toast {
  pointer-events:all;
  display:flex;
  align-items:anchor-center;
  gap:.75rem;
  min-width:260px; max-width:340px;
  background:var(--navy);
  border:1px solid rgba(201,168,64,.35);
  border-left:3px solid var(--gold);
  border-radius:6px;
  padding:.85rem 1rem .65rem;
  box-shadow:0 8px 28px rgba(0,26,77,.45);
  transform:translateX(110%);
  opacity:0;
  transition:transform .38s cubic-bezier(.22,1,.36,1), opacity .28s ease;
  position:relative; overflow:hidden;
}
.k-toast.k-toast--show { transform:translateX(0); opacity:1; }
.k-toast.k-toast--error  { border-left-color:#f87171; }
.k-toast.k-toast--warning{ border-left-color:#fbbf24; }
.k-toast.k-toast--info   { border-left-color:#60a5fa; }
.k-toast__icon { font-size:1.1rem; line-height:1; flex-shrink:0; margin-top:.05rem; color:orange;}
.k-toast__body { flex:1; }
.k-toast__msg  { font-size:.84rem; font-weight:600; color:rgba(255,255,255,.92); line-height:1.45; }
.k-toast__close {
  flex-shrink:0; background:none; border:none; cursor:pointer;
  color:rgba(255,255,255,.35); font-size:1rem; line-height:1;
  transition:color .15s; padding:0; margin-top:-.05rem; align-self:flex-start;
}
.k-toast__close:hover { color:var(--gold); }
.k-toast__bar {
  position:absolute; bottom:0; left:0;
  height:2px; background:var(--gold); width:100%;
  transform-origin:left;
  animation:toastBar var(--toast-dur,3.2s) linear forwards;
}
.k-toast.k-toast--error   .k-toast__bar { background:#f87171; }
.k-toast.k-toast--warning .k-toast__bar { background:#fbbf24; }
.k-toast.k-toast--info    .k-toast__bar { background:#60a5fa; }
@keyframes toastBar { to { transform:scaleX(0); } }


/* ══════════════════════════════════════
   OFFER MODAL POPUP SYSTEM (CENTER)
   ══════════════════════════════════════ */
#offer-notif-wrap {
  position: fixed;
  inset: 0;
  /*background:var(--blur-bg);*/
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: background .35s ease;
}
#offer-notif-wrap.onw--visible {
  pointer-events: all;
  backdrop-filter: blur(6px);
}
.offer-modal-box {
  background: #fff;
  border: 1.5px solid var(--gold-border);
  border-top: 4px solid var(--gold-deep);
  border-radius: 14px;
  width: 92%;
  max-width: 550px; /* ডেস্কটপের জন্য সাইজ বড় করা হয়েছে (আগে 420px ছিল) */
  box-shadow: 0 20px 60px rgba(0, 26, 77, .35);
  overflow: hidden;
  transform: scale(.88) translateY(24px);
  opacity: 0;
  transition: transform .38s cubic-bezier(.22,1,.36,1), opacity .3s ease;
  position: relative;
}
#offer-notif-wrap.onw--visible .offer-modal-box {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.omf-top-strip {
  height: 3px;
  background: var(--gold-shadow);
}
.omf-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem .85rem .45rem;
  background: var(--gold-light);
  border-bottom: 1px solid rgba(201,168,64,.18);
}
.omf-badge {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  background: var(--gold);
  color: #fff;
  font-size: .6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .50rem .6rem;
  border-radius: 20px;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(201,168,64,.4);
}
.omf-close {
  background: none;
  border: 1px solid rgba(201,168,64,.35);
  color: var(--text-muted);
  cursor: pointer;
  font-size: .8rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
  flex-shrink: 0;
}
.omf-close:hover {
  background: var(--gold-border);
  transform: rotate(90deg);
}
.omf-slides-wrap {
  overflow: hidden;
  position: relative;
}
.omf-track {
  display: flex;
  transition: transform .42s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.omf-slide {
  min-width: 100%;
}
.omf-slide-inner {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #fff;
  height:100%;
}
.omf-icon-wrap {
  width: 56px; /* আইকন সামান্য বড় করা হয়েছে */
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-light) 0%, #fef3c7 100%);
  border: 1px solid rgba(201,168,64,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.omf-body-text { flex: 1; min-width: 0; }
.omf-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  text-align:center;
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: .25rem;
}
.omf-desc {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0 0 .35rem;
}
.omf-coupon-tag {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  background: #fef9ec;
  border: 1.5px dashed var(--gold);
  color: var(--gold-deep);
  font-size: .75rem;
  font-weight: 800;
  padding: .2rem .55rem;
  border-radius: 4px;
  letter-spacing: .08em;
  font-family: monospace;
  margin-top: .2rem;
  cursor: pointer;
  transition: background .15s;
}
.omf-coupon-tag:hover { background: #fef3c7; }
.omf-meta { font-size: .75rem; color: #9ca3af; margin-top: .15rem; }
.omf-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--gold);
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  padding: .6rem 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
  line-height: 1;
  box-shadow: 0 3px 10px rgba(201,168,64,.4);
}
.omf-cta:hover { background: var(--gold-deep); transform: translateY(-1px); }
.omf-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .5rem .85rem .6rem;
  background: #fafafa;
  border-top: 1px solid rgba(0,0,0,.05);
  gap: .75rem;
}
.omf-nav-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-border);
  background: #fff;
  color: var(--gold-deep);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  flex-shrink: 0;
  line-height: 1;
}
.omf-nav-btn:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.omf-nav-btn:disabled { opacity: .28; cursor: not-allowed; pointer-events: none; }
.omf-dots {
  display: flex;
  gap: .4rem;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.omf-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-border);
  border: none;
  cursor: pointer;
  transition: background .25s, transform .25s;
  padding: 0;
}
.omf-dot.active { background: var(--gold); transform: scale(1.5); }
.omf-progress {
  width: 100%;
  height: 2px;
  background: #f0f0f0;
  overflow: hidden;
  border-radius: 2px;
  margin-top: 0;
  position: absolute;
  bottom: 0;
  left: 0;
}
.omf-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, #e8c84a 100%);
  width: 100%;
  transform-origin: left;
}
@keyframes omfProgress {
  from { transform: scaleX(1); }
  to   { transform: scaleX(0); }
}

/* মোবাইলের জন্য পোর্ট্রেট (লম্বালম্বি) লেআউট */
@media (max-width: 480px) {
  .offer-modal-box { 
    width: 90%; 
    max-width: 340px; /* মোবাইলের স্ক্রিনে পারফেক্ট ফিট হওয়ার জন্য */
    margin: 0 auto; 
  }
  .omf-slide-inner {
    flex-direction: column; /* এলিমেন্টগুলোকে নিচে নিচে সাজানোর জন্য */
    text-align: center;
    padding: 1.5rem 1.2rem;
    gap: .8rem;
  }
  .omf-icon-wrap {
    width: 30px;
    height: 30px;
    font-size: 1.8rem;
    border-radius: 50%;
    margin: 0 auto;
  }
  .omf-title { font-size: 0.7rem; }
  .omf-desc { font-size: .8rem; margin: 0 0 .5rem; }
  .omf-cta {
    width: 100%;
    padding: .8rem 1rem;
    margin-top: .5rem;
  }
}
#site-header {
  position:sticky; top:0; z-index:100;
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--gold-border);
  box-shadow:0 2px 16px var(--gold-shadow);
  height:var(--nav-h);
  transition:box-shadow .3s ease;
}
.nav-inner { height:var(--nav-h); display:flex; align-items:center; justify-content:space-evenly; gap:1rem; }

.logo-wrap  { display:flex; align-items:center; gap:.55rem; flex-shrink:0 }
.logo-img   { height:40px; width:auto; object-fit:contain }
.logo-text  { font-size:1.2rem; font-weight:700; color:var(--gold-deep); transition:color var(--transition); }
.logo-wrap:hover .logo-text { color:var(--navy); }
#search-toggle { background:transparent; }

.nav-links { display:flex; align-items:center; gap:1.25rem; list-style:none }
.nav-links li { position:relative }
.nav-links a,
.nav-links button.nav-btn {
  font-family:'Poppins', sans-serif;
  font-size:.84rem; font-weight:600; letter-spacing:.03em;
  color:var(--text); padding:.45rem .65rem;
  border-radius:var(--radius);
  transition:color var(--transition), background var(--transition);
  position:relative;
}
.nav-links a::after,
.nav-links button.nav-btn::after {
  content:''; position:absolute; bottom:0; left:.65rem; right:.65rem;
  height:1.5px; background:var(--gold);
  transform:scaleX(0); transform-origin:left; transition:transform .3s ease;
}
.nav-links a:hover::after,
.nav-links button.nav-btn:hover::after { transform:scaleX(1); }
.nav-links a:hover,
.nav-links button.nav-btn:hover { color:var(--gold-deep); }
.has-dropdown>button.nav-btn::after { content:none }
.has-dropdown>button.nav-btn>span.arrow { display:inline-block; margin-left:.3rem; font-size:.7em; transition:transform .25s ease; }
.has-dropdown:hover>button.nav-btn>span.arrow { transform:rotate(180deg); }

.dropdown {
  display:none; position:absolute; top:calc(100% + 15px); left:0;
  background:var(--bg); border:1px solid var(--gold-border);
  border-top:2px solid var(--gold); border-radius:0 0 6px 6px;
  box-shadow:0 12px 32px var(--gold-shadow);
  min-width:190px; padding:.5rem 0; list-style:none; z-index:200;
  animation:dropIn .22s ease forwards;
}
@keyframes dropIn { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:translateY(0)} }
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display:block }
.dropdown li a {
  display:flex; align-items:center; justify-content:space-between;
  padding:.5rem 1.1rem; font-size:.85rem; font-weight:500;
  transition:background var(--transition), color var(--transition);
  border-left:2px solid transparent;
}
.dropdown li a:hover { background:var(--gold-light); color:var(--gold-deep); border-left-color:var(--gold); }

/* টেক্সট যেন ভেঙে নিচে না যায় */
.has-sub > a {
    white-space: nowrap !important;
}


.has-sub > a::after {
    content: '›' !important;
    position: static !important; 
    background: transparent !important;
    height: auto !important;
    transform: none !important;
    font-size: 1.2em;
    opacity: 0.6;
    margin-left: 15px; /* অ্যারোটিকে ডানদিকে ঠেলে দেওয়ার জন্য */
    transition: transform 0.2s ease !important;
}

/* হোভার করার সময় অ্যারোটি হালকা ডানে সরবে */
.has-sub:hover > a::after {
    transform: translateX(4px) !important;
}

.sub-dropdown {
  display:none; position:absolute; left:100%; right:auto; top:-4px;
  background:var(--bg); border:1px solid var(--gold-border);
  border-top:2px solid var(--gold); border-radius:0 0 6px 6px;
  box-shadow:0 12px 28px var(--gold-shadow);
  min-width:168px; padding:.4rem 0; list-style:none; z-index:300; white-space:nowrap;
  animation:dropIn .2s ease forwards;
}
/* Main Dropdown এর গ্যাপ ফিলাপ করার জন্য Invisible Bridge */
.dropdown::before {
  content: '';
  position: absolute;
  top: -20px; /* উপরের ফাঁকা জায়গা কভার করার জন্য */
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}

/* Sub-dropdown এর গ্যাপ ফিলাপ করার জন্য (আগের .sub-dropdown::after কোডটি মুছে এটি বসান) */
.sub-dropdown::after {
  content: '';
  position: absolute;
  top: -10px;
  bottom: -10px;
  left: -15px; /* মেনু থেকে ডানে যাওয়ার বাম পাশের গ্যাপ */
  width: 15px;
  background: transparent;
}
.sub-dropdown::after { content:''; position:absolute; top:0; bottom:0; right:-15px; width:15px; background:transparent; }
.has-sub:hover .sub-dropdown,
.has-sub:focus-within .sub-dropdown { display:block }
.sub-dropdown li a { font-size:.83rem; padding:.42rem .95rem; justify-content:flex-start; }
.sub-dropdown li a::after { display:none }

.hamburger {
  display:none; flex-direction:column; justify-content:center;
  gap:5px; width:38px; height:38px; padding:5px;
  border-radius:var(--radius); border:1px solid var(--gold-border);
  transition:background var(--transition), border-color var(--transition);
}
.hamburger:hover { background:var(--gold-light); border-color:var(--gold) }
.hamburger span { display:block; height:2px; background:var(--gold-deep); border-radius:2px; transition:transform .3s ease, opacity .3s ease; }
.hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px) }
.hamburger.open span:nth-child(2) { opacity:0; transform:scaleX(0) }
.hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px) }

.mobile-nav { display:none; background:var(--bg); border-top:1px solid var(--gold-border); padding:.65rem 0; list-style:none; box-shadow:0 8px 20px var(--gold-shadow); }
.mobile-nav.open { display:block }
.mobile-nav a { display:block; padding:.55rem 1.3rem; font-size:.93rem; font-weight:500; transition:background var(--transition), color var(--transition); border-left:2px solid transparent; }
.mobile-nav a:hover { background:var(--gold-light); color:var(--gold-deep); border-left-color:var(--gold); }
.mob-item-row { display:flex; align-items:center; justify-content:space-between }
.mob-item-row>a { flex:1 }
.mob-toggle { width:34px; height:34px; flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:1rem; font-weight:800; color:var(--gold-deep); background:var(--gold-light); border:1px solid var(--gold-border); border-radius:4px; margin-right:.75rem; transition:background var(--transition), color var(--transition); }
.mob-toggle:hover { background:var(--gold); color:#fff; }
.mob-children { display:none; list-style:none; border-left:2px solid var(--gold-border); margin-left:1.5rem; overflow:hidden; max-height:0; transition:max-height .3s ease; }
.mob-children.open   { display:block; max-height:9999px }
.mob-grandchildren   { display:none; list-style:none; border-left:2px solid var(--gold-border); margin-left:1rem; max-height:0; transition:max-height .3s ease; }
.mob-grandchildren.open { display:block; max-height:9999px }
.mob-child-link      { padding-left:1rem!important; font-size:.9rem!important; color:var(--text-muted) }
.mob-grandchild-link { padding-left:1rem!important; font-size:.85rem!important; color:var(--text-muted) }

#page-content { min-height:calc(100vh - var(--nav-h) - 200px); padding:0.1rem 0 }
.home-section      { padding:3rem 0 }
.home-blog-section { padding:1rem 0 1rem }
.page-content      { padding:2rem 1rem }

.hero { position:relative; overflow:hidden; background:#0a0a0a; user-select:none }
.hero-slides { display:flex }
.hero-slide { min-width:100%; position:relative; aspect-ratio:1640/624; max-height:624px; min-height:160px; overflow:hidden; }
.hero-slide img { width:100%; height:100%; object-fit:cover; transition:opacity .5s ease; }
.hero-slide-clickable { cursor:pointer }
.hero-empty { height:0 }
.hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(115deg, rgba(0,0,0,.65) 0%, rgba(0,26,77,.25) 55%, transparent 80%);
  display:flex; flex-direction:column; justify-content:center;
  padding:2rem clamp(1.5rem,6vw,5rem); pointer-events:none;
}
.hero-overlay .btn { pointer-events:all }
.hero-title { font-size:clamp(1.6rem,4vw,3rem); font-weight:800; color:#fff; line-height:1.2; max-width:520px; text-shadow:0 2px 12px rgba(0,0,0,.5); }
.hero-subtitle { color:rgba(255,255,255,.82); font-size:clamp(.9rem,1.5vw,1.1rem); margin-top:.5rem; max-width:440px; }
.hero-arrow { position:absolute; top:50%; transform:translateY(-50%); width:42px; height:42px; border-radius:5px; color:var(--bg); font-size:4.3rem; display:flex; align-items:center; justify-content:center; transition:all var(--transition); z-index:10; text-shadow:0 4px 16px rgba(201,168,64,.4); }
.hero-prev { left:1rem }
.hero-next { right:1rem }
.hero-dots { position:absolute; bottom:1.5rem; left:50%; transform:translateX(-50%); display:flex; gap:.5rem; z-index:10 }
.hero-dot { width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,.35); border:none; transition:all .3s ease; cursor:pointer; }
.hero-dot.active { background:var(--gold); transform:scale(1.4); box-shadow:0 0 6px var(--gold); }
.hero-progress-wrap { position:absolute; bottom:0; left:0; width:100%; height:3px; background:rgba(255,255,255,.12); z-index:15 }
.hero-progress-fill { height:100%; width:0%; background:var(--gold); }

.section-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:1.5rem; flex-wrap:wrap; gap:.5rem; }
.section-title { font-size:1.5rem; font-weight:700; color:var(--text); position:relative; padding-bottom:.55rem; }
.section-title::after { content:''; position:absolute; bottom:0; left:0; width:40px; height:2.5px; background:var(--gold); border-radius:2px; transition:width .35s ease; }
.section-title:hover::after { width:72px; }
.section-link { font-size:.84rem; color:var(--gold-deep); font-weight:700; padding:.3rem .8rem; border-radius:var(--radius); border:1px solid var(--gold-border); transition:background var(--transition), color var(--transition), border-color var(--transition); }
.section-link:hover { background:var(--gold); color:#fff; border-color:var(--gold); }
/* --- Best Seller Subtitle Styles --- */
/* --- Best Seller Subtitle Styles (Upgraded) --- */
.bs-head-custom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* এটি বাটনটিকে উপরের দিকে টাইটেলের লেভেলে রাখবে */
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.bs-title-box {
  display: flex;
  flex-direction: column;
  flex: 1; /* জায়গা দখল করার জন্য */
}

/* টাইটেল এবং সাবটাইটেলের মাঝের গ্যাপ */
.bs-title-box .section-title {
  margin-bottom: 0.35rem; 
}

.bs-subtitle { 
  font-size: .85rem; 
  color: var(--text-muted); 
  line-height: 1.4;   
  font-family: 'Poppins', sans-serif; 
  letter-spacing: 0.5px; /* লেটার স্পেসিং 2.5px থেকে কমিয়ে 0.5px করা হলো যাতে সুন্দর দেখায় */
}

.bs-view-all-top {
  margin-top: 0.2rem; /* বাটনের অ্যালাইনমেন্ট টাইটেলের সাথে মেলানোর জন্য */
}

/* Mobile Responsive */
@media(max-width: 480px) {
  .bs-head-custom { align-items: center; }
  .bs-title-box { max-width: 65%; } /* বাটন যেন নিচে না নামে তাই টাইটেল বক্সের সাইজ কন্ট্রোল */
  .bs-subtitle { font-size: 0.75rem; }
  .trust-badge {padding:0.55rem 0.25rem;}
  .trust-badge-text {font-size:10px;}
}

.grid { display:grid; gap:var(--gap); grid-template-columns:repeat(auto-fill, minmax(220px,1fr)); }

.card { background:var(--card-bg); border:1px solid var(--gold-border); border-radius:var(--radius); overflow:hidden; transition:transform .35s cubic-bezier(.25,.46,.45,.94), box-shadow .35s ease, border-color .25s ease; display:flex; flex-direction:column; position:relative; }
.card:hover { box-shadow:0 12px 40px var(--gold-shadow); transform:translateY(-4px); border-color:var(--gold); }

.card-thumb { position:relative; aspect-ratio:1/1; overflow:hidden; background:var(--gold-light); }
.card-thumb-link { display:block; width:100%; height:100% }
.card-thumb img { width:100%; height:100%; object-fit:cover; transition:transform .55s cubic-bezier(.25,.46,.45,.94); }
.card:hover .card-thumb img { transform:scale(1.08); }
.card-save-badge { position:absolute; top:10px; right:10px; z-index:3; background:var(--gold-deep); color:#fff; font-size:.60rem; font-weight:800; letter-spacing:.05em; padding:.22rem .55rem .19rem; border-radius:3px; box-shadow:0 2px 8px rgba(139,107,21,.35); }
.card-quick-add { position:absolute; bottom:0; left:0; right:0; background:var(--gold-deep); backdrop-filter:blur(4px); color:var(--gold-light); text-align:center; padding:.6rem; font-size:.76rem; font-weight:700; letter-spacing:.07em; text-transform:uppercase; transform:translateY(101%); transition:transform .42s cubic-bezier(.22,1,.36,1); cursor:pointer; display:flex; align-items:center; justify-content:center; gap:.4rem; }
/*.card-quick-add:hover { background:var(--gold);}*/
.card:hover .card-quick-add { transform:translateY(0); }
.card-body { padding:.85rem .95rem; flex:1; display:flex; flex-direction:column; gap:.2rem; border-top:1px solid var(--gold-border); position:relative; z-index:1; font-family:'Poppins',sans-serif;}
.card-type { font-size:.66rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--gold-deep); background:var(--gold-light); display:inline-block; padding:.12rem .48rem; border-radius:3px; width:fit-content; }
.card-title-link { color:inherit; text-decoration:none; display:block }
.card-title { font-size:13px; font-weight:600; line-height:1.35; color:var(--navy); display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; margin-bottom:.15rem; transition:color .2s ease; font-family:'Poppins',sans-serif;}
.card-title:hover { color:var(--gold-deep) }
.card-details-row { display:grid; grid-template-columns:1fr auto; column-gap:.55rem; align-items:end; }
.card-details-left  { display:flex; flex-direction:column; gap:.1rem; min-width:0; }
.card-details-right { display:flex; flex-direction:column; align-items:flex-end; gap:.18rem; flex-shrink:0; }
.card-price { font-family:'Montserrat', sans-serif; font-size:0.85rem; font-weight:600; color:var(--navy); line-height:1.1; letter-spacing:.01em; margin-bottom:2px;}
.card-old-price { font-size:.71rem; color:var(--text-muted); text-decoration:line-through; font-weight:500; line-height:1.1; }
.card-stock { display:inline-flex; align-items:center; gap:.2rem; font-size:.63rem; font-weight:700; padding:.16rem .38rem; border-radius:3px; white-space:nowrap; flex-shrink:0; letter-spacing:.02em; line-height:1.3; }
.card-stock-low { color:#b91c1c; background:#fef2f2; border:1px solid #fecaca; }
.card-stock-ok  { color:#065f46; background:#f0fdf4; border:1px solid #bbf7d0; }
.card-rating { display:flex; flex-direction:column; align-items:flex-end; gap:.06rem; }
.card-stars  { color:var(--gold); font-size:.78rem; letter-spacing:-.05em; line-height:1; }
.card-rating-text { font-size:.6rem; color:var(--text-muted); font-weight:600; letter-spacing:.01em; line-height:1; }
.card-footer { padding:.55rem .75rem .75rem; border-top:1px solid var(--gold-border); display:flex; gap:.4rem; position:relative; z-index:1; }
.card-btn-cart { flex:1; padding:.52rem .3rem; border-radius:var(--radius); border:1px solid var(--gold-border); background:var(--gold-light); color:var(--gold-deep); font-weight:600; font-size:.8rem; transition:background var(--transition), color var(--transition), border-color var(--transition), transform .15s ease; display:flex; align-items:center; justify-content:center; gap:.25rem; cursor:pointer; font-family:'Poppins', sans-serif; }
.card-btn-cart:hover { background:var(--gold); color:#fff; border-color:var(--gold); transform:translateY(-1px); }
.card-btn-view { flex:1; padding:.52rem .3rem; border-radius:var(--radius); border:1px solid var(--gold); background:var(--gold); color:#fff; font-weight:600; font-size:.8rem; text-align:center; transition:background var(--transition), border-color var(--transition); align-items:center; justify-content:center; display:none; font-family:'Poppins', sans-serif; }
.card-btn-view:hover { background:var(--gold-deep); border-color:var(--gold-deep) }

.bs-section { padding:3rem 0; }
.bs-carousel-wrap { position:relative; overflow:hidden; }
.bs-track { display:flex; transition:transform .65s cubic-bezier(.4,0,.2,1); }
.bs-slide  { min-width:100%; }
.bs-grid { display:grid; gap:var(--gap); grid-template-columns:repeat(5,1fr); }

/*@media(max-width:768px) {*/
/*  .bs-grid { grid-template-columns:repeat(2,1fr); }*/
/*  .bs-grid .card:nth-child(n+7) { display:none; }*/
/*}*/

/* ✅ TABLET BREAKPOINT (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .bs-grid { 
    grid-template-columns: repeat(4, 1fr) !important; 
  }
  .bs-grid .card:nth-child(n+13) { 
    display: none; 
  }
  
  .hcs-grid { 
    grid-template-columns: repeat(4, 1fr) !important; 
  }
  
  .grid { 
    grid-template-columns: repeat(4, 1fr) !important; 
  }
}

@media(max-width:480px) { .bs-grid { grid-template-columns:repeat(2,1fr); } }
.bs-nav { display:flex; align-items:center; justify-content:center; gap:1rem; margin-top:1.5rem; flex-wrap:wrap; }
.bs-dots { display:flex; gap:.5rem; }
.bs-dot { width:9px; height:9px; border-radius:50%; background:var(--gold-border); cursor:pointer; transition:background .25s, transform .25s; border:none; }
.bs-dot.active { background:var(--gold); transform:scale(1.4); }
.bs-progress-wrap { width:100px; height:2.5px; background:var(--gold-border); border-radius:2px; overflow:hidden; }
.bs-progress-fill { height:100%; background:var(--gold); width:0; }

.review-sec { padding:2rem 0rem 2rem; background:var(--gold-light); overflow:hidden; position:relative; border-top:1px Solid var(--gold-border); border-bottom:1px Solid var(--gold-border); }
.review-sec::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 50% 0%, rgba(201,168,64,.08) 0%, transparent 65%); pointer-events:none; }
.review-sec-inner { text-align:center; margin-bottom:2.75rem; position:relative; }
.review-sec-eyebrow { font-size:.72rem; font-weight:800; text-transform:uppercase; letter-spacing:.18em; color:var(--navy); margin-bottom:.1rem; }
.review-sec-title { font-size:clamp(1.9rem,3.5vw,2.8rem); font-weight:900; line-height:1.15; letter-spacing:-.02em; }
.review-sec-subtitle { font-size:.9rem; margin-top:.65rem; max-width:460px; margin-inline:auto; line-height:1.65; }

.rev-marquee-outer { 
  overflow-x: auto; 
  padding:.75rem 0; 
  -webkit-mask-image:linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%); 
  mask-image:linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%); 
  scrollbar-width: none; 
  -ms-overflow-style: none; 
}
.rev-marquee-outer::-webkit-scrollbar { display: none; } 

.rev-marquee-track { display:flex; gap:1.25rem; width:max-content; }

.rev-slide-card { flex-shrink:0; width:285px; background:var(--card-bg); border:1px solid var(--gold-border); border-radius:10px; padding:1.4rem 1.5rem; display:flex; flex-direction:column; gap:.55rem; cursor:default; transition:background .3s, border-color .3s, transform .3s; }
.rev-slide-card:hover { border-color:rgba(201,168,64,.5); transform:translateY(-4px); }
.rsc-stars  { color:var(--gold); font-size:.95rem; letter-spacing:-.04em; }
.rsc-text   { font-size:.875rem; line-height:1.75; flex:1; display:-webkit-box; -webkit-line-clamp:4; -webkit-box-orient:vertical; overflow:hidden; font-style:italic; }
.rsc-footer { border-top:1px solid rgba(201,168,64,.15); padding-top:.55rem; margin-top:auto; }
.rsc-name   { font-weight:700; font-size:.82rem; color:var(--gold); display:block; }
.rsc-product{ font-size:.72rem; display:block; margin-top:.12rem; }

/* Review Slider Navigation Buttons */
.rev-nav-wrap {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
  padding: 0 1.5rem;
}
.rev-nav-btn {
  pointer-events: all;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--gold-deep);
  font-size: 3.0rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s ease;
  line-height: 1;
}
@media (max-width: 768px) {
  .rev-nav-wrap { padding: 0 0.5rem; }
  .rev-nav-btn { width: 36px; height: 36px; font-size: 3.0rem; }
}

.home-cat-sec { padding:3rem 0; border-bottom:1px solid var(--gold-border); }
.home-cat-sec:last-of-type { border-bottom:none; }
.hcs-top { display:flex; align-items:flex-start; justify-content:space-between; gap:1.5rem; margin-bottom:1.75rem; flex-wrap:wrap; }
.hcs-title-box { flex-shrink:0; }
.hcs-title { font-size:1.45rem; font-weight:800; color:var(--text); line-height:1.2; position:relative; padding-bottom:.55rem; margin-bottom:.4rem; }
.hcs-title::after { content:''; position:absolute; bottom:0; left:0; width:40px; height:2.5px; background:var(--gold); border-radius:2px; transition:width .35s ease; }
.hcs-title:hover::after { width:70px; }
.hcs-subtitle { font-size:.82rem; color:var(--text-muted); line-height:1.55; margin-top:.35rem; }
.hcs-filters { display:flex; flex-wrap:wrap; gap:.45rem; align-items:center; flex:1; justify-content:flex-end; max-width:600px;}
.cat-filter-btn { padding:.44rem .95rem; border:1.5px solid var(--gold-border); border-radius:4px; background:var(--bg); color:var(--text-muted); font-size:.78rem; font-weight:600; cursor:pointer; font-family:'Poppins', sans-serif; transition:all .22s ease; white-space:nowrap; line-height:1; }
.cat-filter-btn:hover { border-color:var(--gold); background:var(--gold-light); color:var(--gold-deep); }
.cat-filter-btn.active { background:var(--gold); color:#fff; border-color:var(--gold); box-shadow:0 3px 10px var(--gold-shadow); }
.hcs-view-all-btn { font-size:.84rem; color:var(--gold-deep); font-weight:700; padding:.3rem .8rem; border-radius:var(--radius); border:1px solid var(--gold-border); transition:background var(--transition), color var(--transition), border-color var(--transition); }
.hcs-view-all-btn:hover { background:var(--gold); color:#fff; transform:translateY(-1px); }
.hcs-slider-outer { 
  overflow: hidden; 
  padding-top: 15px;      /* ওপরে ওঠার জন্য জায়গা */
  padding-bottom: 30px;   /* নিচের শ্যাডোর জন্য জায়গা */
  margin-top: -15px;      /* লেআউট স্পেসিং ঠিক রাখতে */
  margin-bottom: -30px; 
}
.hcs-slider-track { display:flex; transition:transform .65s cubic-bezier(.4,0,.2,1); }
.hcs-slide { min-width:100%; }
.hcs-grid { display:grid; gap:var(--gap); grid-template-columns:repeat(5,1fr); }
@media(max-width:768px) { .hcs-grid { grid-template-columns:repeat(2,1fr); } }
@media(max-width:480px) { .hcs-grid { grid-template-columns:repeat(2,1fr); } }
.hcs-prog-wrap { height:2.5px; margin-top:1.25rem; border-radius:2px; overflow:hidden; background:var(--gold-border); }
.hcs-prog-fill { height:100%; background:var(--gold); width:0; }

.item-page { max-width:1000px; margin:0 auto }
.item-hero { display:grid; gap:2.5rem; grid-template-columns:1fr 1fr; margin-bottom:2rem; align-items:start; }
.img-gallery { display:flex; flex-direction:column; gap:.65rem; position: relative; }
.img-main-wrap { position:relative; aspect-ratio:1/1; border-radius:var(--radius); border:1px solid var(--gold-border); cursor:zoom-in; background:var(--gold-light); touch-action:none; overflow:hidden; }
.img-main-wrap img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .3s ease; border-radius:calc(var(--radius) - 1px); }

.img-zoom-lens   { display:none!important; }
.img-zoom-result { display:none!important; }

.img-main-wrap:hover .img-zoom-lens { opacity:1 }

.img-thumbs { display:flex; gap:.8rem; flex-wrap:wrap; }
.img-thumb-btn { width:58px; height:58px; border:2px solid var(--gold-border); border-radius:var(--radius); overflow:hidden; cursor:pointer; transition:border-color .2s, transform .2s; flex-shrink:0; }
.img-thumb-btn.active { border-color:var(--gold); transform:scale(1.06) }
.img-thumb-btn img { width:100%; height:100%; object-fit:cover }

.item-meta-box  { display:flex; flex-direction:column; gap:1.1rem }
.item-title     { font-size:1.50rem; font-weight:700; line-height:1.25; color:var(--navy); font-family:'Montserrat', sans-serif; }
.item-price     { font-size:1.55rem; font-weight:800; color:var(--gold-deep) }
.item-type-badge { display:inline-block; background:var(--gold-light); color:var(--gold-deep); border:1px solid var(--gold-border); border-radius:4px; font-size:.78rem; font-weight:700; text-transform:uppercase; letter-spacing:.07em; padding:.2rem .6rem; font-family:'Poppins', sans-serif; }
.item-save-badge { display:inline-block; background:#dc2626; color:#fff; font-size:.8rem; font-weight:800; padding:.22rem .6rem; border-radius:3px; margin-left:.5rem; }
.price-container { display:flex; align-items:baseline; gap:.6rem; flex-wrap:wrap }
.old-price { text-decoration:line-through; color:var(--text-muted); font-size:.9em }
.item-stock { display:inline-flex; align-items:center; gap:.3rem; font-size:.8rem; font-weight:700; padding:.25rem .6rem; border-radius:4px; width:fit-content; margin-left:0.5rem;}
.item-stock-low { background:#fef3c7; color:#92400e; border:1px solid #fcd34d }
.item-stock-ok  { background:#d1fae5; color:#065f46; border:1px solid #6ee7b7 }
.item-stock-pre { background:var(--navy-light); color:var(--navy); border:1px solid var(--navy-light); }
.card-stock-pre { background:var(--navy-light); color:var(--navy); border:1px solid var(--navy-light); }
.item-rating-row  { display:flex; align-items:center; gap:.5rem }
.item-rating-stars{ color:var(--gold); font-size:1.1rem; letter-spacing:-.05em }
.item-rating-text { font-size:.85rem; color:var(--text-muted) }
.size-label { font-size:.85rem; font-weight:700; text-transform:uppercase; color:var(--text-muted); margin-bottom:.6rem; display:block }
.size-grid  { display:flex; gap:.6rem; flex-wrap:wrap }
.size-btn { padding:.6rem 1rem; border:1px solid var(--gold-border); border-radius:4px; background:var(--gold-light); color:var(--gold-deep); font-weight:600; font-size:.85rem; transition:all .2s ease; cursor:pointer; font-family:'Poppins', sans-serif; }
.size-btn:hover { border-color:var(--gold); background:#fff }
.size-btn.active { background:var(--gold); color:#fff; border-color:var(--gold); box-shadow:0 4px 12px var(--gold-shadow) }
/* নতুন */
.item-action-grid { display:grid; grid-template-columns:1fr 1fr auto; gap:10px; margin-top:.5rem; align-items:stretch; }

.btn-whatsapp {
  background:#25D366; color:#fff;
  border:none; border-radius:var(--radius);
  display:flex; align-items:center; justify-content:center; gap:.4rem;
  padding:.65rem .9rem; font-weight:700; font-size:.85rem;
  cursor:pointer; font-family:'Poppins',sans-serif;
  transition:background .2s, transform .15s, box-shadow .2s;
  white-space:nowrap; text-decoration:none; line-height:1;
  flex-shrink:0;
}
.btn-whatsapp:hover {
  background:#1da851;
  transform:translateY(-2px);
  box-shadow:0 4px 14px rgba(37,211,102,.4);
}
.btn-whatsapp span { display:none; }
/* মোবাইলে WA button শুধু icon, text লুকানো */
@media(max-width:768px) {
  .btn-whatsapp span { display:none; }
  .btn-whatsapp { padding:.65rem .75rem; }
}
.item-content-section { margin-top:2rem }
.item-content { padding-top:1.5rem; line-height:1.8 }
.item-content h1,.item-content h2,.item-content h3 { color:var(--text); margin:1.2rem 0 .5rem }
.item-content p     { margin-bottom:.9rem }
.item-content ul,.item-content ol { margin:0rem 0.7rem 0rem }
.item-content table { border-collapse:collapse; width:100%; margin:.9rem 0 }
.item-content th,.item-content td { border:1px solid var(--gold-border); padding:.6rem .8rem; text-align:left }
.item-content th    { background:var(--gold-light); font-weight:700 }
.item-content img   { border-radius:var(--radius); margin:1rem 0 }
.item-content blockquote { border-left:3px solid var(--gold); padding:.6rem 1.1rem; background:var(--gold-light); border-radius:0 var(--radius) var(--radius) 0; margin:.9rem 0; }

.item-tabs { display:flex; gap:.35rem; border-bottom:1.5px solid var(--gold-border); margin:2rem 0 1.5rem; padding:0 .1rem; }
.tab-btn { padding:.6rem 1.25rem; font-weight:700; text-transform:uppercase; font-size:.82rem; letter-spacing:.04em; color:var(--text-muted); position:relative; cursor:pointer; font-family:'Poppins',sans-serif; border-radius:6px 6px 0 0; border:1.5px solid transparent; border-bottom:none; background:transparent; margin-bottom:-1.5px; transition:color .22s,background .22s; }
.tab-btn:hover { color:var(--gold-deep);}
.tab-btn.active { color:var(--gold-deep); background:#fff; border-color:var(--gold-border); border-bottom: 1px solid #fff; border-top:3px solid var(--gold-deep);}


.review-form { display:flex; flex-direction:column; gap:1rem; background:var(--gold-light); padding:1.5rem; border:1px solid var(--gold-border); border-radius:var(--radius); }
.star-rating { display:flex; flex-direction:row-reverse; justify-content:flex-end; gap:5px; margin-bottom:.5rem }
.star-rating input  { display:none }
.star-rating label  { font-size:1.8rem; color:#d1d5db; cursor:pointer; transition:color .2s }
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label { color:var(--gold) }
.rev-input { width:100%; padding:.8rem; border:1px solid var(--gold-border); outline:none; border-radius:4px; font-size:.9rem; font-family:inherit; transition:border-color .2s, box-shadow .2s; background:#fff; }
.rev-input:focus { border-color:var(--gold); box-shadow:0 0 0 3px rgba(201,168,64,.12); }
.review-card { padding:1rem; border:1px solid var(--gold-border); border-radius:var(--radius); background:var(--bg); margin-bottom:.75rem; transition:box-shadow .2s ease; }
.review-card:hover { box-shadow:0 4px 14px var(--gold-shadow); }
.review-card-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:.4rem }
.review-card-name   { font-weight:700; font-size:.9rem; color:var(--navy) }
.review-card-date   { font-size:.75rem; color:var(--text-muted) }
.review-card-stars  { color:var(--gold); font-size:.95rem; letter-spacing:-.05em; margin-bottom:.35rem }
.review-card-text   { font-size:.88rem; color:var(--text); line-height:1.6 }
.reviews-summary { display:flex; align-items:center; gap:1rem; padding:1.1rem; background:var(--gold-light); border:1px solid var(--gold-border); border-radius:var(--radius); margin-bottom:1.5rem; box-shadow:inset 0 1px 4px rgba(201,168,64,.1); }
.reviews-big-rating { font-size:2.8rem; font-weight:800; color:var(--gold-deep); line-height:1 }
.reviews-big-stars  { color:var(--gold); font-size:1.2rem; letter-spacing:-.05em }
.reviews-big-count  { font-size:.85rem; color:var(--text-muted) }

.page-header { margin-bottom:2rem; padding-bottom:1.5rem; border-bottom:1px solid var(--gold-shadow) }
.page-header h1 { font-size:2rem; font-weight:800; margin-bottom:.25rem }
.page-header p  { color:var(--text-muted) }
.empty-state    { text-align:center; padding:4rem 1rem; color:var(--text-muted) }
.breadcrumb { display:flex; align-items:center; gap:.4rem; flex-wrap:wrap; font-size:.84rem; color:var(--text-muted); margin-bottom:1.5rem; }
.breadcrumb a   { color:var(--gold-deep); font-weight:600 }
.breadcrumb a:hover { text-decoration:underline }
.breadcrumb .sep{ color:var(--gold-border) }

.page-404   { text-align:center; padding:5rem 1rem }
.error-code { font-size:5rem; color:var(--gold-border); display:block; line-height:1 }
.error-title{ margin-bottom:1rem; margin-top:.5rem }
.error-desc { color:var(--text-muted) }
.error-btn  { display:inline-flex; margin-top:1.5rem }

.btn { display:inline-flex; align-items:center; justify-content:center; gap:.4rem; padding:.65rem 1.5rem; border-radius:var(--radius); font-weight:600; font-size:.9rem; font-family:'Poppins', sans-serif; transition:transform var(--transition), box-shadow var(--transition), background var(--transition); cursor:pointer; }
.btn:hover { transform:translateY(-2px); box-shadow:0 6px 18px var(--gold-shadow); }
.btn-primary        { background:var(--gold); color:#fff; }
.btn-primary:hover  { background:var(--gold-deep); }
.btn-outline        { background:transparent; color:#fff; border:2px solid rgba(255,255,255,.65); }
.btn-outline:hover  { background:rgba(255,255,255,.12); border-color:#fff; }
.btn-cart-outline   { background:transparent; border:2px solid var(--gold); color:var(--gold-deep); }
.btn-cart-outline:hover{ background:var(--gold-light); }

#site-footer { background:var(--gold-light); border-top:1px solid var(--gold-border); padding:2.5rem 0 1.5rem; margin-top:4rem; position:relative; }
#site-footer::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%); }
.footer-grid { display:grid; gap:2rem; grid-template-columns:repeat(auto-fit, minmax(180px,1fr)); justify-content:center; justify-items:center; margin-bottom:2rem; }
.footer-col { text-align:center; display:flex; flex-direction:column; align-items:center }
.footer-col h4 { font-size:.84rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--gold-deep); margin-bottom:.8rem; width:100%; font-family:'Poppins', sans-serif; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:.38rem; align-items:center; padding:0; width:100%; }
.footer-col ul li a { font-size:.87rem; color:var(--text-muted); transition:color var(--transition), padding-left .2s ease; }
.footer-col ul li a:hover { color:var(--gold-deep); padding-left:4px; }
.footer-grandchild a { padding-left:1rem!important; font-size:.82rem!important }
.footer-grandchild a::before { content:'↳ '; color:var(--gold); }
.footer-bottom { border-top:1px solid var(--gold-border); padding:1.25rem 10rem 1rem; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:.75rem; font-size:.82rem; color:var(--text-muted); }
.footer-brand { display:flex; align-items:center; gap:.5rem }
.footer-logo  { height:40px; width:auto }

#cart-icon { position:fixed; bottom:15px; right:16px; z-index:1000; background:var(--gold-light); display:flex; flex-direction:column; align-items:center; border-radius:5px; box-shadow:0 8px 28px rgb(191 191 192 / 45%); cursor:pointer; border:1px solid rgba(201,168,64,.4); min-width:52px; transition:transform .6s cubic-bezier(.68,-.55,.265,1.55), opacity .3s ease; }
#cart-icon.cart-empty  { transform:translateX(calc(100% - 12px)); opacity:.8 }
#cart-icon.cart-empty:hover { transform:translateX(calc(100% - 25px)); opacity:1 }
#cart-icon.cart-active { transform:translateX(0); opacity:1 }
#cart-icon:hover { transform:translateY(-4px) scale(1.03); border-color:var(--gold); }
#cart-icon.cart-empty:hover { transform:translateX(calc(100% - 25px)); }
.cart-icon-left { display:flex; flex-direction:column; align-items:center; gap:4px; padding:12px 8px 8px; background:rgba(255,255,255,.04); width:100%; }
.cart-icon-left svg  { color:var(--gold); stroke-width:2.5px; width:20px; height:20px }
#cart-count          { font-size:1.05rem; font-weight:700; color:#000; line-height:1 }
.cart-icon-divider   { width:32px; height:1px; background:rgba(201,168,64,.28); margin:0 }
.cart-icon-right     { padding:8px 4px 14px; width:100%; text-align:center }
#cart-total-float    { font-size:.8rem; font-weight:800; color:var(--gold); line-height:1.1; display:block }

#cart-modal { position:fixed; inset:0; z-index:2000; display:none; justify-content:flex-end; }
.cart-panel { width:100%; max-width:420px; background:var(--bg); height:100%; padding:2rem; display:flex; flex-direction:column; overflow-y:auto; border-left:2px solid var(--gold); box-shadow:-8px 0 40px rgba(0,26,77,.3); }
.cart-panel-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:1.5rem; padding-bottom:1rem; border-bottom:1px solid var(--gold-border); }
.cart-panel-title  { color:var(--gold-deep); font-weight:800; font-size:1.4rem; text-transform:uppercase }
.cart-close-btn { font-size:1.6rem; color:var(--text-muted); line-height:1; background:none; border:1px solid var(--gold-border); cursor:pointer; width:36px; height:36px; border-radius:4px; display:flex; align-items:center; justify-content:center; transition:color var(--transition), border-color var(--transition), background var(--transition); }
.cart-close-btn:hover { color:var(--gold-deep); border-color:var(--gold); background:var(--gold-light); }
.cart-items-scroll { flex:1; overflow-y:auto; padding-right:5px }
.coupon-section  { margin-top:1rem }
.coupon-row      { display:flex; gap:.5rem }
.coupon-input { flex:1; min-width:0; width:100%; padding:.7rem .9rem; border:1px solid var(--gold-border); outline:none; font-size:.9rem; border-radius:var(--radius); transition:border-color .2s, box-shadow .2s; font-family:inherit; text-transform:uppercase; letter-spacing:.05em; }
.coupon-input:focus { border-color:var(--gold); box-shadow:0 0 0 3px rgba(201,168,64,.12); }
.coupon-btn { padding:.7rem 1.2rem; background:var(--navy); color:var(--gold-light); font-weight:700; font-size:.85rem; border-radius:var(--radius); transition:background .2s; border:none; cursor:pointer; white-space:nowrap; font-family:'Poppins', sans-serif; }
.coupon-btn:hover { background:#002266 }
.coupon-applied { display:flex; align-items:center; justify-content:space-between; background:#d1fae5; color:#065f46; border:1px solid #6ee7b7; padding:.5rem .75rem; border-radius:var(--radius); font-size:.85rem; font-weight:600; margin-top:.5rem; }
.coupon-remove { background:none; border:none; color:#dc2626; cursor:pointer; font-weight:700; font-size:1rem }
.coupon-error  { background:#fef2f2; color:#991b1b; border:1px solid #fca5a5; padding:.5rem .75rem; border-radius:var(--radius); font-size:.85rem; margin-top:.5rem; }
.discount-row  { color:#059669; font-weight:700 }
.input-invalid { border-color:#dc2626!important; background:#fff7f7 }
.input-invalid:focus { border-color:#dc2626!important; box-shadow:0 0 0 3px rgba(220,38,38,.1)!important }
.field-error-msg { color:#dc2626; font-size:.78rem; font-weight:600; margin-top:.2rem }
.card-btn-mobile { display:none }

.lx-overlay { position:fixed; inset:0; background: var(--blur-bg); backdrop-filter:blur(6px); z-index:9999; display:flex; align-items:center; justify-content:center; padding:1rem; opacity:0; transition:opacity .3s ease; }
.lx-overlay.lx-show { opacity:1; }
.lx-modal { background:var(--bg); border-radius:var(--radius); border:1.5px solid var(--gold-border); border-top:3px solid var(--gold); width:100%; max-width:380px; padding:2rem 2rem 1.75rem; text-align:center; box-shadow:0 20px 60px rgba(0,26,77,.35); transform:translateY(16px) scale(.97); transition:transform .32s cubic-bezier(.22,1,.36,1); }
.lx-overlay.lx-show .lx-modal { transform:translateY(0) scale(1); }
.lx-icon { width:52px; height:52px; margin:0 auto 1rem; background:var(--gold-light); border:1px solid var(--gold-border); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.5rem; }
.lx-title { font-family:'Playfair Display', serif; font-size:1.25rem; font-weight:800; color:var(--gold-deep); text-transform:uppercase; letter-spacing:.06em; margin-bottom:.65rem; }
.lx-body { color:var(--text); font-size:.9rem; line-height:1.65; margin-bottom:1.5rem; }
.lx-actions { display:flex; gap:.65rem; }
.lx-btn { flex:1; padding:.75rem .5rem; font-weight:700; font-size:.88rem; font-family:'Poppins', sans-serif; letter-spacing:.04em; cursor:pointer; transition:background .2s, transform .15s, box-shadow .2s; border-radius:var(--radius); }
.lx-btn:hover { transform:translateY(-1px); }
.lx-btn-cancel { background:var(--bg); color:var(--text-muted); border:1.5px solid var(--gold-border); }
.lx-btn-cancel:hover { background:var(--gold-light); color:var(--gold-deep); border-color:var(--gold); }
.lx-btn-confirm { background:var(--gold); color:#fff; border:1.5px solid var(--gold); box-shadow:0 4px 14px var(--gold-shadow); }
.lx-btn-confirm:hover { background:var(--gold-deep); border-color:var(--gold-deep); box-shadow:0 6px 20px var(--gold-shadow); }
/* Luxury Modal Close Button Styles */
.lx-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 0;
  z-index: 10;
}
.lx-close-btn:hover {
  background: var(--gold-border);
  transform: rotate(90deg);
}
.lx-close-btn svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.2;
}

/* ── Suggested Products Section ── */
.suggested-sec{padding:2.5rem 0;border-top:1px solid var(--gold-border);margin-top:2.5rem;}
.sug-header{display:flex;align-items:center;gap:.5rem;margin-bottom:1.25rem;}
.sug-eyebrow{font-size:.72rem;font-weight:800;text-transform:uppercase;letter-spacing:.15em;color:var(--gold);font-family:'Poppins',sans-serif;}
.sug-carousel-wrap{position:relative;overflow:hidden;}
.sug-track{display:flex;transition:transform .5s cubic-bezier(.4,0,.2,1);will-change:transform;}
.sug-slide{min-width:100%;}
.sug-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:.65rem;}
.sug-card{display:flex;align-items:center;gap:.75rem;background:#fff;border:1px solid var(--gold-border);border-radius:8px;padding:.65rem .75rem;text-decoration:none;color:inherit;transition:box-shadow .25s ease,border-color .25s ease;cursor:pointer;overflow:hidden; margin-bottom:5px;}
.sug-card:hover{box-shadow:0 4px 20px var(--gold-shadow);border-color:var(--gold);}
.sug-card-img{width:72px;height:72px;flex-shrink:0;border-radius:6px;overflow:hidden;background:var(--gold-light);}
.sug-card-img img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .35s ease;}
.sug-card:hover .sug-card-img img{transform:scale(1.07);}
.sug-card-body{flex:1;min-width:0;}
.sug-card-title{font-size:.83rem;font-weight:700;color:var(--text);line-height:1.35;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;margin-bottom:.22rem;font-family:'Montserrat',sans-serif;}
.sug-card-rating-row{font-size:.7rem;color:var(--text-muted);margin-bottom:.2rem;line-height:1.3;}
.sug-card-price{font-size:.82rem;font-weight:700;color:var(--navy);font-family:'Montserrat',sans-serif;}
.sug-nav{display:flex;align-items:center;justify-content:center;gap:.75rem;margin-top:1.25rem;flex-wrap:wrap;}
.sug-arrow{width:34px;height:34px;border:1.5px solid var(--gold-border);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.1rem;color:var(--gold-deep);background:#fff;cursor:pointer;transition:all .2s ease;flex-shrink:0;line-height:1;}
.sug-arrow:hover{background:var(--gold);color:#fff;border-color:var(--gold);transform:scale(1.1);}
.sug-arrow:disabled{opacity:.3;cursor:not-allowed;pointer-events:none;}
.sug-dots{display:flex;gap:.4rem;align-items:center;}
.sug-dot{width:7px;height:7px;border-radius:50%;background:var(--gold-border);border:none;cursor:pointer;transition:background .25s,transform .25s ease;}
.sug-dot.active{background:var(--gold);transform:scale(1.5);}
@media(max-width:600px){.sug-grid{grid-template-columns:1fr 1fr;}.sug-card-img{width:64px;height:64px;}}

@media(max-width:768px) {
    .item-hero     { grid-template-columns:1fr }
}

@media(max-width:768px) {
  .nav-links     { display:none }
  .hamburger     { display:flex }
  .nav-inner     {justify-content:space-between;}
  .item-hero     { grid-template-columns:1fr }
  .item-img      { aspect-ratio:1/1 }
  .card-btn-cart { display:none!important }
  .card-btn-view { display:flex!important }
  .card-quick-add{ display:none!important }
  .img-zoom-result{ display:none!important }
  .footer-grid   { grid-template-columns:repeat(4,1fr)!important; gap:.75rem .5rem; align-items:start; }
  .footer-col h4 { font-size:.7rem!important; letter-spacing:0; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
  .footer-col ul li a { font-size:.65rem!important; line-height:1.2; display:block; }
  .footer-grandchild a{ padding-left:.3rem!important; font-size:.6rem!important; }
  #site-footer .container{ padding-left:.5rem; padding-right:.5rem; }
  .footer-bottom { padding:1.25rem 2rem 1rem; }
  .bs-grid       { grid-template-columns:repeat(2,1fr) !important; }
  .hcs-top       { flex-direction:column; }
  .hcs-title-box { max-width:100%; }
  .hcs-filters   { justify-content:flex-start; }
  #toast-container{top:4.5rem; right:1rem; left:1rem; }
  .k-toast       { min-width:unset; max-width:100%; }
  .img-zoom-result{ left:0!important; top:0!important; width:100%!important; height:100%!important; }
  .img-zoom-lens { display:none!important; }
}
@media(max-width:768px) {
  .card-btn-mobile { display:flex; align-items:center; justify-content:center; width:100%; background:transparent; color:var(--gold); font-weight:700; font-size:.85rem; padding:.75rem 1rem; text-transform:uppercase; letter-spacing:.08em; border-top:1px solid var(--gold-border); transition:all .25s ease; text-decoration:none; margin-top:auto; }
  .card-btn-mobile:active { background:var(--gold); color:#fff; }
  .card { padding-bottom:0 }
}
@media(max-width:480px) {
  .hero-arrow    { font-size:3.1rem; }
  .hero-prev { left:0.3rem }
  .hero-next { right:0.3rem }
  .grid          { grid-template-columns:repeat(2,1fr) }
  .card-body     { padding:.6rem .65rem }
  .card-title    { font-size:.72rem; }
  .card-price    { font-size:11.5px; }
  .card-old-price{ font-size:9px; }
  .card-stock    { font-size:.58rem; padding:.12rem .28rem; }
  .card-stars    { font-size:.7rem; }
  .card-rating-text{ font-size:.56rem; }
  .card-footer   { padding:.45rem .55rem .6rem; gap:.3rem; }
  .card-btn-cart,.card-btn-view{ font-size:.75rem; padding:.45rem .2rem; }
  .bs-grid       { grid-template-columns:repeat(2,1fr) !important; }
  .hcs-grid      { grid-template-columns:repeat(2,1fr); }
  .footer-logo  { height:35px;}
}
@media(max-width:380px) {
    .grid{ grid-template-columns:1fr }
    .item-action-grid{grid-template-columns:1fr}
    .btn-whatsapp span{display:block;}
}


/* ══════════════════════════════════════
   BLOG PAGE STYLES
   ══════════════════════════════════════ */
.blog-hero-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/7;
  max-height: 480px;
  overflow: hidden;
  background: #0a0a0a;
  border-radius: var(--radius);
}
.blog-hero-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .88;
  transition: transform 8s ease;
}
.blog-hero-wrap:hover img { transform: scale(1.03); }
.blog-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.18) 55%, transparent 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.2rem, 4vw, 2.5rem);
  pointer-events: none;
}
.blog-cat-badge {
  display: inline-block;
  background: var(--gold); color: #fff;
  font-size: .68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  padding: .2rem .65rem; border-radius: 3px;
  margin-bottom: .65rem; width: fit-content;
}
.blog-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 800; color: #fff;
  line-height: 1.2; max-width: 720px;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
  margin-bottom: .5rem;
}
.blog-meta-bar {
  display: flex; align-items: center;
  flex-wrap: wrap; gap: .5rem 1.1rem;
  font-size: .8rem; color: var(--text-muted);
  padding: 1.1rem 0 1.25rem;
  border-bottom: 1px solid var(--gold-border);
  margin-bottom: 1.5rem;
}
.blog-meta-bar .bm-item {
  display: flex; align-items: center; gap: .3rem;
}
.blog-meta-bar .bm-sep {
  color: var(--gold-border); font-size: .9em;
}
.blog-read-time {
  background: var(--gold-light); color: var(--gold-deep);
  border: 1px solid var(--gold-border);
  padding: .15rem .55rem; border-radius: 20px;
  font-size: .72rem; font-weight: 700;
}
.blog-content-wrap {
  max-width: 940px; margin: 0 auto;
}
.blog-content-wrap .item-content {
  border-top: none; padding-top: 0;
  font-size: 1.02rem; line-height: 1.9;
  color: #2a2a2a;
}
.blog-content-wrap .item-content h1,
.blog-content-wrap .item-content h2 {
  font-family: 'Playfair Display', serif;
  margin: 2rem 0 .75rem; color: var(--navy);
}
.blog-content-wrap .item-content h2 {
  font-size: 1.45rem; font-weight: 800;
  padding-bottom: .45rem;
  border-bottom: 2px solid var(--gold-border);
}
.blog-content-wrap .item-content h3 {
  font-size: 1.1rem; font-weight: 700;
  margin: 1.5rem 0 .5rem; color: var(--gold);
}
.blog-content-wrap .item-content p { margin-bottom: 1.1rem; }
.blog-content-wrap .item-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  background: var(--gold-light);
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-deep);
}
.blog-content-wrap .item-content img {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  margin: 1.5rem auto;
}
.blog-share-bar {
  display: flex; align-items: center; gap: .75rem;
  flex-wrap: wrap;
  padding: 1.25rem 1.5rem;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  margin: 2.5rem 0 0;
}
.blog-share-label {
  font-size: .78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--gold-deep); flex-shrink: 0;
}
.blog-share-btn {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .4rem .9rem;
  border-radius: 4px; font-size: .8rem; font-weight: 700;
  cursor: pointer; border: none; transition: all .2s ease;
  font-family: 'Poppins', sans-serif; text-decoration: none;
}
.blog-share-btn.copy {
  background: var(--navy); color: var(--gold-light);
}
.blog-share-btn.copy:hover { background: #002266; }
.blog-share-btn.fb {
  background: #1877f2; color: #fff;
}
.blog-share-btn.fb:hover { background: #166fe5; }
.blog-share-btn.wa {
  background: #25d366; color: #fff;
}
.blog-share-btn.wa:hover { background: #1da851; }
.blog-related-sec {
  padding: 2.5rem 0 1rem;
  border-top: 1px solid var(--gold-border);
  margin-top: 3rem;
}
.blog-related-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 800;
  margin-bottom: 1.25rem; color: var(--text);
  position: relative; padding-bottom: .45rem;
}
.blog-related-title::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 36px; height: 2.5px;
  background: var(--gold); border-radius: 2px;
}
.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.blog-rel-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--gold-border);
  border-radius: 6px; overflow: hidden;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  text-decoration: none; color: inherit;
  background: #fff;
}
.blog-rel-card:hover {
  box-shadow: 0 6px 24px var(--gold-shadow);
  transform: translateY(-3px); border-color: var(--gold);
}
.blog-rel-card-img {
  aspect-ratio: 16/9; overflow: hidden;
  background: var(--gold-light);
}
.blog-rel-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s ease;
}
.blog-rel-card:hover .blog-rel-card-img img { transform: scale(1.06); }
.blog-rel-card-body {
  padding: .85rem 1rem; flex: 1;
  display: flex; flex-direction: column; gap: .25rem;
}
.blog-rel-card-meta {
  font-size: .68rem; color: var(--gold-deep);
  font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
}
.blog-rel-card-title {
  font-size: .9rem; font-weight: 700;
  line-height: 1.35; color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}

/* ══════════════════════════════════════
   STATIC PAGE STYLES
   ══════════════════════════════════════ */
.static-page-wrap { max-width: 820px; margin: 0 auto; }
.static-page-header {
  text-align: center;
  padding: 3rem 1rem 2.5rem;
  border-bottom: 1px solid var(--gold-border);
  margin-bottom: 2rem;
}
.static-page-icon {
  font-size: 2.8rem; margin-bottom: .75rem;
  display: block; line-height: 1;
}
.static-page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; color: var(--navy);
  margin-bottom: .5rem;
}
.static-page-subtitle {
  font-size: 1rem; color: var(--text-muted);
  max-width: 560px; margin: 0 auto;
  line-height: 1.6;
}
.static-page-body {
  background: #fff;
  border-radius: 0 0 8px 8px;
  font-size: 1rem; line-height: 1.85;
  color: #2a2a2a;
}
.static-page-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 800;
  color: var(--navy); margin: 2rem 0 .65rem;
  padding-bottom: .4rem;
  /*border-bottom: 1.5px solid var(--gold-border);*/
}
.static-page-body h3 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--gold-deep); margin: 1.5rem 0 .45rem;
}
.static-page-body p { margin-bottom: 1rem; }
.static-page-body ul, .static-page-body ol {
  margin: .5rem 0 1rem 1.75rem;
}
.static-page-body li { margin-bottom: .4rem; }
.static-page-body a {
  text-decoration: none;
  text-decoration-style: dotted;
}
/*.static-page-body a:hover { color: var(--gold); }*/
.static-page-body blockquote {
  border-left: 4px solid var(--gold);
  background: var(--gold-light);
  padding: 1rem 1.5rem; margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
  font-style: italic; color: var(--gold-deep);
}
.static-page-body table {
  width: 100%; border-collapse: collapse; margin: 1rem 0;
}
.static-page-body th, .static-page-body td {
  border: 1px solid var(--gold-border);
  padding: .65rem .9rem; text-align: left;
}
.static-page-body th {
  background: var(--gold-light); font-weight: 700; color: var(--navy);
}
.static-page-body img {
  border-radius: 8px; margin: 1rem 0;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.static-page-contact-bar {
  display: flex; flex-wrap: wrap;
  gap: .75rem; margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gold-border);
  justify-content: center;
}
.static-page-contact-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .65rem 1.4rem;
  background: var(--gold); color: var(--bg);
  border-radius: var(--radius); font-weight: 700;
  font-size: .88rem; cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s;
  font-family: 'Poppins', sans-serif;
}
.static-page-contact-btn:hover {
  background: var(--gold-deep); transform: translateY(-3px);
}
@media(max-width: 768px) {
  .blog-hero-wrap { aspect-ratio: 16/9; }
  .blog-meta-bar  { gap: .4rem .75rem; }
  .blog-related-grid { grid-template-columns: repeat(2, 1fr); }
  /*.static-page-body { padding: 1.5rem 1.25rem; }*/
}
@media(max-width: 480px) {
  .blog-related-grid { grid-template-columns: 1fr; }
}

/* ── Product Share Button ── */
.prod-share-wrap{position:relative;display:inline-flex;align-items:center;vertical-align:middle;margin-left:.5rem;flex-shrink:0;}
.prod-share-btn{display:inline-flex;align-items:center;justify-content:center;border-radius:4px;border:1.5px solid var(--gold-border);background:var(--gold-light);color:var(--gold-deep);cursor:pointer;transition:all .2s ease;flex-shrink:0;padding:1px 6px; margin-left:25px;}
.prod-share-btn:hover{background:var(--gold);color:#fff;border-color:var(--gold);box-shadow:0 3px 12px var(--gold-shadow);}
.prod-share-btn svg{width:13px;height:13px;flex-shrink:0;}
.prod-share-dropdown{position:absolute;top:calc(100% + 9px);left:-80px;background:#fff;border:1px solid var(--gold-border);border-top:2.5px solid var(--gold);border-radius:8px 0px 8px 8px;box-shadow:0 10px 32px rgba(0,26,77,.18);min-width:192px;padding:.35rem 0;z-index:600;display:none;animation:dropIn .2s ease forwards;}
.prod-share-dropdown.psd-open{display:block;}
.prod-share-option{display:flex;align-items:center;gap:.65rem;padding:.52rem 1rem;font-size:.82rem;font-weight:600;cursor:pointer;transition:background .15s,color .15s;border:none;background:none;width:100%;font-family:'Poppins',sans-serif;color:var(--text);text-decoration:none;text-align:left;}
.prod-share-option:hover{background:var(--gold-light);color:var(--gold-deep);}
.prod-share-option:last-child{ margin-top:.2rem;padding-top:.65rem;}
.sh-ico{width:24px;height:24px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.8rem;flex-shrink:0;line-height:1;}
.sh-copy{background:#f3f4f6;color:#374151;}
.sh-wa{background:#25d366;color:#fff;}
.sh-fb{background:#1877f2;color:#fff;}
.sh-msg{background:linear-gradient(135deg,#0084ff 0%,#a334fa 100%);color:#fff;}



/* ════════════════════════════════════════════════
   ALL RESPONSIVE GRIDS (TABLET & MOBILE FIX)
   ════════════════════════════════════════════════ */

/* ১. Tablet & iPad (1024px) */
@media (max-width: 1024px) {
  .bs-grid, .hcs-grid, .grid { grid-template-columns: repeat(3, 1fr) !important; }
  .sug-grid { grid-template-columns: repeat(2, 1fr) !important; }
  
  .nav-links { gap: 0.75rem; }
  .nav-links a, .nav-links button.nav-btn { font-size: 0.78rem; padding: 0.4rem 0.5rem; }
  .item-hero { gap: 1.5rem; }
  .footer-bottom { padding: 1.25rem 2rem 1rem; }
  .footer-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
}


@media (min-width: 769px) and (max-width: 1023px) {
    /*.item-hero { grid-template-columns: 1fr;}*/
    .item-title {font-size:20px;}
    .item-meta-box {gap:0.4rem;}
    .item-price {font-size:20px;};
    .size-label {margin-bottom:0.2rem;}
    .size-btn {padding:0.2rem 1rem;}
    .btn {padding:0.4rem 1.0rem;}
    .item-hero {}
}


/* ২. Mobile Portrait & Landscape (768px) */
@media(max-width: 768px) {
  .bs-grid, .hcs-grid, .grid { grid-template-columns: repeat(2, 1fr) !important; }
  .nav-links { display: none; }
  .hamburger { display: flex; }   
}

/* ৩. Small Mobile (480px) */
@media(max-width: 480px) {
  .bs-grid, .hcs-grid, .grid { grid-template-columns: repeat(2, 1fr) !important; }
}


@media(max-width: 410px) {
  .sug-grid { grid-template-columns: repeat(1, 1fr) !important; }
}


/* ৪. Extra Small Mobile (360px) */
@media(max-width: 360px) {
  .bs-grid, .hcs-grid, .grid { grid-template-columns: repeat(2, 1fr) !important; }
}





/* ===== FLOATING HELP ===== */
.floating-help {
  position: fixed; bottom: 28px; left: 24px;
  z-index: 999; display: flex; flex-direction: column;
  align-items: flex-start; gap: 10px;
}
.floating-help-toggle {
  width: 43px; height: 43px; border-radius: 50%;
  background: var(--gold); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(201,168,64,.45);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  flex-shrink: 0; position: relative;
}
.floating-help-toggle:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(201,168,64,.55); }
.floating-help-toggle svg {
  width: 20px; height: 20px; color: #fff;
  transition: opacity 0.2s ease, transform 0.3s ease; position: absolute;
}
.fh-icon-help  { opacity: 1; transform: rotate(0deg); }
.fh-icon-close { opacity: 0; transform: rotate(-90deg); }
.floating-help.active .fh-icon-help  { opacity: 0; transform: rotate(90deg); }
.floating-help.active .fh-icon-close { opacity: 1; transform: rotate(0deg); }
.fh-menu {
  background: #fff; border: 1px solid var(--gold-border);
  border-radius: 10px; padding: 14px 12px 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,.12); width: 224px;
  display: flex; flex-direction: column; gap: 4px;
  opacity: 0; transform: translateY(12px) scale(0.95);
  transform-origin: bottom left; pointer-events: none;
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  position: absolute; bottom: 60px;
}
.floating-help.active .fh-menu { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.fh-menu-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; padding: 0 4px; }
.fh-menu-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin: 0; font-family: 'Poppins', sans-serif; }
.fh-close-btn { width: 26px; height: 26px; border-radius: 50%; background: var(--gold-light); border: 1px solid var(--gold-border); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s ease, transform 0.2s ease; flex-shrink: 0; }
.fh-close-btn:hover { background: var(--gold-border); transform: rotate(90deg); }
.fh-close-btn svg { width: 13px; height: 13px; color: var(--gold-deep); }
.fh-item {
  display: flex; align-items: center; gap: 11px; padding: 10px;
  border-radius: 12px; border: none; background: transparent;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  text-align: left; width: 100%;
}
.fh-item:hover { background: var(--gold-light); transform: translateX(3px); }
.fh-item-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fh-item-icon svg { width: 18px; height: 18px; }
.fh-wa  { background: rgba(37,211,102,.12); color: #25D366; }
.fh-ms  { background: rgba(0,132,255,.12);  color: #0084FF; }
.fh-cp  { background: rgba(201,168,64,.12); color: var(--gold-deep); }
.fh-item-text  { display: flex; flex-direction: column; gap: 5px; }
.fh-item-title { font-size: 13px; font-weight: 600; color: var(--text); font-family: 'Poppins', sans-serif; line-height: 1; }
.fh-item-sub   { font-size: 10px; color: #aaa; font-family: 'Poppins', sans-serif; line-height: 1; }

/* ===== COMPLAINT MODAL ===== */
.complaint-overlay {
  position: fixed; inset: 0;
  background: var(--blur-bg);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: none; align-items: center; justify-content: center; padding: 1rem;
}
.complaint-overlay.show { display: flex; }
.complaint-modal {
  background: var(--bg); border: 1.5px solid var(--gold-border);
  border-top: 3px solid #c0392b; width: 100%; max-width: 460px;
  max-height: 90vh; overflow-y: auto; border-radius: 6px;
  padding: 2rem; box-shadow: 0 20px 60px rgba(0,26,77,.35);
  position: relative;
}
.complaint-modal h3 { font-family: 'Playfair Display', serif; color: #c0392b; margin-bottom: .5rem; font-size: 1.3rem; text-align:center;}
.complaint-modal p  { color: var(--text-muted); font-size: .85rem; margin-bottom: 1.2rem; text-align:center;}
.complaint-close {
  position: absolute; top: 12px; right: 14px;
  width: 30px; height: 30px; border-radius: 50%;
  background: #f5f5f5; border: 1px solid #ddd;
  cursor: pointer; font-size: 16px; color: #999;
  display: flex; align-items: center; justify-content: center;
  transition: .25s;
}
.complaint-close:hover { background: var(--gold-light); color: var(--text); transform: rotate(90deg); }
.complaint-field { margin-bottom: 14px; }
.complaint-field label { display: block; font-size: .8rem; font-weight: 600; color: var(--text-muted); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .05em; }
.complaint-field input,
.complaint-field textarea { width: 100%; padding: 10px 12px; border: 1.5px solid var(--gold-border); border-radius: var(--radius); font-family: 'Poppins', sans-serif; font-size: .9rem; background: var(--gold-light); outline: none; transition: border-color .2s; }
.complaint-field input:focus,
.complaint-field textarea:focus { border-color: var(--gold); background: #fff; }
.complaint-submit {
  width: 100%; padding: 12px; background: #c0392b; color: #fff;
  border: none; border-radius: var(--radius); font-family: 'Poppins', sans-serif;
  font-size: .95rem; font-weight: 700; cursor: pointer; transition: .25s; letter-spacing: .04em;
}
.complaint-submit:hover { background: #a93226; }
.complaint-submit:disabled { background: #ccc; cursor: not-allowed; }
.upload-preview { font-size: .78rem; color: var(--gold-deep); margin-top: 5px; line-height: 1.5; }

@media (max-width: 768px) { .floating-help { bottom: 14px; left: 14px; } }

/* ===== PAYMENT METHOD CARDS ===== */
.pay-method-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 0.5rem; margin-bottom: 1.5rem; }
.pay-card { position: relative; border: 2px solid var(--gold-border); border-radius: 8px; padding: 1.2rem 1rem; cursor: pointer; transition: all 0.3s ease; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: #fff; user-select: none; }
.pay-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.pay-card.active { border-color: var(--gold-deep); background: var(--gold-light); box-shadow: 0 4px 15px var(--gold-shadow); transform: translateY(-2px); }
.pay-card.active::before { content: '✓'; position: absolute; top: 10px; right: 10px; background: var(--gold-deep); color: #fff; width: 22px; height: 22px; border-radius: 50%; font-size: 13px; font-weight: bold; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 6px rgba(139,107,21,0.4); }
.pay-card.disabled { opacity: 0.65; cursor: not-allowed; background: #f9f9f9; filter: grayscale(80%); }
.pay-icon { font-size: 2.2rem; margin-bottom: 0.4rem; line-height: 1; }
.pay-title { font-weight: 800; color: var(--navy); font-size: 0.95rem; margin-bottom: 0.2rem; font-family: 'Poppins', sans-serif; }
.pay-desc { font-size: 0.75rem; color: var(--text-muted); line-height: 1.3; font-weight: 500; }
.pay-badge { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: #dc2626; color: white; font-size: 0.65rem; padding: 3px 10px; border-radius: 12px; font-weight: 800; letter-spacing: 0.05em; white-space: nowrap; box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4); text-transform: uppercase;}
@media (max-width: 480px) { .pay-method-grid { grid-template-columns: 1fr; gap: 1.2rem; } }

/* ══════════════════════════════════════
   PAGE TYPE CARD — Special Design
   ══════════════════════════════════════ */

.card--page:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px var(--gold-shadow);
}

.card--page .card-type-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: var(--gold-light);
  color: var(--gold-deep);
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .18rem .6rem;
  border-radius: 3px;
  width: fit-content;
  margin-bottom: .3rem;
}
.card--page .card-title {
  font-size: .88rem;
  -webkit-line-clamp: 2;
  color: var(--navy);
  font-weight: 700;
}
.card--page .card-title:hover {color:var(--gold-deep);}
.card--page .card-excerpt {
  font-size: .76rem;
  color: var(--text-muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: .25rem;
}
.card--page .card-read-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  width: 90%;
  margin: auto auto .75rem;
  padding: .5rem .75rem;
  background: var(--gold);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background .2s, transform .15s;
  font-family: 'Poppins', sans-serif;
}
.card--page .card-read-btn:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .card--page .card-read-btn { width: 92%; }
}

/* Blog card Read button */
.card--blog .card-read-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  width: 90%;
  margin: auto auto .75rem;
  padding: .5rem .75rem;
  background: var(--gold);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background .2s, transform .15s;
  font-family: 'Poppins', sans-serif;
}
.card--blog .card-read-btn:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
}

/* Blog card "price" (excerpt) 2-line limit */
.card--blog .card-price {
  display: -webkit-box;
  -webkit-line-clamp: 2;       /* এখানে 2 মানে সর্বোচ্চ ২ লাইন দেখাবে */
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  
  /* Page-এর মতো সুন্দর দেখানোর জন্য কিছু অতিরিক্ত স্টাইল (ঐচ্ছিক) */
  font-size: .76rem;
  color: var(--text-muted);
  line-height: 1.55;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}


@media (max-width: 768px) {
  .home-blog-section .grid .card:nth-child(n+5) {
      display: none !important;
  }
}

@media (min-width: 1025px) {
  .home-blog-section .grid {
      grid-template-columns: repeat(6, 1fr) !important;
  }
}

/*.py-3{*/
/*    padding-left: 1.5rem;*/
/*    padding-right: 1.5rem;*/
/*}*/

/* ══════════════════════════════════════════════════════════════
   SOCIAL MEDIA FOOTER BUTTONS — OUTLINE STYLE WITH REAL LOGOS
   ══════════════════════════════════════════════════════════════ */
.footer-social-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* Hover Effect: Background fill + Icon color change */ 
.social-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  border-radius: 1px;
  transform: scale(0);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}

.social-btn:hover {
  color: #fff;
  border-color: var(--gold-deep);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--gold-shadow);
}

.social-btn:hover::before {
  transform: scale(1);
}

.social-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  transition: fill 0.3s ease;
}

@media (max-width: 480px) {
  .footer-social-wrap {gap: 1.2rem;}
  .social-btn {width: 35px; height: 35px; }
  .social-btn svg {width: 20px;height: 20px;}
}

/* ══════════════════════════════════════════════════════
   TRUST BADGES GRID 2x2 — ALWAYS SAME (All Devices)
   ══════════════════════════════════════════════════════ */
.trust-badges-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;  /* ✅ সবসময় 2 columns */
  gap: 0.65rem;
  padding-top: 1rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem;
  background: linear-gradient(135deg, var(--gold-light) 0%, #fef9e7 100%);
  border: 1.5px solid var(--gold-border);
  border-radius: 0px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-deep);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 2px 6px rgba(201, 168, 64, 0.12);
  min-height: 50px;
  cursor: default;
}


.trust-badge:hover {
  box-shadow: 0 6px 16px var(--gold-shadow);
  transform: translateX(4px);
  border-color: var(--gold);
}

.trust-badge-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
}

.trust-badge-text {
  flex: 1;
  line-height: 1.3;
  word-break: break-word;
  font-size:12px;
}


/* ===== SMART GO TO TOP BUTTON ===== */
#go-to-top {
  position: fixed;
  bottom: 22px;
  left: 50%;
  z-index: 998;
  background: var(--gold);
  color: var(--gold-light);
  border: 1.5px solid var(--gold);
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 28px rgba(0, 26, 77, 0.35);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 30px); 
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#go-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

#go-to-top:hover {
  background: var(--gold-deep);
  Border:1px solid var(--gold);
  color: #fff;
  transform: translate(-50%, -4px);
  box-shadow: 0 12px 32px rgba(201, 168, 64, 0.45);
}

#go-to-top svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
  transition: transform 0.3s ease;
}

#go-to-top:hover svg {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  #go-to-top {
    bottom: 20px;
    padding: 7px 14px;
    font-size: 0.75rem;
  }
}

/* Style.css এ শেষে যোগ করুন */
.omf-slide[data-type="notice"] .omf-icon-wrap {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.omf-slide[data-type="notice"] .omf-title {
  font-size: 15px;
  font-weight: 900;
  color: #dc2626;
}
  
  
   
   /* ══════════════════════════════════════════════════════════════
   TRUST BADGES — LEFT ICON + RIGHT TEXT HORIZONTAL LAYOUT
   ══════════════════════════════════════════════════════════════ */
.trust-section {
  /*padding: 1rem 0;*/
  /*margin-top: 2.5rem;*/
  padding-top: 2.5rem;
  border-top:2px solid var(--gold-deep);
  position: relative;
  /*overflow: hidden;*/
}

.trust-container {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  padding: 0 1rem;
}

.trust-grid {
  display: grid;
  /* Desktop: 2 columns, Tablet: 2 columns, Mobile: 1 column */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.trust-card {
  background: #fff;
  border: 1.5px solid var(--gold-border);
  border-radius: 6px;
  padding: 0.85rem 1.25rem;
  display: flex;
  flex-direction: row;        /* ✅ HORIZONTAL LAYOUT */
  /*align-items: flex-start;*/
  align-items:center;
  gap: 1.2rem;                /* Icon এবং text এর মধ্যে gap */
  box-shadow: inset 0 2px 8px var(--gold-shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, var(--gold-light) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.trust-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 8px 28px var(--gold-shadow);
}

.trust-card:hover::before { 
  opacity: 0.3; 
}

/* ── LEFT SIDE: ICON ── */
.trust-card-icon {
  font-size: 1.2rem;                    /* ✅ বড় emoji */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.55rem;
  background: linear-gradient(135deg, var(--gold-light) 0%, #fef3c7 100%);
  border-radius: 4px;
  border: 1px solid rgba(201, 168, 64, 0.3);
  flex-shrink: 0;                     /* ✅ এটি width কমবে না */
  /*width: 60px;*/
  /*height: 60px;*/
  line-height: 1;
}

/* ── RIGHT SIDE: TEXT CONTENT ── */
.trust-card-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.trust-card-number {
  font: 900 1.25rem/1 'Inter', serif;
  color: var(--gold-deep);
  letter-spacing: -0.02em;
}

.trust-card-title {
  font: 700 0.9rem/1.3 'Poppins', sans-serif;
  color: var(--navy);
  letter-spacing: 0.03em;
  margin: 0;
}

.trust-card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  /*.trust-section { */
  /*  margin-top: 2.5rem 0; */
    /*padding: 1.5rem 0; */
  /*}*/
  
  .trust-grid { 
    grid-template-columns: 1fr;    /* মোবাইলে single column */
    gap: 1rem; 
  }
  
  .trust-card { 
    padding: 1rem; 
    gap: 1rem;
  }
  
  .trust-card-icon { 
    font-size: 1.6rem; 
    width: 55px;
    height: 55px;
  }
  
  .trust-card-number { 
    font-size: 1rem; 
  }
  
  .trust-card-title { 
    font-size: 0.85rem; 
  }
  
  .trust-card-desc { 
    font-size: 0.75rem; 
  }
}

@media (max-width: 480px) {
  /*.trust-section { */
  /*  margin-top: 2.5rem; */
    /*padding: 1rem 0; */
  /*}*/
  
  .trust-grid { 
    gap: 0.75rem; 
  }
  
  .trust-card { 
    padding: 0.85rem; 
    gap: 0.85rem; 
  }
  
  .trust-card-icon { 
    font-size: 1.4rem; 
    width: 50px;
    height: 50px;
  }
  
  .trust-card-number { 
    font-size: 0.9rem; 
  }
  
  .trust-card-title { 
    font-size: 0.8rem; 
  }
  
  .trust-card-desc { 
    font-size: 0.7rem; 
  }
}


/* Live Viewer Counter Component Styling */
.item-rating-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    width: 100%;
}
.live-viewers-wrap {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, 0.09);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #004a00;
    /*border:1px solid var(--gold-border);*/
}
.glowing-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #22c55e;
    animation: livePulse 2s infinite ease-in-out;
}
@keyframes livePulse {
    0%, 100% { opacity: 0.3; transform: scale(0.9); box-shadow: 0 0 4px #22c55e; }
    50% { opacity: 1; transform: scale(1.15); box-shadow: 0 0 12px #22c55e; }
}

