@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&family=Playfair+Display:wght@700;900&display=swap");

/* ============================================================
   ROOT VARIABLES – mohanin.com Orange + Dark theme
   ============================================================ */
:root {
  --black:       #000000;
  --white:       #ffffff;
  --dark:        #1c2230;
  --dark2:       #28303D;
  --text:        #222222;
  --text-light:  #6b7280;
  --border:      #e5e7eb;
  --light-bg:    #f7f7f7;
  /* Orange accent – mohanin.com primary brand color */
  --accent:      #f08c00;
  --accent-dark: #d47b00;
  --primary:     #1c2230;
  --dark-bg:     #1c2230;
  --hero-bg:     #1a1a1a;
  --star:        #f08c00;
  --text-muted:  #6b7280;
  --text-dark:   #222222;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after, h1,h2,h3,h4,h5,h6,p {
  margin:0; padding:0; box-sizing:border-box;
}
html { scroll-behavior:smooth; }
body {
  font-family:"Inter",sans-serif;
  color:var(--text);
  background:var(--white);
  font-size:15px;
  line-height:1.6;
}
body::-webkit-scrollbar { width:4px; }
body::-webkit-scrollbar-track { background:#f1f1f1; }
body::-webkit-scrollbar-thumb { background:var(--dark); border-radius:2px; }
ul  { list-style:none; margin:0; padding:0; }
a, button { text-decoration:none; display:inline-block; transition:all .3s ease; }
a:hover { text-decoration:none; }
img { max-width:100%; height:auto; display:block; }
section { padding:80px 0; }
p { font-size:15px; line-height:1.75; }

/* Fill-height images */
.about-intro-img img,
.team-img img,
.author-avatar img,
.textimonial-img img { width:100%; height:100%; object-fit:cover; }

.gallery-main img,
.gallery-thumb img,
.sidebar-product-img img,
.product-card-inner img { width:100%; height:100%; object-fit:contain; }

/* ============ LAYOUT ============ */
.containerFull { padding:0 30px; }
@media (min-width:1200px) { .containerFull { max-width:1360px; margin:0 auto; padding:0 40px; } }
@media (min-width:1600px) { .containerFull { max-width:1560px; } }

/* ============ HELPERS ============ */
.font-heading  { font-family:"Playfair Display",serif; }
.text-accent   { color:var(--dark); }
.bgLight       { background:var(--light-bg); }

.section-title {
  font-size:36px; font-weight:700; color:var(--dark);
  font-family:"Playfair Display",serif; letter-spacing:-.3px;
}
.section-subtitle { font-size:14px; color:var(--text-light); margin-top:10px; max-width:600px; }

/* ============ BUTTONS ============ */
/* Primary – orange fill (mohanin style) */
.btnTheme {
  position:relative; display:inline-flex; justify-content:center; align-items:center;
  background:var(--accent); color:var(--white);
  border:2px solid var(--accent); border-radius:3px;
  cursor:pointer; overflow:hidden;
  font-weight:700; letter-spacing:.8px; text-transform:uppercase;
}
.btnTheme::after {
  content:""; width:0; height:100%; background:rgba(0,0,0,.12);
  position:absolute; right:0; transition:all .4s ease;
}
.btnTheme:hover::after { width:100%; left:0; right:auto; }
.btnTheme:hover { background:var(--accent-dark); border-color:var(--accent-dark); color:var(--white); }
.btnTheme span { position:relative; z-index:2; font-size:13px; font-weight:700; padding:2px 12px; }

/* Secondary – white fill, dark border */
.btnTheme2 {
  position:relative; display:inline-flex; justify-content:center; align-items:center;
  background:var(--white); color:var(--dark);
  border:2px solid var(--dark); border-radius:3px;
  cursor:pointer; overflow:hidden; font-weight:700; letter-spacing:.8px; text-transform:uppercase;
}
.btnTheme2:hover { background:var(--dark); color:var(--white); }
.btnTheme2 span { position:relative; z-index:2; font-size:13px; font-weight:700; padding:2px 12px; }

/* Know More – orange underline text link (mohanin style) */
.btn-knowmore {
  display:inline-flex; align-items:center; gap:10px;
  font-size:13px; font-weight:700; color:var(--accent);
  letter-spacing:1px; text-transform:uppercase;
  border-bottom:2px solid var(--accent); padding-bottom:4px;
  background:transparent; border-top:none; border-left:none; border-right:none;
  cursor:pointer; padding-top:0;
}
.btn-knowmore:hover { color:var(--accent-dark); border-bottom-color:var(--accent-dark); }
.btn-knowmore i { transition:transform .3s ease; }
.btn-knowmore:hover i { transform:translateX(4px); }

.btnOutline {
  display:inline-flex; align-items:center; border:none; background:transparent;
  color:var(--accent); font-weight:700; font-size:13px; cursor:pointer; gap:6px; padding:0;
  letter-spacing:.5px;
}
.btnOutline:hover { color:var(--accent-dark); }
.btnOutline i { transition:transform .3s ease; }
.btnOutline:hover i { transform:translateX(4px); }

/* ============ TOP BAR ============ */
.topBar {
  background:var(--dark); border-bottom:1px solid rgba(255,255,255,.08);
  font-size:12px; color:rgba(255,255,255,.65);
}
.topBar .containerFull {
  display:flex; align-items:center; justify-content:space-between; height:36px;
}
.topBar-left { font-size:12px; letter-spacing:.3px; }
.topBar-left i { color:var(--accent); }
.topBar-right { display:flex; align-items:center; gap:4px; }
.topBar-right select {
  border:none; background:transparent; font-size:12px; color:rgba(255,255,255,.65);
  cursor:pointer; outline:none; padding:0 4px;
}
.topBar-right .sep { color:rgba(255,255,255,.25); }
.topBar-right a { color:rgba(255,255,255,.65); font-size:12px; }
.topBar-right a:hover { color:var(--accent); }

/* ============ HEADER ============ */
header {
  height:70px; width:100%; background:var(--white);
  border-bottom:1px solid var(--border);
  position:sticky; top:0; z-index:200;
  transition:box-shadow .3s ease;
}
header.stricky-fixed { box-shadow:0 2px 20px rgba(0,0,0,.06); }

.mainMenu {
  height:100%; display:flex; align-items:center; justify-content:space-between;
}

/* Left: hamburger + desktop nav */
.leftMenu { display:flex; align-items:center; gap:20px; }
.btnMenu {
  background:transparent; border:none; color:var(--black);
  font-size:20px; cursor:pointer; line-height:1; padding:4px;
}
.btnMenu:hover { color:var(--dark2); }

/* Desktop nav links */
.desktopNav { display:flex; gap:2px; align-items:center; }
.desktopNav li { position:relative; }
.desktopNav li a {
  font-size:13px; font-weight:600; color:var(--text);
  padding:8px 14px; letter-spacing:.4px;
}
.desktopNav li a:hover,
.desktopNav li.active a { color:var(--accent); }
.desktopNav li.active a { border-bottom:2px solid var(--accent); }
.sale-link { color:var(--accent) !important; font-weight:700 !important; }

/* Dropdown */
.has-dropdown { position:relative; }
.dropdown-nav {
  position:absolute; top:calc(100%+8px); left:0; background:var(--white);
  border:1px solid var(--border); border-top:2px solid var(--accent);
  min-width:200px; padding:8px 0;
  opacity:0; pointer-events:none; transform:translateY(8px);
  transition:all .3s ease; z-index:300; box-shadow:0 8px 30px rgba(0,0,0,.08);
}
.has-dropdown:hover .dropdown-nav { opacity:1; pointer-events:all; transform:translateY(0); }
.dropdown-nav li a {
  display:block; padding:10px 20px; font-size:13px;
  color:var(--text) !important; font-weight:500; letter-spacing:.3px;
}
.dropdown-nav li a:hover { color:var(--accent) !important; background:var(--light-bg); }

/* Logo – LEFT aligned (mohanin style) */
.centerLogo a {
  font-family:"Playfair Display",serif; font-size:22px; font-weight:900;
  color:var(--dark); letter-spacing:1px;
}
.centerLogo a span { color:var(--accent); }

/* Right icons */
.headerActions { display:flex; align-items:center; gap:14px; }
.icon-btn {
  background:transparent; border:none; cursor:pointer;
  font-size:17px; color:var(--text); padding:4px; position:relative; line-height:1;
}
.icon-btn:hover { color:var(--accent); }
.cart-btn { position:relative; }
.cart-count {
  position:absolute; top:-5px; right:-8px; background:var(--accent); color:white;
  font-size:10px; font-weight:700; width:17px; height:17px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}

/* Offcanvas Sidebar */
.offcanvas-header { background:var(--dark); padding:20px; }
.offcanvas-header .btn-close { filter:invert(1); }
.sidelogo a {
  font-family:"Playfair Display",serif; font-size:20px; font-weight:900;
  color:var(--white); letter-spacing:1px;
}
.sidelogo a span { color:var(--accent); }
.innerMenu ul li a {
  display:block; color:var(--text); font-size:15px; font-weight:600;
  padding:13px 10px; border-bottom:1px solid var(--border);
  letter-spacing:.3px;
}
.innerMenu ul li a:hover,
.innerMenu ul li.active a { color:var(--accent); }
.followUs { padding:20px; border-top:1px solid var(--border); }
.followUs h3 { font-size:12px; font-weight:700; color:#888; margin-bottom:12px; text-transform:uppercase; letter-spacing:1.5px; }
.socialLink { display:flex; gap:8px; }
.socialLink li a {
  width:36px; height:36px; background:var(--accent); color:white;
  border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:13px;
}
.socialLink li a:hover { background:var(--accent-dark); }

/* ============================================================
   HOMEPAGE – HERO FULL-WIDTH SLIDER (mohanin.com style)
   ============================================================ */
.heroSlider { position:relative; overflow:hidden; }

.hero-slide {
  position:relative;
  height:640px;
  overflow:hidden;
  outline:none;
}
.hero-slide-bg {
  position:absolute; inset:0;
  background:#1a1a1a;
}
.hero-slide-bg img {
  width:100%; height:100%;
  object-fit:cover; object-position:center;
  display:block !important;
}
.hero-slide-overlay {
  position:absolute; inset:0;
  background:rgba(0,0,0,.45);
}
.hero-slide-content {
  position:absolute; inset:0;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  text-align:center; padding:0 20px;
  z-index:2;
}
.hero-slide-label {
  display:block; font-size:12px; font-weight:600;
  letter-spacing:4px; text-transform:uppercase;
  color:rgba(255,255,255,.75); margin-bottom:20px;
}
.hero-slide-title {
  font-family:"Playfair Display",serif;
  font-size:clamp(36px,5.5vw,72px);
  font-weight:900; color:var(--white);
  line-height:1.1; margin-bottom:28px;
  max-width:760px;
}
.hero-slide-desc {
  font-size:16px; color:rgba(255,255,255,.7);
  line-height:1.7; margin-bottom:36px;
  max-width:520px;
}
.hero-slide-btn {
  display:inline-flex; align-items:center; gap:12px;
  color:var(--white); background:var(--accent);
  border:2px solid var(--accent);
  padding:14px 36px; font-size:12px; font-weight:700;
  letter-spacing:2px; text-transform:uppercase;
  transition:all .3s ease;
}
.hero-slide-btn:hover {
  background:var(--accent-dark); border-color:var(--accent-dark); color:var(--white);
}
.hero-slide-btn i { transition:transform .3s ease; }
.hero-slide-btn:hover i { transform:translateX(5px); }

/* Slick dots */
.heroSlider .slick-dots { bottom:28px; }
.heroSlider .slick-dots li button:before {
  color:var(--white); opacity:.5; font-size:9px;
}
.heroSlider .slick-dots li.slick-active button:before {
  color:var(--accent); opacity:1; font-size:11px;
}

/* Slick arrows */
.heroSlider .slick-prev,
.heroSlider .slick-next {
  width:50px; height:50px; z-index:10;
  background:rgba(240,140,0,.75); border:none;
  transition:background .3s ease;
}
.heroSlider .slick-prev { left:24px; }
.heroSlider .slick-next { right:24px; }
.heroSlider .slick-prev:hover,
.heroSlider .slick-next:hover { background:var(--accent); }
.heroSlider .slick-prev:before,
.heroSlider .slick-next:before { font-size:18px; opacity:1; }

/* ============================================================
   HOMEPAGE – OUR CAPABILITIES / FEATURES (mohanin style)
   ============================================================ */
.capabilities-section {
  padding:90px 0; background:var(--white);
}
.cap-head {
  text-align:center; margin-bottom:56px;
}
.cap-head .section-subtitle { margin:12px auto 0; }

.cap-grid {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:50px 40px;
}
.cap-item { text-align:center; }
.cap-icon {
  width:64px; height:64px; margin:0 auto 18px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(240,140,0,.1); border-radius:50%;
  transition:background .3s ease;
}
.cap-item:hover .cap-icon { background:var(--accent); }
.cap-icon i {
  font-size:28px; color:var(--accent); transition:color .3s ease;
}
.cap-item:hover .cap-icon i { color:var(--white); }
.cap-icon img {
  width:100%; height:100%; object-fit:contain;
}
.cap-title {
  font-size:14px; font-weight:700; color:var(--dark);
  letter-spacing:.3px; line-height:1.4;
}
.cap-desc {
  font-size:13px; color:var(--text-light);
  margin-top:6px; line-height:1.6;
}

/* ============================================================
   HOMEPAGE – PRODUCT CATEGORIES (mohanin card grid)
   ============================================================ */
.cat-section {
  padding:0 0 90px; background:var(--white);
}
.cat-head {
  text-align:center; padding-top:0; margin-bottom:40px;
}
.cat-grid {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
}
.cat-card {
  position:relative; overflow:hidden;
  aspect-ratio:3/4; cursor:pointer; display:block;
  background:#1a1a1a;
}
.cat-card img {
  width:100%; height:100%;
  object-fit:cover; object-position:center;
  transition:transform .6s cubic-bezier(.25,.46,.45,.94);
  display:block;
}
.cat-card:hover img { transform:scale(1.06); }

.cat-card-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.1) 55%, transparent 100%);
  transition:background .4s ease;
}
.cat-card:hover .cat-card-overlay {
  background:linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.25) 55%, transparent 100%);
}
.cat-card-info {
  position:absolute; bottom:0; left:0; right:0;
  padding:28px 24px; color:var(--white);
}
.cat-card-title {
  font-family:"Playfair Display",serif;
  font-size:22px; font-weight:700; margin-bottom:8px;
  line-height:1.2;
}
.cat-card-link {
  font-size:11px; font-weight:700; letter-spacing:2px;
  text-transform:uppercase; color:var(--accent);
  display:inline-flex; align-items:center; gap:8px;
  transition:gap .3s ease, color .3s ease;
}
.cat-card:hover .cat-card-link { gap:12px; color:var(--accent); }
.cat-card-link i { font-size:10px; }

/* ============================================================
   HOMEPAGE – ABOUT SECTION (mohanin split layout)
   ============================================================ */
.about-home-section {
  padding:0 0 90px; background:var(--white);
}
.about-home-row {
  display:flex; align-items:stretch;
}
.about-home-img-col {
  flex:0 0 50%; max-width:50%;
  overflow:hidden; position:relative;
  min-height:520px;
}
.about-home-img-col img {
  width:100%; height:100%;
  object-fit:cover; object-position:center;
  display:block;
}
.about-home-content-col {
  flex:0 0 50%; max-width:50%;
  display:flex; flex-direction:column; justify-content:center;
  padding:60px 70px;
  background:#f2f4f7;
}
.about-home-tag {
  display:block; font-size:11px; font-weight:700;
  letter-spacing:3px; text-transform:uppercase;
  color:var(--accent); margin-bottom:20px;
}
.about-home-title {
  font-family:"Playfair Display",serif;
  font-size:clamp(26px,3vw,40px); font-weight:900;
  color:var(--dark); line-height:1.15; margin-bottom:22px;
}
.about-home-text {
  font-size:15px; color:var(--text-light);
  line-height:1.85; margin-bottom:32px;
}

/* ============================================================
   HOMEPAGE – OUR PROMISE / SUSTAINABILITY (dark section)
   ============================================================ */
.promise-section {
  padding:0; background:var(--white);
}
.promise-row {
  display:flex; align-items:stretch;
}
.promise-img-col {
  flex:0 0 50%; max-width:50%;
  overflow:hidden; position:relative;
  min-height:520px;
}
.promise-img-col img {
  width:100%; height:100%;
  object-fit:cover; object-position:center;
  display:block;
}
.promise-content-col {
  flex:0 0 50%; max-width:50%;
  display:flex; flex-direction:column; justify-content:center;
  padding:60px 70px;
  background:var(--dark);
}
.promise-tag {
  display:block; font-size:11px; font-weight:700;
  letter-spacing:3px; text-transform:uppercase;
  color:var(--accent); margin-bottom:20px;
}
.promise-title {
  font-family:"Playfair Display",serif;
  font-size:clamp(26px,3vw,40px); font-weight:900;
  color:var(--white); line-height:1.15; margin-bottom:22px;
}
.promise-text {
  font-size:15px; color:rgba(255,255,255,.65);
  line-height:1.85; margin-bottom:32px;
}
.btn-knowmore-white {
  display:inline-flex; align-items:center; gap:10px;
  font-size:13px; font-weight:700; color:var(--accent);
  letter-spacing:1px; text-transform:uppercase;
  border-bottom:2px solid var(--accent); padding-bottom:4px;
}
.btn-knowmore-white:hover { color:var(--accent-dark); border-bottom-color:var(--accent-dark); }
.btn-knowmore-white i { transition:transform .3s ease; }
.btn-knowmore-white:hover i { transform:translateX(5px); }

/* ============================================================
   HOMEPAGE – BRAND PARTNERS (client logo slider)
   ============================================================ */
.brands-section {
  padding:60px 0;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  background:var(--white);
}
.brands-head {
  text-align:center; margin-bottom:44px;
}
.brands-head .section-title { font-size:28px; }
.brands-head .section-subtitle { margin:10px auto 0; }

.brand-logo-item {
  padding:0 30px;
  display:flex !important;
  align-items:center; justify-content:center;
  outline:none;
}
.brand-logo-text {
  font-family:"Playfair Display",serif;
  font-size:20px; font-weight:900;
  color:rgba(0,0,0,.18);
  letter-spacing:1px; text-transform:uppercase;
  transition:color .3s ease;
  cursor:default; user-select:none;
  white-space:nowrap;
}
.brand-logo-item:hover .brand-logo-text { color:var(--accent); }

/* brands slick */
.brandsSlider .slick-track { display:flex; align-items:center; }

/* ============================================================
   HOMEPAGE – OUR VALUES (social impact row)
   ============================================================ */
.values-home-section {
  padding:80px 0; background:var(--light-bg);
}
.values-home-head {
  text-align:center; margin-bottom:56px;
}
.values-home-grid {
  display:flex; gap:0;
  border-top:1px solid var(--border);
  border-left:1px solid var(--border);
}
.value-home-item {
  flex:1; text-align:center;
  padding:44px 24px;
  border-right:1px solid var(--border);
  border-bottom:1px solid var(--border);
  background:var(--white);
  transition:background .3s ease;
}
.value-home-item:hover { background:var(--accent); }
.value-home-icon {
  font-size:32px; color:var(--accent);
  margin-bottom:18px; transition:color .3s ease;
}
.value-home-item:hover .value-home-icon { color:var(--white); }
.value-home-title {
  font-size:13px; font-weight:700;
  color:var(--dark); letter-spacing:1px;
  text-transform:uppercase; line-height:1.4;
  transition:color .3s ease;
}
.value-home-item:hover .value-home-title { color:var(--white); }

/* ============================================================
   COLLECTIONS SECTION (inner / shop page grid)
   ============================================================ */
.collections-section { padding:70px 0; }
.collections-head { text-align:center; margin-bottom:36px; }

.collections-filter {
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0; margin-bottom:24px;
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
}
.filter-btn {
  display:flex; align-items:center; gap:8px;
  background:transparent; border:none; font-size:12px; font-weight:700;
  color:var(--text); cursor:pointer; letter-spacing:1px; text-transform:uppercase;
}
.filter-btn:hover { color:var(--black); }
.sort-select {
  border:1px solid var(--border); background:var(--white); font-size:13px;
  color:var(--text-muted); padding:6px 12px; border-radius:0; outline:none; cursor:pointer;
}
.sort-select:focus { border-color:var(--black); }

/* Product Card */
.product-card {
  background:var(--white); position:relative;
  transition:transform .3s ease, box-shadow .3s ease; cursor:pointer;
}
.product-card:hover { transform:translateY(-4px); box-shadow:0 12px 36px rgba(0,0,0,.10); }

.product-card-inner {
  background:var(--light-bg); position:relative; overflow:hidden;
  aspect-ratio:1/1; display:flex; align-items:center; justify-content:center;
}
.product-card-inner img {
  width:85%; height:85%; object-fit:contain; transition:transform .4s ease;
}
.product-card:hover .product-card-inner img { transform:scale(1.07); }

.product-actions {
  position:absolute; bottom:10px; left:50%; transform:translateX(-50%) translateY(10px);
  display:flex; gap:6px; opacity:0; transition:all .3s ease; white-space:nowrap;
}
.product-card:hover .product-actions { opacity:1; transform:translateX(-50%) translateY(0); }

.action-btn {
  width:36px; height:36px; background:var(--white); border:none; border-radius:0;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; font-size:13px; color:var(--text);
  box-shadow:0 2px 12px rgba(0,0,0,.12); transition:all .3s ease;
}
.action-btn:hover { background:var(--accent); color:white; }

.product-badge {
  position:absolute; top:10px; left:10px; font-size:10px; font-weight:700;
  letter-spacing:1px; text-transform:uppercase; padding:3px 9px; z-index:2;
}
.badge-new  { background:var(--dark); color:white; }
.badge-sale { background:var(--accent); color:white; }

.product-info { padding:14px 4px 20px; }
.product-name {
  font-size:14px; font-weight:600; color:var(--black); margin-bottom:6px; line-height:1.3;
}
.product-price { display:flex; align-items:center; gap:8px; }
.price     { font-size:16px; font-weight:700; color:var(--accent); }
.old-price { font-size:13px; color:var(--text-muted); text-decoration:line-through; }
.product-stars { display:flex; align-items:center; gap:2px; margin-bottom:6px; }
.product-stars i { font-size:11px; color:var(--star); }
.product-stars span { font-size:11px; color:var(--text-muted); margin-left:3px; }

.view-all-wrap { text-align:center; margin-top:44px; }

/* ============================================================
   PROMO BANNER (inner pages / shop page feature)
   ============================================================ */
.promo-banner {
  background:var(--dark); padding:80px 0; overflow:hidden; position:relative;
}
.promo-banner::before {
  content:''; position:absolute; left:-80px; top:-80px; width:300px; height:300px;
  background:rgba(255,255,255,.03); border-radius:50%;
}
.promo-text { position:relative; z-index:2; }
.promo-label {
  display:inline-block; font-size:11px; font-weight:700; letter-spacing:2px;
  text-transform:uppercase; color:var(--accent); margin-bottom:14px;
}
.promo-title {
  font-family:"Playfair Display",serif;
  font-size:44px; font-weight:900; line-height:1.15; color:var(--white); margin-bottom:16px;
}
.promo-desc { font-size:14px; color:rgba(255,255,255,.6); line-height:1.8; margin-bottom:28px; max-width:440px; }
.promo-image { text-align:center; position:relative; z-index:2; }
.promo-image img {
  width:100%; max-width:480px; height:300px; object-fit:contain;
  filter:drop-shadow(0 20px 40px rgba(0,0,0,.3));
}

/* ============================================================
   BLOG SECTION (homepage 3-card grid)
   ============================================================ */
.blog-section { padding:80px 0; background:var(--white); }

.blog-card { cursor:pointer; }
.blog-card:hover .blog-img img { transform:scale(1.05); }

.blog-img { overflow:hidden; position:relative; }
.blog-img img { height:210px; object-fit:cover; transition:transform .45s ease; display:block; width:100%; }

.blog-date {
  position:absolute; top:12px; left:12px; background:var(--accent); color:white;
  font-size:11px; font-weight:700; padding:4px 10px; line-height:1.4; text-align:center;
}
.blog-date strong { display:block; font-size:18px; }

.blog-info { padding:20px 4px 4px; }
.blog-meta {
  display:flex; align-items:center; gap:6px; font-size:12px; color:var(--text-muted);
  margin-bottom:8px; letter-spacing:.3px;
}
.blog-meta i { color:var(--accent); }
.blog-title {
  font-size:16px; font-weight:700; color:var(--dark); line-height:1.4; margin-bottom:8px;
}
.blog-card:hover .blog-title { color:var(--accent); }
.blog-excerpt { font-size:13px; color:var(--text-muted); line-height:1.7; margin-bottom:12px; }
.blog-link { font-size:12px; font-weight:700; color:var(--accent); letter-spacing:1px; text-transform:uppercase; border-bottom:1px solid var(--accent); padding-bottom:2px; }
.blog-link:hover { color:var(--accent-dark); border-bottom-color:var(--accent-dark); }

/* ============================================================
   FEATURED PRODUCT
   ============================================================ */
.featured-section { padding:80px 0; background:var(--light-bg); }

.featured-img {
  background:var(--white); padding:30px;
  display:flex; align-items:center; justify-content:center; min-height:380px;
}
.featured-img img { width:100%; max-height:300px; object-fit:contain; }

.featured-info { padding-left:30px; }
.featured-info .product-stars { margin-bottom:12px; }
.featured-title {
  font-family:"Playfair Display",serif;
  font-size:36px; font-weight:900; color:var(--black); margin-bottom:14px; line-height:1.2;
}
.featured-desc { font-size:14px; color:var(--text-muted); line-height:1.85; margin-bottom:22px; }
.featured-price {
  font-size:28px; font-weight:700; color:var(--accent); margin-bottom:22px;
  display:flex; align-items:center; gap:12px;
}
.featured-price .old-price { font-size:18px; }

.color-swatches { display:flex; align-items:center; gap:10px; margin-bottom:28px; }
.color-swatches label { font-size:13px; font-weight:700; color:var(--black); margin-right:4px; }
.swatch {
  width:24px; height:24px; border-radius:50%; cursor:pointer;
  border:2px solid transparent; transition:border-color .2s ease;
}
.swatch.active, .swatch:hover { border-color:var(--black); }
.swatch-teal    { background:#2ab99a; }
.swatch-coral   { background:#e8612c; }
.swatch-navy    { background:#2b3040; }

/* ============================================================
   FOOTER – mohanin.com dark footer style
   ============================================================ */
footer {
  background:var(--dark);
  border-top:none;
  padding-top:60px;
}

.footer-logo a {
  font-family:"Playfair Display",serif; font-size:22px; font-weight:900;
  color:var(--white); letter-spacing:1px;
}
.footer-logo a span { color:var(--accent); }
.footer-logo { margin-bottom:16px; }
.footer-desc {
  font-size:13px; line-height:1.85; color:rgba(255,255,255,.5);
  max-width:250px; margin-bottom:0;
}

.footer-heading {
  font-size:12px; font-weight:700; color:var(--white);
  margin-bottom:20px; text-transform:uppercase; letter-spacing:1.5px;
}
.footer-links-list li { margin-bottom:10px; }
.footer-links-list li a { font-size:13px; color:rgba(255,255,255,.5); }
.footer-links-list li a:hover { color:var(--accent); }

.social-icon-list { display:flex; gap:10px; margin-bottom:0; }
.social-icon-list li a {
  width:36px; height:36px; border:1px solid rgba(255,255,255,.15);
  display:flex; align-items:center; justify-content:center;
  font-size:13px; color:rgba(255,255,255,.5);
  transition:all .3s ease;
}
.social-icon-list li a:hover { background:var(--accent); border-color:var(--accent); color:white; }

.footer-contact-list li {
  display:flex; gap:10px; margin-bottom:10px; font-size:13px;
  color:rgba(255,255,255,.5); align-items:flex-start;
}
.footer-contact-list li i { color:var(--accent); font-size:14px; margin-top:2px; flex-shrink:0; }
.footer-contact-list li a { color:rgba(255,255,255,.5); }
.footer-contact-list li a:hover { color:var(--accent); }

.footer-divider { border-color:rgba(255,255,255,.08); margin:0; }
.copyRight { padding:18px 0; background:rgba(0,0,0,.35); }
.copyRight p { font-size:12px; color:rgba(255,255,255,.4); text-align:center; letter-spacing:.3px; }

/* ============================================================
   INNER PAGES – SHARED COMPONENTS
   ============================================================ */
.page-enter { animation:pageFadeIn .45s ease both; }
@keyframes pageFadeIn {
  from { opacity:0; transform:translateY(10px); }
  to   { opacity:1; transform:translateY(0); }
}

/* Page Hero / Breadcrumb */
.page-hero {
  background:var(--dark); padding:44px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.page-hero-title {
  font-family:"Playfair Display",serif;
  font-size:32px; font-weight:900; color:var(--white); margin-bottom:8px;
}
.breadcrumb-list li { color:rgba(255,255,255,.5); }
.breadcrumb-list li a { color:rgba(255,255,255,.5); }
.breadcrumb-list {
  display:flex; align-items:center; gap:8px; flex-wrap:wrap; margin:0;
}
.breadcrumb-list li { font-size:13px; color:var(--text-muted); display:flex; align-items:center; gap:8px; }
.breadcrumb-list li a { color:var(--text-muted); }
.breadcrumb-list li a:hover { color:var(--accent); }
.breadcrumb-list li.active { color:var(--accent); font-weight:600; }
.breadcrumb-list li:not(:last-child)::after { content:"/"; color:var(--border); }

/* Pagination */
.pagination-wrap { display:flex; justify-content:center; gap:6px; margin-top:50px; flex-wrap:wrap; }
.page-link-btn {
  width:38px; height:38px; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-size:13px; font-weight:700; color:var(--text); background:var(--white);
  cursor:pointer; transition:all .25s ease;
}
.page-link-btn:hover, .page-link-btn.active {
  background:var(--accent); border-color:var(--accent); color:white;
}

/* Sidebar */
.sidebar-widget { margin-bottom:36px; }
.widget-title {
  font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:1.5px;
  color:var(--dark); margin-bottom:18px; padding-bottom:10px;
  border-bottom:2px solid var(--accent); display:inline-block;
}

/* Price range */
.price-range-labels { display:flex; justify-content:space-between; font-size:13px; color:var(--text-muted); margin-top:10px; }
input[type=range] { width:100%; accent-color:var(--accent); cursor:pointer; }

/* Filter checkboxes */
.filter-check { display:flex; align-items:center; gap:10px; margin-bottom:10px; cursor:pointer; }
.filter-check input[type=checkbox] { accent-color:var(--accent); width:15px; height:15px; cursor:pointer; flex-shrink:0; }
.filter-check span { font-size:14px; color:var(--text-dark); }
.filter-check .count { margin-left:auto; font-size:12px; color:var(--text-muted); }

/* Color filter dots */
.color-filter-list { display:flex; flex-wrap:wrap; gap:8px; }
.cf-swatch {
  width:26px; height:26px; border-radius:50%; cursor:pointer;
  border:2px solid transparent; transition:border-color .2s ease;
}
.cf-swatch:hover, .cf-swatch.active { border-color:var(--accent); }

/* Sidebar recent products */
.sidebar-product { display:flex; gap:14px; align-items:center; margin-bottom:14px; }
.sidebar-product-img { width:60px; height:60px; flex-shrink:0; overflow:hidden; background:var(--light-bg); }
.sidebar-product-img img { width:100%; height:100%; object-fit:contain; }
.sidebar-product-info .sp-name { font-size:13px; font-weight:700; color:var(--dark); margin-bottom:4px; }
.sidebar-product-info .sp-price { font-size:13px; font-weight:700; color:var(--accent); }

/* Shop toolbar */
.shop-toolbar {
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap;
  gap:12px; margin-bottom:28px;
}
.results-count { font-size:13px; color:var(--text-muted); }
.toolbar-right { display:flex; align-items:center; gap:10px; }
.view-btn {
  width:34px; height:34px; border:1px solid var(--border);
  background:var(--white); display:flex; align-items:center; justify-content:center;
  cursor:pointer; font-size:14px; color:var(--text-muted); transition:all .25s ease;
}
.view-btn.active, .view-btn:hover { background:var(--accent); border-color:var(--accent); color:white; }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-gallery { position:sticky; top:90px; }

.gallery-main {
  background:var(--light-bg); overflow:hidden;
  aspect-ratio:1/1; display:flex; align-items:center; justify-content:center;
  margin-bottom:12px; cursor:zoom-in;
}
.gallery-main img { width:80%; height:80%; object-fit:contain; transition:transform .4s ease; }
.gallery-main:hover img { transform:scale(1.07); }

.gallery-thumbs { display:flex; gap:10px; flex-wrap:wrap; }
.gallery-thumb {
  width:70px; height:70px; overflow:hidden;
  background:var(--light-bg); border:2px solid transparent;
  cursor:pointer; transition:border-color .2s ease; flex-shrink:0;
}
.gallery-thumb img { width:100%; height:100%; object-fit:contain; }
.gallery-thumb.active, .gallery-thumb:hover { border-color:var(--accent); }

/* Product detail info */
.pd-category { font-size:12px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--text-muted); margin-bottom:10px; }
.pd-title {
  font-family:"Playfair Display",serif;
  font-size:34px; font-weight:900; color:var(--dark); line-height:1.15; margin-bottom:14px;
}
.pd-price { font-size:30px; font-weight:700; color:var(--accent); margin-bottom:6px; display:flex; align-items:center; gap:12px; }
.pd-price .old-price { font-size:18px; }
.pd-review-bar { display:flex; align-items:center; gap:10px; margin-bottom:18px; font-size:13px; color:var(--text-muted); }
.pd-review-bar .product-stars { margin-bottom:0; }
.pd-divider { border:none; border-top:1px solid var(--border); margin:20px 0; }
.pd-desc { font-size:14px; color:#666; line-height:1.85; margin-bottom:22px; }

/* Size selector */
.size-label { font-size:12px; font-weight:700; color:var(--black); margin-bottom:10px; display:block; letter-spacing:1px; text-transform:uppercase; }
.size-list { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:22px; }
.size-btn {
  min-width:44px; height:38px; border:1.5px solid var(--border);
  background:var(--white); font-size:13px; font-weight:700; color:var(--text);
  padding:0 10px; cursor:pointer; transition:all .25s ease;
}
.size-btn:hover, .size-btn.active { background:var(--accent); border-color:var(--accent); color:white; }
.size-btn.unavailable { opacity:.35; cursor:not-allowed; }

/* Qty + cart row */
.add-cart-row { display:flex; align-items:center; gap:12px; flex-wrap:wrap; margin-bottom:22px; }
.qty-control {
  display:flex; align-items:center; border:1.5px solid var(--border); overflow:hidden;
}
.qty-btn {
  width:38px; height:44px; background:transparent; border:none; cursor:pointer;
  font-size:16px; color:var(--text); transition:background .2s ease;
}
.qty-btn:hover { background:var(--light-bg); }
.qty-input {
  width:46px; height:44px; border:none; border-left:1px solid var(--border); border-right:1px solid var(--border);
  text-align:center; font-size:14px; font-weight:700; outline:none;
}
.wishlist-btn {
  width:44px; height:44px; border:1.5px solid var(--border); background:var(--white);
  display:flex; align-items:center; justify-content:center; cursor:pointer;
  font-size:17px; color:var(--text); transition:all .25s ease;
}
.wishlist-btn:hover, .wishlist-btn.active { background:#ffe8e8; border-color:#e55; color:#e55; }

/* Product meta */
.pd-meta { font-size:13px; color:var(--text-muted); }
.pd-meta span { color:var(--black); font-weight:600; }

/* Product tabs */
.product-tabs-nav {
  display:flex; border-bottom:2px solid var(--border); margin-bottom:28px; gap:0;
}
.prod-tab-btn {
  background:transparent; border:none; font-size:13px; font-weight:700;
  color:var(--text-muted); padding:12px 24px; cursor:pointer; position:relative;
  transition:color .25s ease; letter-spacing:.5px; text-transform:uppercase;
}
.prod-tab-btn::after {
  content:''; position:absolute; bottom:-2px; left:0; width:0; height:2px;
  background:var(--accent); transition:width .3s ease;
}
.prod-tab-btn.active { color:var(--accent); }
.prod-tab-btn.active::after { width:100%; }

.tab-pane { display:none; animation:tabFadeIn .3s ease; }
.tab-pane.active { display:block; }
@keyframes tabFadeIn { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:translateY(0); } }

/* Reviews */
.review-item { padding:20px 0; border-bottom:1px solid var(--border); }
.review-item:last-child { border-bottom:none; }
.review-author { font-weight:700; font-size:14px; color:var(--black); }
.review-date   { font-size:12px; color:var(--text-muted); margin-left:10px; }
.review-text   { font-size:14px; color:#666; line-height:1.75; margin-top:8px; }

.related-section { padding:60px 0; background:var(--light-bg); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro-section { padding:80px 0; }
.about-intro-img {
  overflow:hidden; aspect-ratio:4/3;
  box-shadow:0 20px 60px rgba(0,0,0,.08);
}
.about-intro-img img { width:100%; height:100%; object-fit:cover; }
.about-label {
  font-size:11px; font-weight:700; letter-spacing:3px; text-transform:uppercase;
  color:var(--accent); margin-bottom:16px; display:block;
}
.about-heading {
  font-family:"Playfair Display",serif;
  font-size:40px; font-weight:900; color:var(--black); line-height:1.15; margin-bottom:18px;
}
.about-text { font-size:14px; color:#666; line-height:1.85; margin-bottom:16px; }

/* Stats strip */
.stats-strip { background:var(--dark); padding:60px 0; }
.stat-item { text-align:center; padding:10px 0; }
.stat-number {
  font-family:"Playfair Display",serif;
  font-size:52px; font-weight:900; color:var(--white); line-height:1; margin-bottom:8px;
}
.stat-number span { color:var(--accent); }
.stat-label { font-size:12px; font-weight:700; color:rgba(255,255,255,.45); text-transform:uppercase; letter-spacing:1.5px; }

/* Values section */
.values-section { padding:80px 0; background:var(--light-bg); }
.value-card {
  background:var(--white); padding:36px 28px;
  text-align:center; border:1px solid var(--border);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.value-card:hover { transform:translateY(-6px); box-shadow:0 16px 40px rgba(0,0,0,.08); border-color:var(--accent); }
.value-icon {
  width:64px; height:64px; border:2px solid rgba(240,140,0,.2);
  display:flex; align-items:center; justify-content:center;
  font-size:26px; color:var(--accent); margin:0 auto 20px;
  transition:all .3s ease;
}
.value-card:hover .value-icon { background:var(--accent); border-color:var(--accent); color:var(--white); }
.value-title { font-size:16px; font-weight:700; color:var(--black); margin-bottom:10px; }
.value-desc   { font-size:14px; color:var(--text-muted); line-height:1.75; }

/* Team section */
.team-section { padding:80px 0; }
.team-card { text-align:center; }
.team-img {
  width:160px; height:160px; border-radius:50%; overflow:hidden; margin:0 auto 18px;
  border:4px solid var(--border); transition:border-color .3s ease;
}
.team-card:hover .team-img { border-color:var(--accent); }
.team-img img { width:100%; height:100%; object-fit:cover; }
.team-name { font-size:17px; font-weight:700; color:var(--black); margin-bottom:4px; }
.team-role { font-size:13px; color:var(--accent); font-weight:600; margin-bottom:12px; }
.team-social { display:flex; justify-content:center; gap:8px; }
.team-social a {
  width:32px; height:32px; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-size:12px; color:var(--text-muted);
}
.team-social a:hover { background:var(--accent); border-color:var(--accent); color:white; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding:80px 0; }
.contact-info-card {
  background:var(--light-bg); padding:30px 24px;
  border:1px solid var(--border); margin-bottom:20px;
  display:flex; align-items:flex-start; gap:18px;
  transition:box-shadow .3s ease, border-color .3s ease;
}
.contact-info-card:hover { box-shadow:0 8px 24px rgba(0,0,0,.07); border-color:var(--accent); }
.ci-icon {
  width:48px; height:48px; background:var(--accent);
  display:flex; align-items:center; justify-content:center;
  font-size:18px; color:white; flex-shrink:0;
}
.ci-title { font-size:14px; font-weight:700; color:var(--black); margin-bottom:4px; }
.ci-val   { font-size:13px; color:var(--text-muted); line-height:1.7; }
.ci-val a { color:var(--text-muted); }
.ci-val a:hover { color:var(--black); }

.contact-form-wrap {
  background:var(--white); border:1px solid var(--border); padding:40px;
}
.contact-form-wrap .form-label { font-size:12px; font-weight:700; color:var(--black); margin-bottom:6px; text-transform:uppercase; letter-spacing:.8px; }
.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
  border:1.5px solid var(--border); border-radius:0; padding:12px 16px;
  font-size:14px; transition:border-color .25s ease;
}
.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
  border-color:var(--accent); box-shadow:0 0 0 3px rgba(240,140,0,.08); outline:none;
}
.contact-form-wrap textarea.form-control { resize:vertical; min-height:140px; }
.map-wrap { border:1px solid var(--border); height:300px; margin-top:30px; overflow:hidden; }
.map-wrap iframe { width:100%; height:100%; display:block; border:none; }

/* ============================================================
   BLOG LISTING PAGE
   ============================================================ */
.blog-listing-section { padding:70px 0; }
.blog-card-full { margin-bottom:40px; padding-bottom:40px; border-bottom:1px solid var(--border); }
.blog-card-full:last-child { border-bottom:none; }
.blog-img-full { overflow:hidden; aspect-ratio:16/9; margin-bottom:20px; }
.blog-img-full img { width:100%; height:100%; object-fit:cover; transition:transform .45s ease; }
.blog-card-full:hover .blog-img-full img { transform:scale(1.04); }
.blog-cats { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:10px; }
.blog-cat-tag {
  font-size:11px; font-weight:700; letter-spacing:1px; text-transform:uppercase;
  background:rgba(240,140,0,.1); color:var(--accent); padding:3px 12px;
}
.blog-full-title {
  font-size:22px; font-weight:700; color:var(--black); line-height:1.35; margin-bottom:10px;
}
.blog-card-full:hover .blog-full-title { color:var(--accent); }
.blog-full-meta {
  display:flex; align-items:center; gap:16px; font-size:12px; color:var(--text-muted); margin-bottom:14px;
}
.blog-full-meta i { color:var(--accent); margin-right:4px; }
.blog-full-excerpt { font-size:14px; color:#666; line-height:1.8; margin-bottom:16px; }

/* Sidebar search */
.sidebar-search { position:relative; }
.sidebar-search input {
  width:100%; border:1.5px solid var(--border); padding:11px 44px 11px 16px;
  font-size:14px; outline:none; transition:border-color .25s ease;
}
.sidebar-search input:focus { border-color:var(--accent); }
.sidebar-search button {
  position:absolute; right:0; top:0; bottom:0; width:42px;
  background:var(--accent); border:none; color:white; cursor:pointer;
}

/* Tags */
.tag-cloud { display:flex; flex-wrap:wrap; gap:8px; }
.tag-item {
  font-size:12px; font-weight:600; padding:5px 14px;
  border:1.5px solid var(--border); color:var(--text-muted); cursor:pointer;
  transition:all .25s ease;
}
.tag-item:hover { background:var(--accent); border-color:var(--accent); color:white; }

/* ============================================================
   BLOG DETAIL PAGE
   ============================================================ */
.blog-detail-section { padding:70px 0; }
.blog-detail-hero-img {
  width:100%; aspect-ratio:16/7; overflow:hidden; margin-bottom:36px;
}
.blog-detail-hero-img img { width:100%; height:100%; object-fit:cover; }
.blog-detail-title {
  font-family:"Playfair Display",serif;
  font-size:36px; font-weight:900; color:var(--black); line-height:1.2; margin-bottom:18px;
}
.blog-detail-meta {
  display:flex; align-items:center; gap:18px; flex-wrap:wrap;
  font-size:13px; color:var(--text-muted); margin-bottom:28px;
  padding-bottom:20px; border-bottom:1px solid var(--border);
}
.blog-detail-meta i { color:var(--black); margin-right:4px; }
.blog-detail-body { font-size:15px; line-height:1.9; color:#555; }
.blog-detail-body h3 { font-size:22px; font-weight:700; color:var(--black); margin:32px 0 12px; }
.blog-detail-body p  { margin-bottom:18px; }
.blog-detail-body blockquote {
  border-left:3px solid var(--black); padding:16px 24px; background:var(--light-bg);
  margin:28px 0; font-style:italic; color:#555;
}
.blog-tags-row { display:flex; align-items:center; gap:10px; flex-wrap:wrap; padding:20px 0; border-top:1px solid var(--border); margin-top:36px; }
.blog-tags-row strong { font-size:13px; color:var(--black); }
.author-box {
  background:var(--light-bg); padding:30px; display:flex; gap:24px;
  margin:40px 0; border:1px solid var(--border); align-items:flex-start;
}
.author-avatar { width:80px; height:80px; border-radius:50%; overflow:hidden; flex-shrink:0; }
.author-avatar img { width:100%; height:100%; object-fit:cover; }
.author-name { font-size:16px; font-weight:700; color:var(--black); margin-bottom:6px; }
.author-bio  { font-size:13px; color:var(--text-muted); line-height:1.75; }
.prev-next-nav {
  display:flex; gap:16px; flex-wrap:wrap; margin:40px 0;
  padding:24px 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border);
}
.pn-card {
  flex:1; min-width:200px; background:var(--light-bg);
  padding:18px 20px; border:1px solid var(--border); transition:border-color .25s ease;
}
.pn-card:hover { border-color:var(--accent); }
.pn-label { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--text-muted); margin-bottom:6px; }
.pn-title { font-size:14px; font-weight:700; color:var(--dark); }
.pn-card:hover .pn-title { color:var(--accent); }
.related-posts-section { padding:60px 0; background:var(--light-bg); }

/* ============================================================
   PAGE LOADER
   ============================================================ */
#pageLoader {
  position:fixed; inset:0; background:var(--white); z-index:9999;
  display:flex; align-items:center; justify-content:center;
  transition:opacity .4s ease, visibility .4s ease;
}
#pageLoader.hidden { opacity:0; visibility:hidden; pointer-events:none; }
.loader-logo {
  font-family:"Playfair Display",serif; font-size:28px; font-weight:900;
  color:var(--dark); letter-spacing:1px;
  animation:loaderPulse 1s ease-in-out infinite alternate;
}
.loader-logo span { color:var(--accent); }
@keyframes loaderPulse {
  from { opacity:.4; transform:scale(.97); }
  to   { opacity:1; transform:scale(1); }
}
.loader-bar {
  position:fixed; top:0; left:0; height:3px; background:var(--accent);
  z-index:10000; width:0; transition:width .3s ease;
}

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
.search-overlay {
  position:fixed; inset:0; background:rgba(0,0,0,.9); z-index:1050;
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transition:opacity .3s ease, visibility .3s ease;
}
.search-overlay.open { opacity:1; visibility:visible; }
.search-overlay-inner {
  width:100%; max-width:680px; padding:0 20px;
  transform:translateY(-20px); transition:transform .35s ease;
}
.search-overlay.open .search-overlay-inner { transform:translateY(0); }
.search-overlay-close {
  position:absolute; top:28px; right:28px; background:transparent; border:none;
  color:white; font-size:28px; cursor:pointer; line-height:1; opacity:.6;
  transition:opacity .2s ease;
}
.search-overlay-close:hover { opacity:1; }
.search-box {
  display:flex; align-items:center; border-bottom:2px solid var(--accent); padding-bottom:12px;
}
.search-box input {
  flex:1; background:transparent; border:none; outline:none;
  font-size:26px; color:white; font-weight:700; font-family:"Playfair Display",serif;
}
.search-box input::placeholder { color:rgba(255,255,255,.3); }
.search-box button {
  background:transparent; border:none; color:var(--white); font-size:24px; cursor:pointer;
}
.search-hint { font-size:13px; color:rgba(255,255,255,.35); margin-top:16px; }

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
.toast-stack {
  position:fixed; bottom:24px; right:24px; z-index:2000;
  display:flex; flex-direction:column; gap:10px; pointer-events:none;
}
.toast-item {
  display:flex; align-items:center; gap:12px;
  background:var(--dark); color:white;
  padding:14px 18px; font-size:14px; font-weight:600;
  box-shadow:0 8px 30px rgba(0,0,0,.2); min-width:260px; max-width:340px;
  pointer-events:all;
  transform:translateX(110%); transition:transform .35s cubic-bezier(.34,1.56,.64,1);
}
.toast-item.show { transform:translateX(0); }
.toast-item.toast-success { border-left:4px solid var(--accent); }
.toast-item.toast-error   { border-left:4px solid #e55; }
.toast-item.toast-info    { border-left:4px solid #3b82f6; }
.toast-icon { font-size:18px; flex-shrink:0; }
.toast-success .toast-icon { color:var(--accent); }
.toast-error   .toast-icon { color:#e55; }
.toast-info    .toast-icon { color:#3b82f6; }
.toast-close {
  margin-left:auto; background:transparent; border:none; color:rgba(255,255,255,.5);
  cursor:pointer; font-size:16px; flex-shrink:0; padding:0; line-height:1;
}
.toast-close:hover { color:white; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position:fixed; bottom:28px; left:28px; width:44px; height:44px;
  background:var(--accent); color:white; border:none; cursor:pointer;
  font-size:16px; display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 16px rgba(240,140,0,.4);
  opacity:0; visibility:hidden; transform:translateY(12px);
  transition:opacity .3s ease, visibility .3s ease, transform .3s ease, background .2s ease;
  z-index:900;
}
.back-to-top.visible { opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top:hover { background:var(--accent-dark); }

/* ============================================================
   CART MINI DRAWER
   ============================================================ */
.cart-drawer {
  position:fixed; top:0; right:0; width:380px; max-width:100vw; height:100vh;
  background:var(--white); z-index:1100; box-shadow:-8px 0 40px rgba(0,0,0,.1);
  display:flex; flex-direction:column;
  transform:translateX(100%); transition:transform .35s cubic-bezier(.4,0,.2,1);
}
.cart-drawer.open { transform:translateX(0); }
.cart-backdrop {
  position:fixed; inset:0; background:rgba(0,0,0,.5); z-index:1099;
  opacity:0; visibility:hidden; transition:opacity .3s ease, visibility .3s ease;
}
.cart-backdrop.open { opacity:1; visibility:visible; }
.cart-drawer-header {
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 24px; border-bottom:1px solid var(--border);
}
.cart-drawer-title { font-size:17px; font-weight:700; color:var(--black); letter-spacing:.5px; }
.cart-drawer-close {
  background:transparent; border:none; font-size:22px; color:var(--text); cursor:pointer;
  padding:4px; transition:color .2s ease;
}
.cart-drawer-close:hover { color:var(--accent); }
.cart-drawer-body { flex:1; overflow-y:auto; padding:20px 24px; }
.cart-empty {
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  height:100%; text-align:center; color:var(--text-muted);
}
.cart-empty i { font-size:56px; margin-bottom:16px; opacity:.2; }
.cart-empty p { font-size:14px; }
.cart-item {
  display:flex; gap:16px; padding:16px 0; border-bottom:1px solid var(--border); align-items:center;
}
.cart-item:last-child { border-bottom:none; }
.cart-item-img {
  width:72px; height:72px; background:var(--light-bg); overflow:hidden; flex-shrink:0;
}
.cart-item-img img { width:100%; height:100%; object-fit:contain; }
.cart-item-info { flex:1; }
.cart-item-name { font-size:14px; font-weight:700; color:var(--black); margin-bottom:4px; }
.cart-item-meta { font-size:12px; color:var(--text-muted); margin-bottom:6px; }
.cart-item-price { font-size:15px; font-weight:700; color:var(--black); }
.cart-item-remove {
  background:transparent; border:none; color:var(--text-muted); cursor:pointer;
  font-size:16px; flex-shrink:0; padding:4px; transition:color .2s ease;
}
.cart-item-remove:hover { color:#e55; }
.cart-drawer-footer {
  padding:20px 24px; border-top:1px solid var(--border);
}
.cart-total-row {
  display:flex; justify-content:space-between; align-items:center;
  font-size:16px; font-weight:700; color:var(--black); margin-bottom:16px;
}
.cart-total-row span:last-child { font-size:20px; }

/* ============================================================
   GLOBAL FORM FIXES
   ============================================================ */
.form-control:focus,
.form-select:focus {
  border-color:var(--accent) !important;
  box-shadow:0 0 0 3px rgba(240,140,0,.08) !important;
}

/* Sticky add bar (product detail) */
.sticky-add-bar {
  position:fixed; bottom:0; left:0; right:0; z-index:500;
  background:var(--white); border-top:1px solid var(--border);
  padding:12px 20px; display:flex; align-items:center; justify-content:space-between;
  gap:12px; transform:translateY(100%); transition:transform .35s ease;
}
.sticky-add-bar.show { transform:translateY(0); }
.sticky-add-bar .sab-name { font-size:15px; font-weight:700; color:var(--black); }
.sticky-add-bar .sab-price { font-size:16px; font-weight:700; color:var(--black); }




.about-section { padding: 60px 0; overflow: hidden; background: #fff; }
.about-section.bg-light { background: #f8f8f6; }

.about-row {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 420px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.about-row.reverse { flex-direction: row-reverse; }

.about-img-wrap { flex: 0 0 62%; max-width: 62%; }
.about-img-wrap img { width: 100%; height: 420px; object-fit: cover; display: block; }

.about-card-wrap {
  flex: 0 0 46%; max-width: 46%;
  position: relative; z-index: 2;
  margin-left: -120px;           /* overlap onto image */
}
.about-row.reverse .about-card-wrap { margin-left: 0; margin-right: -120px; }

.content-box {
  background: #fff;
  padding: 48px 44px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.tag { color: #f57c00; font-size: 13px; font-weight: 600; display: block; margin-bottom: 14px; }
.title { font-size: 26px; font-weight: 800; color: #111; line-height: 1.3; margin-bottom: 18px; }
.content-box p { font-size: 14px; color: #555; line-height: 1.75; margin-bottom: 28px; }

.btn-read {
  display: inline-block; background: #f57c00; color: #fff;
  font-size: 14px; font-weight: 600; padding: 11px 28px;
  text-decoration: none; transition: background 0.2s;
}
.btn-read:hover { background: #e06b00; }

@media (max-width: 900px) {
  .about-row, .about-row.reverse { flex-direction: column; }
  .about-img-wrap { flex: none; max-width: 100%; }
  .about-img-wrap img { height: 260px; }
  .about-card-wrap { flex: none; max-width: 100%; margin: -40px 0 0 0 !important; }
}

/* ============================================================
   ABOUT SECTION (homepage overlap card – index.php)
   ============================================================ */
.about-section { padding: 0; overflow: hidden; }
.about-section.bg-light { background: var(--light-bg); }

/* ============================================================
   ABOUT US PAGE – mohanin.com style
   ============================================================ */

/* Full-width dark hero with background image */
.about-hero-banner {
  position: relative; height: 480px; overflow: hidden;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.about-hero-banner .hero-bg {
  position: absolute; inset: 0;
}
.about-hero-banner .hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.about-hero-banner .hero-overlay {
  position: absolute; inset: 0;
  background: rgba(28,34,48,.72);
}
.about-hero-banner .hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 20px;
}
.about-hero-banner h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 64px); font-weight: 900;
  color: #fff; margin-bottom: 14px; letter-spacing: 1px;
}
.about-hero-banner .hero-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  justify-content: center; font-size: 13px; color: rgba(255,255,255,.6);
  margin: 0;
}
.about-hero-banner .hero-breadcrumb a { color: rgba(255,255,255,.6); }
.about-hero-banner .hero-breadcrumb a:hover { color: var(--accent); }
.about-hero-banner .hero-breadcrumb li.active { color: var(--accent); }
.about-hero-banner .hero-breadcrumb li:not(:last-child)::after {
  content: "/"; margin-left: 8px; color: rgba(255,255,255,.3);
}

/* Orange video link strip */
.video-link-strip {
  background: var(--accent); padding: 12px 0; text-align: center;
}
.video-link-strip a {
  font-size: 13px; font-weight: 700; color: #fff;
  letter-spacing: .5px; display: inline-flex; align-items: center; gap: 10px;
}
.video-link-strip a:hover { color: rgba(255,255,255,.8); }
.video-link-strip i { font-size: 11px; transition: transform .3s ease; }
.video-link-strip a:hover i { transform: translateX(5px); }

/* About intro split section */
.about-intro-split {
  padding: 90px 0; background: #fff;
}
.about-intro-split .split-img {
  width: 100%; height: 100%;
  min-height: 460px; overflow: hidden;
}
.about-intro-split .split-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.about-intro-split .split-content {
  padding: 40px 60px; display: flex;
  flex-direction: column; justify-content: center;
}
.about-intro-split .split-content .about-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 16px;
}
.about-intro-split .split-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px,3vw,42px); font-weight: 900;
  color: var(--dark); line-height: 1.15; margin-bottom: 20px;
}
.about-intro-split .split-content p {
  font-size: 15px; color: var(--text-light); line-height: 1.85; margin-bottom: 14px;
}

/* Stats strip for about page */
.about-stats-strip {
  background: var(--dark); padding: 56px 0;
}
.about-stats-strip .stat-col {
  text-align: center; padding: 16px 0;
  border-right: 1px solid rgba(255,255,255,.1);
}
.about-stats-strip .stat-col:last-child { border-right: none; }
.about-stats-strip .stat-num {
  font-family: "Playfair Display", serif;
  font-size: 52px; font-weight: 900;
  color: var(--accent); line-height: 1; margin-bottom: 10px;
}
.about-stats-strip .stat-lbl {
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: 1.5px;
}

/* Dark mission/vision/focus cards section */
.mission-section {
  padding: 0; background: var(--dark);
}
.mission-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
}
.mission-card {
  position: relative; height: 380px; overflow: hidden; cursor: pointer;
}
.mission-card .mc-bg {
  position: absolute; inset: 0;
}
.mission-card .mc-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.mission-card:hover .mc-bg img { transform: scale(1.07); }
.mission-card .mc-overlay {
  position: absolute; inset: 0;
  background: rgba(28,34,48,.75);
  transition: background .4s ease;
}
.mission-card:hover .mc-overlay { background: rgba(28,34,48,.85); }
.mission-card .mc-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px 32px; z-index: 2;
}
.mission-card .mc-icon {
  font-size: 28px; color: var(--accent);
  margin-bottom: 14px;
}
.mission-card .mc-title {
  font-family: "Playfair Display", serif;
  font-size: 22px; font-weight: 700; color: #fff;
  margin-bottom: 10px;
}
.mission-card .mc-text {
  font-size: 13px; color: rgba(255,255,255,.65);
  line-height: 1.75; margin: 0;
}

/* Our Collections / Businesses cards section */
.collections-cards-section {
  padding: 80px 0; background: #fff;
}
.collections-cards-section .section-head {
  margin-bottom: 44px;
}
.business-card {
  position: relative; overflow: hidden; cursor: pointer;
}
.business-card .bc-img {
  aspect-ratio: 4/3; overflow: hidden;
}
.business-card .bc-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s ease;
}
.business-card:hover .bc-img img { transform: scale(1.06); }
.business-card .bc-info {
  padding: 20px 4px 8px;
}
.business-card .bc-label {
  font-size: 11px; font-weight: 700; color: var(--accent);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; display: block;
}
.business-card .bc-title {
  font-size: 18px; font-weight: 700; color: var(--dark);
}
.business-card:hover .bc-title { color: var(--accent); }

/* ============================================================
   PRODUCTS PAGE – mohanin.com alternating layout
   ============================================================ */
.products-intro {
  padding: 56px 0 0; background: #fff; text-align: center;
}
.products-intro p {
  font-size: 15px; color: var(--text-light);
  line-height: 1.85; max-width: 820px; margin: 14px auto 0;
}

.product-category-row {
  padding: 70px 0; background: #fff;
  border-bottom: 1px solid var(--border);
}
.product-category-row:nth-child(even) { background: var(--light-bg); }
.product-category-row:last-child { border-bottom: none; }

.pcr-img {
  overflow: hidden; height: 100%; min-height: 400px;
}
.pcr-img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform .55s ease;
}
.product-category-row:hover .pcr-img img { transform: scale(1.04); }

.pcr-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 40px 60px;
}
.pcr-label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.pcr-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 42px); font-weight: 900;
  color: var(--dark); line-height: 1.15; margin-bottom: 18px;
}
.pcr-text {
  font-size: 15px; color: var(--text-light);
  line-height: 1.85; margin-bottom: 30px;
}
.pcr-features {
  list-style: none; margin: 0 0 30px; padding: 0;
}
.pcr-features li {
  font-size: 14px; color: var(--text-light);
  padding: 7px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.pcr-features li:last-child { border-bottom: none; }
.pcr-features li i { color: var(--accent); font-size: 12px; }

/* ============================================================
   CATEGORY DETAIL PAGE – mohanin.com Fashion style
   ============================================================ */
.cat-detail-intro {
  padding: 60px 0 0; background: #fff;
}
.cat-detail-intro h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3vw, 40px); font-weight: 900;
  color: var(--dark); margin-bottom: 14px;
}
.cat-detail-intro p {
  font-size: 15px; color: var(--text-light); line-height: 1.85;
}

.cat-sub-section {
  padding: 56px 0; background: #fff;
}
.cat-sub-section:nth-child(even) { background: var(--light-bg); }

.cat-sub-title {
  font-family: "Playfair Display", serif;
  font-size: 28px; font-weight: 900; color: var(--dark);
  margin-bottom: 30px; padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}
.cat-sub-title span { color: var(--accent); }

.cat-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat-product-item {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--light-bg);
}
.cat-product-item .cpi-img {
  aspect-ratio: 3/4; overflow: hidden;
}
.cat-product-item .cpi-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.cat-product-item:hover .cpi-img img { transform: scale(1.06); }
.cat-product-item .cpi-overlay {
  position: absolute; inset: 0;
  background: rgba(240,140,0,0); display: flex;
  align-items: center; justify-content: center;
  transition: background .35s ease;
}
.cat-product-item:hover .cpi-overlay { background: rgba(240,140,0,.18); }
.cpi-btn {
  opacity: 0; transform: translateY(10px);
  transition: all .3s ease;
  background: var(--accent); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 10px 24px; border: none; cursor: pointer;
}
.cat-product-item:hover .cpi-btn {
  opacity: 1; transform: translateY(0);
}
.cpi-name {
  padding: 12px 14px 14px;
  font-size: 14px; font-weight: 600; color: var(--dark);
  background: #fff; text-align: center;
}

.load-more-wrap {
  text-align: center; padding: 10px 0 40px;
}
.btn-load-more {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: #fff;
  font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 13px 40px; border: none; cursor: pointer;
  transition: background .3s ease;
}
.btn-load-more:hover { background: var(--accent-dark); color: #fff; }

/* ============================================================
   RESPONSIVE ADDITIONS FOR NEW PAGES
   ============================================================ */
@media (max-width: 991px) {
  .about-intro-split .split-img { min-height: 300px; }
  .about-intro-split .split-content { padding: 36px 28px; }
  .mission-grid { grid-template-columns: 1fr; }
  .mission-card { height: 300px; }
  .pcr-content { padding: 36px 28px; }
  .pcr-title { font-size: 26px; }
  .cat-product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 767px) {
  .about-hero-banner { height: 320px; }
  .about-hero-banner h1 { font-size: 30px; }
  .about-stats-strip .stat-num { font-size: 36px; }
  .about-stats-strip .stat-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .business-card .bc-title { font-size: 15px; }
  .pcr-content { padding: 28px 16px; }
  .pcr-title { font-size: 22px; }
  .product-category-row { padding: 44px 0; }
  .cat-product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cat-sub-title { font-size: 22px; }
}
@media (max-width: 479px) {
  .cat-product-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}

/* ============================================================
   CATEGORY PAGE – cat tab strip, listing, feature strip
   ============================================================ */
.cat-tab-strip {
  background: #fff;
  border-bottom: 2px solid var(--border);
}
.cat-tabs {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 0; overflow-x: auto;
}
.cat-tabs li a {
  display: inline-block;
  padding: 18px 32px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-light);
  border-bottom: 3px solid transparent;
  transition: color .25s ease, border-color .25s ease;
  white-space: nowrap; text-decoration: none;
}
.cat-tabs li a:hover { color: var(--accent); }
.cat-tabs li a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.cat-listing-section {
  padding: 56px 0 70px;
  background: var(--light-bg);
}

.cat-info-widget {
  background: var(--dark);
  border-radius: 4px;
  padding: 28px 24px !important;
}
.cat-badge-label {
  display: inline-block;
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px;
}
.cat-widget-desc {
  font-size: 13px; color: rgba(255,255,255,.65);
  line-height: 1.75; margin: 0;
}

.sidebar-cat-list {
  list-style: none; margin: 0; padding: 0;
}
.sidebar-cat-list li {
  border-bottom: 1px solid var(--border);
}
.sidebar-cat-list li:last-child { border-bottom: none; }
.sidebar-cat-list li a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0; font-size: 14px; color: var(--text);
  text-decoration: none; transition: color .2s ease;
}
.sidebar-cat-list li a span {
  font-size: 12px; color: var(--text-light);
  background: var(--light-bg); padding: 2px 8px; border-radius: 20px;
}
.sidebar-cat-list li a:hover,
.sidebar-cat-list li.active a { color: var(--accent); }
.sidebar-cat-list li.active a { font-weight: 700; }

/* Category feature strip */
.cat-feature-strip {
  background: var(--dark);
  padding: 0;
}
.cfs-item {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 22px 16px;
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,.75);
  border-right: 1px solid rgba(255,255,255,.08);
  cursor: default;
  transition: color .25s ease;
}
.cfs-item:hover { color: var(--accent); }
.cfs-item i {
  font-size: 20px; color: var(--accent);
  transition: transform .3s ease;
}
.cfs-item:hover i { transform: scale(1.15); }

@media (max-width: 991px) {
  .cat-tabs li a { padding: 14px 20px; font-size: 12px; }
  .cat-listing-section { padding: 40px 0 56px; }
}
@media (max-width: 767px) {
  .cfs-item { padding: 16px 10px; font-size: 11px; gap: 8px; }
  .cfs-item i { font-size: 16px; }
}