@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 0.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: -0.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: 0.8px;
  text-transform: uppercase;
}
.btnTheme::after {
  content: "";
  width: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.12);
  position: absolute;
  right: 0;
  transition: all 0.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: 0.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 0.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: 0.5px;
}
.btnOutline:hover {
  color: var(--accent-dark);
}
.btnOutline i {
  transition: transform 0.3s ease;
}
.btnOutline:hover i {
  transform: translateX(4px);
}

/* ============ TOP BAR ============ */
.topBar {
  background: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}
.topBar .containerFull {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
}
.topBar-left {
  font-size: 12px;
  letter-spacing: 0.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, 0.65);
  cursor: pointer;
  outline: none;
  padding: 0 4px;
}
.topBar-right .sep {
  color: rgba(255, 255, 255, 0.25);
}
.topBar-right a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}
.topBar-right a:hover {
  color: var(--accent);
}

/* ============ HEADER ============ */
header {
  height: 110px;
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow 0.3s ease;
}
header.stricky-fixed {
  box-shadow: 0 2px 20px rgba(0, 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: 17px;
  font-weight: 600;
  color: var(--text);
  padding: 8px 24px;
  letter-spacing: 0.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 0.3s ease;
  z-index: 300;
  box-shadow: 0 8px 30px rgba(0, 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: 0.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);
}
.centerLogo img {
  width: 170px;
  /* height: 100%; */
  object-fit: cover;
}

/* 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: 0.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, 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, 0.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, 0.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 0.3s ease;
}
.hero-slide-btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
}
.hero-slide-btn i {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide-btn:hover i {
  transform: translateX(7px);
}

/* Hero slide content entrance animation */
.slick-active .hero-slide-label {
  animation: fadeInUp 0.55s 0.1s ease both;
}
.slick-active .hero-slide-title {
  animation: fadeInUp 0.6s 0.25s ease both;
}
.slick-active .hero-slide-desc {
  animation: fadeInUp 0.6s 0.38s ease both;
}
.slick-active .hero-slide-btn {
  animation: fadeInUp 0.6s 0.5s ease both;
}

/* Slick dots */
.heroSlider .slick-dots {
  bottom: 28px;
}
.heroSlider .slick-dots li button:before {
  color: var(--white);
  opacity: 0.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, 0.75);
  border: none;
  transition: background 0.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, 0.1);
  border-radius: 50%;
  transition: background 0.3s ease;
}
.cap-item:hover .cap-icon {
  background: var(--accent);
}
.cap-icon i {
  font-size: 28px;
  color: var(--accent);
  transition: color 0.3s ease;
}
.cap-item:hover .cap-icon i {
  color: var(--white);
}
.cap-item {
  transition: transform 0.3s ease;
}
.cap-item:hover {
  transform: translateY(-5px);
}
.cap-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cap-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.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;
  border-radius: 5px;
}
.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.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, 0.75) 0%,
    rgba(0, 0, 0, 0.1) 55%,
    transparent 100%
  );
  transition: background 0.4s ease;
}
.cat-card:hover .cat-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 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 0.3s ease,
    color 0.3s ease;
}
.cat-card:hover .cat-card-link {
  gap: 12px;
  color: var(--accent);
}
.cat-card-link i {
  font-size: 10px;
}

/* ============================================================
   SMOOTH ANIMATION KEYFRAMES
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(240, 140, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(240, 140, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(240, 140, 0, 0);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* ── Animation utility classes ── */
.anim-fade-up {
  animation: fadeInUp 0.6s ease both;
}
.anim-fade-left {
  animation: fadeInLeft 0.6s ease both;
}
.anim-fade-right {
  animation: fadeInRight 0.6s ease both;
}
.anim-scale-in {
  animation: scaleIn 0.5s ease both;
}
.anim-float {
  animation: floatY 3s ease-in-out infinite;
}

/* ── Enhanced icon hover pulse ── */
.cap-item:hover .cap-icon {
  animation: pulseRing 0.6s ease;
}
/* 
/* ============================================================
   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, 0.18);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.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 0.3s ease;
}
.value-home-item:hover {
  background: var(--accent);
}
.value-home-icon {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 18px;
  transition: color 0.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 0.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 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.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 0.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 0.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, 0.12);
  transition: all 0.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, 0.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, 0.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, 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 0.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: 0.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 0.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 img {
  width: 160px;
  object-fit: cover;
}
.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, 0.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, 0.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, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}
.social-icon-list li a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: translateY(-3px);
}

.footer-contact-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.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, 0.5);
}
.footer-contact-list li a:hover {
  color: var(--accent);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 0;
}
.copyRight {
  padding: 18px 0;
  background: rgba(0, 0, 0, 0.35);
}
.copyRight p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  letter-spacing: 0.3px;
}

/* ============================================================
   INNER PAGES – SHARED COMPONENTS
   ============================================================ */
.page-enter {
  animation: pageFadeIn 0.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, 0.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, 0.5);
}
.breadcrumb-list li a {
  color: rgba(255, 255, 255, 0.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 0.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 0.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 0.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 0.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 0.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 0.25s ease;
}
.size-btn:hover,
.size-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.size-btn.unavailable {
  opacity: 0.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 0.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 0.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 0.25s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.prod-tab-btn::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.prod-tab-btn.active {
  color: var(--accent);
}
.prod-tab-btn.active::after {
  width: 100%;
}

.tab-pane {
  display: none;
  animation: tabFadeIn 0.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, 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, 0.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 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--accent);
}
.value-icon {
  width: 64px;
  height: 64px;
  border: 2px solid rgba(240, 140, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--accent);
  margin: 0 auto 20px;
  transition: all 0.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 0.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 0.3s ease,
    border-color 0.3s ease;
}
.contact-info-card:hover {
  box-shadow: 0 8px 24px rgba(0, 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: 0.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 0.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, 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 0.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, 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 0.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 0.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 0.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 0.4s ease,
    visibility 0.4s ease;
}
#pageLoader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo img {
  width: 300px;
  object-fit: cover;
  animation: loaderPulse 1s ease-in-out infinite alternate;
}
.loader-logo span {
  color: var(--accent);
}
@keyframes loaderPulse {
  from {
    opacity: 0.4;
    transform: scale(0.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 0.3s ease;
}

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.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 0.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: 0.6;
  transition: opacity 0.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, 0.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, 0.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, 0.2);
  min-width: 260px;
  max-width: 340px;
  pointer-events: all;
  transform: translateX(110%);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.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, 0.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, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    background 0.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, 0.1);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-drawer.open {
  transform: translateX(0);
}
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1099;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.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: 0.5px;
}
.cart-drawer-close {
  background: transparent;
  border: none;
  font-size: 22px;
  color: var(--text);
  cursor: pointer;
  padding: 4px;
  transition: color 0.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: 0.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 0.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, 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 0.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: 600px;
  object-fit: contain;
  display: block;
}

.about-card-wrap {
  flex: 0 0 66%;
  max-width: 50%;
  position: relative;
  z-index: 2;
  margin-left: -120px; /* overlap onto image */
}
.about-row.reverse .about-card-wrap {
  margin-left: 0;
  margin-right: -120px;
}
.video-box {
  max-width: 100%;
  margin: 40px auto;
  padding: 10px;
}

.video-box video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.content-box {
  background: #fff;
  padding: 48px 44px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.content-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.16);
}
.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-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.btn-read::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}
.btn-read:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.btn-read:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 140, 0, 0.35);
}

@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, 0.72);
}
.about-hero-banner .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  animation: fadeInUp 0.7s 0.2s ease both;
}
.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, 0.6);
  margin: 0;
}
.about-hero-banner .hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.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, 0.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: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.video-link-strip a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.video-link-strip i {
  font-size: 11px;
  transition: transform 0.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: contain;
  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, 0.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, 0.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 0.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, 0.75);
  transition: background 0.4s ease;
}
.mission-card:hover .mc-overlay {
  background: rgba(28, 34, 48, 0.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, 0.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 {
  overflow: hidden;
  object-fit: contain;
  /* border: 1px solid red; */
}
.business-card .bc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.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;
}

.product-category-row:last-child {
  border-bottom: none;
}

.pcr-img {
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}
.pcr-img img {
  width: 100%;
  height: 600px;
  object-fit: contain;
  display: block;
  transition: transform 0.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 0.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 0.35s ease;
}
.cat-product-item:hover .cpi-overlay {
  background: rgba(240, 140, 0, 0.18);
}
.cpi-btn {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.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;
}

/* ── OVERVIEW SPLIT ────────────────────────────────── */
.sus-overview {
  padding: 90px 0;
  background: #fff;
}
.sus-overview .split-img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
  border-radius: 4px;
}
.sus-overview .split-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.55s ease;
}
.sus-overview .split-img:hover img {
  transform: scale(1.04);
}
.sus-overview .split-content {
  padding: 24px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 100px;
}
.sus-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.sus-overview h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 18px;
}
.sus-overview p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 14px;
}
.sus-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}
.sus-pillar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--light-bg);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}
.sus-pillar i {
  font-size: 18px;
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}
.sus-pillar-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}
.sus-pillar-text {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

/* ── STATS STRIP ───────────────────────────────────── */
.sus-stats {
  background: var(--dark);
  padding: 0;
}
.sus-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.sus-stat-col {
  text-align: center;
  padding: 52px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transition: background 0.3s ease;
}
.sus-stat-col:hover {
  background: rgba(240, 140, 0, 0.06);
}
.sus-stat-col:last-child {
  border-right: none;
}
.sus-stat-col::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background: var(--accent);
  margin: 14px auto 0;
}
.sus-stat-num {
  font-family: "Playfair Display", serif;
  font-size: 54px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.sus-stat-suffix {
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
}
.sus-stat-lbl {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 10px;
}

/* ── TIMELINE ──────────────────────────────────────── */
.sus-timeline-section {
  padding: 90px 0;
  background: var(--light-bg);
}
.sus-timeline-head {
  text-align: center;
  margin-bottom: 70px;
}
.sus-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.sus-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--accent) 0%,
    rgba(240, 140, 0, 0.2) 100%
  );
  transform: translateX(-50%);
}
.tl-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 56px;
  position: relative;
}
.tl-item:last-child {
  margin-bottom: 0;
}

/* Odd items – content LEFT, year RIGHT */
.tl-item:nth-child(odd) {
  flex-direction: row;
}
.tl-item:nth-child(even) {
  flex-direction: row-reverse;
}

.tl-content {
  flex: 0 0 calc(50% - 36px);
  max-width: calc(50% - 36px);
  background: #fff;
  border-radius: 10px;
  padding: 28px 30px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border-top: 3px solid var(--accent);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.tl-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}
.tl-item:nth-child(odd) .tl-content {
  margin-right: auto;
}
.tl-item:nth-child(even) .tl-content {
  margin-left: auto;
}

.tl-dot {
  position: absolute;
  left: 50%;
  top: 28px;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 5px rgba(240, 140, 0, 0.18);
  flex-shrink: 0;
}
.tl-dot i {
  font-size: 18px;
  color: #fff;
}

.tl-year {
  position: absolute;
  top: 36px;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.tl-item:nth-child(odd) .tl-year {
  left: calc(50% + 66px);
}
.tl-item:nth-child(even) .tl-year {
  right: calc(50% + 66px);
  text-align: right;
}

.tl-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}
.tl-title {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.tl-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.75;
  margin: 0;
}

/* ── AWARDS ────────────────────────────────────────── */
.sus-awards {
  padding: 90px 0;
  background: #fff;
}
.sus-awards-head {
  text-align: center;
  margin-bottom: 56px;
}
.award-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.award-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}
.award-card:hover {
  border-color: rgba(240, 140, 0, 0.4);
  box-shadow: 0 10px 40px rgba(240, 140, 0, 0.12);
  transform: translateY(-4px);
}
.award-card:hover::before {
  transform: scaleX(1);
}

.award-icon-wrap {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  background: rgba(240, 140, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--accent);
  margin-bottom: 20px;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}
.award-card:hover .award-icon-wrap {
  background: var(--accent);
  color: #fff;
}

.award-year {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(240, 140, 0, 0.1);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.award-title {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 10px;
}
.award-body {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.75;
  margin: 0;
}
.award-issuer {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.award-issuer i {
  color: var(--accent);
  font-size: 12px;
}

/* ── COMMITMENT STRIP ──────────────────────────────── */
.sus-commit {
  padding: 90px 0;
  background: var(--dark);
}
.sus-commit-head {
  text-align: center;
  margin-bottom: 56px;
}
.sus-commit-head .section-title {
  color: #fff;
}
.sus-commit-head .section-subtitle {
  color: rgba(255, 255, 255, 0.5);
}

.commit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.commit-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
}
.commit-card:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-4px);
}
.commit-icon {
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 18px;
  transition: color 0.3s ease;
}
.commit-card:hover .commit-icon {
  color: #fff;
}
.commit-title {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.commit-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin: 0;
  transition: color 0.3s ease;
}
.commit-card:hover .commit-text {
  color: rgba(255, 255, 255, 0.85);
}

/* ── CTA BANNER ────────────────────────────────────── */
.sus-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #f08c00 0%, #d47b00 100%);
  position: relative;
  overflow: hidden;
}
.sus-cta::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}
.sus-cta::after {
  content: "";
  position: absolute;
  left: -60px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.sus-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.sus-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}
.sus-cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.sus-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn-white {
  background: #fff;
  color: var(--accent);
  padding: 14px 36px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  border: 2px solid #fff;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-btn-white:hover {
  background: transparent;
  color: #fff;
}
.cta-btn-outline {
  background: transparent;
  color: #fff;
  padding: 14px 36px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-btn-outline:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 991px) {
  .sus-overview .split-content {
    padding: 36px 28px;
  }
  .sus-overview .split-img {
    min-height: 340px;
  }
  .sus-stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .sus-stat-col {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .sus-stat-col:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .sus-stat-col:last-child,
  .sus-stat-col:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }
  .commit-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .sus-overview {
    padding: 56px 0;
  }
  .sus-overview .split-img {
    min-height: 240px;
  }
  .sus-overview .split-content {
    padding: 28px 0;
  }
  .sus-pillars {
    grid-template-columns: 1fr;
  }
  .sus-timeline-section {
    padding: 56px 0;
  }
  .sus-timeline-head {
    margin-bottom: 40px;
  }

  /* Single-column timeline on mobile */
  .sus-timeline::before {
    left: 24px;
    transform: none;
  }
  .tl-item,
  .tl-item:nth-child(odd),
  .tl-item:nth-child(even) {
    flex-direction: column;
    padding-left: 64px;
  }
  .tl-content,
  .tl-item:nth-child(odd) .tl-content,
  .tl-item:nth-child(even) .tl-content {
    flex: none;
    max-width: 100%;
    margin: 0;
  }
  .tl-dot {
    left: 24px;
    top: 0;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
  }
  .tl-dot i {
    font-size: 15px;
  }
  .tl-year,
  .tl-item:nth-child(odd) .tl-year,
  .tl-item:nth-child(even) .tl-year {
    position: static;
    display: block;
    text-align: left;
    margin-bottom: 8px;
    font-size: 11px;
  }
  .tl-content {
    padding: 22px 20px;
  }
  .sus-awards {
    padding: 56px 0;
  }
  .commit-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .sus-commit {
    padding: 56px 0;
  }
  .sus-cta {
    padding: 64px 0;
  }
  .sus-stat-num {
    font-size: 40px;
  }
}

@media (max-width: 479px) {
  .sus-stats-inner {
    grid-template-columns: 1fr 1fr;
  }
  .sus-stat-col {
    padding: 36px 16px;
  }
  .sus-stat-num {
    font-size: 34px;
  }
  .sus-stat-lbl {
    font-size: 10px;
  }
  .award-card {
    padding: 24px 18px;
  }
}

.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 0.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, 0.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 0.25s ease,
    border-color 0.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, 0.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 0.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, 0.75);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  cursor: default;
  transition: color 0.25s ease;
}
.cfs-item:hover {
  color: var(--accent);
}
.cfs-item i {
  font-size: 20px;
  color: var(--accent);
  transition: transform 0.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;
  }
}
.ct-hero {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #2d3a52 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.ct-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(240, 140, 0, 0.08);
  pointer-events: none;
}
.ct-hero::before {
  content: "";
  position: absolute;
  left: -40px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(240, 140, 0, 0.05);
  pointer-events: none;
}
.ct-hero-inner {
  position: relative;
  z-index: 1;
}
.ct-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240, 140, 0, 0.15);
  border: 1px solid rgba(240, 140, 0, 0.35);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.ct-hero h1 {
  font-family: "Merriweather", serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px;
}
.ct-hero h1 span {
  color: var(--accent);
}
.ct-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  max-width: 500px;
  line-height: 1.8;
}
.ct-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 24px;
}
.ct-breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
}
.ct-breadcrumb a:hover {
  color: var(--accent);
}
.ct-breadcrumb .cur {
  color: var(--accent);
  font-weight: 600;
}

/* QUICK INFO STRIP */
.ct-quick-strip {
  background: var(--accent);
}
.ct-quick-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  flex: 1;
}
.ct-quick-item:last-child {
  border-right: none;
}
.ct-quick-item i {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.85);
}
.ct-quick-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}
.ct-quick-val {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-top: 1px;
}

/* MAIN CONTACT SECTION */
.ct-main {
  padding: 90px 0;
  background: #fff;
}

/* LEFT PANEL */
.ct-panel-left {
  padding-right: 48px;
}
.ct-panel-eyebrow {
  display: inline-block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ct-panel-left h2 {
  font-family: "Merriweather", serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 12px;
}
.ct-panel-left > p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 32px;
}

/* Info cards */
.ct-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 12px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  margin-bottom: 14px;
  transition: all 0.25s ease;
}
.ct-info-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(240, 140, 0, 0.12);
  transform: translateX(4px);
}
.ct-info-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}
.ct-info-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.ct-info-val {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
  line-height: 1.6;
}
.ct-info-val a {
  color: var(--primary);
}
.ct-info-val a:hover {
  color: var(--accent);
}

/* Map */
.ct-map {
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  height: 200px;
  border: 1px solid var(--border);
}
.ct-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Socials */
.ct-socials {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.ct-socials-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.ct-social-links {
  display: flex;
  gap: 10px;
}
.ct-social-links a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--text-light);
  transition: all 0.25s ease;
}
.ct-social-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

/* FORM PANEL */
.ct-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
}
.ct-form-head h3 {
  font-family: "Merriweather", serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 6px;
}
.ct-form-head p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 28px;
}
.ct-form-wrap .form-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.ct-form-wrap .form-control,
.ct-form-wrap .form-select {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--primary);
  background: #fafafa;
  transition: all 0.25s ease;
}
.ct-form-wrap .form-control:focus,
.ct-form-wrap .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(240, 140, 0, 0.12);
  background: #fff;
  outline: none;
}
.ct-form-wrap textarea.form-control {
  resize: none;
}
.ct-submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.ct-submit-btn {
  background: var(--accent);
  color: #fff;
  padding: 14px 36px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ct-submit-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 140, 0, 0.35);
}
.ct-submit-note {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.ct-submit-note i {
  color: var(--accent);
}

/* Alerts */
.ct-alert-success {
  background: #edfaf5;
  border: 1.5px solid #34d399;
  border-radius: 10px;
  padding: 16px 22px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #065f46;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ct-alert-error {
  background: #fef2f2;
  border: 1.5px solid #f87171;
  border-radius: 10px;
  padding: 14px 20px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #991b1b;
}
.ct-alert-error ul {
  margin: 0;
  padding-left: 18px;
}

/* FAQ */
.ct-faq {
  padding: 90px 0;
  background: var(--light-bg);
}
.ct-faq-head {
  text-align: center;
  margin-bottom: 50px;
}
.ct-faq-head .eyebrow {
  display: inline-block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ct-faq-head h2 {
  font-family: "Merriweather", serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  color: var(--primary);
}
.ct-faq-head p {
  font-size: 15px;
  color: var(--text-light);
  max-width: 480px;
  margin: 10px auto 0;
}
.ct-faq-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.ct-faq-item:hover {
  border-color: rgba(240, 140, 0, 0.4);
}
.ct-faq-btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.ct-faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(240, 140, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--accent);
  transition: all 0.3s ease;
}
.ct-faq-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}
.ct-faq-body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.85;
  padding: 0 24px 20px;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .ct-panel-left {
    padding-right: 0;
    margin-bottom: 48px;
  }
  .ct-quick-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
@media (max-width: 767px) {
  .ct-form-wrap {
    padding: 28px 20px;
  }
  .ct-quick-strip .d-flex {
    flex-wrap: wrap;
  }
  .ct-quick-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
  }
}
.badge-new {
    background: #2ecc71;
    color: white;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-card-inner img {
    width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card-inner img {
    transform: scale(1.02);
}

.sticky-add-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    padding: 12px 30px;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
    .sticky-add-bar {
        padding: 10px 16px;
    }
    .product-card-inner img {
        height: fit-content;
        aspect-ratio: 4/5;
    }
}

.form-select-sm {
    font-size: 13px;
    padding: 5px 25px 5px 12px;
    background-color: var(--light-bg);
    border-color: var(--border);
}
