/* =========================================================
   SISFORA — LUXURY COSMETICS STYLING
   Premium / Elegant / Responsive
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

:root {
  --sf-black: #1b1715;
  --sf-dark: #241e1b;
  --sf-brown: #3a2c27;
  --sf-gold: #b58a3c;
  --sf-gold-light: #d2aa61;
  --sf-cream: #f8f4ed;
  --sf-ivory: #fffdf9;
  --sf-beige: #eee5d9;
  --sf-blush: #f5e9e5;
  --sf-text: #292321;
  --sf-muted: #817670;

  --sf-serif: "Playfair Display", Georgia, serif;
  --sf-sans: "DM Sans", Arial, sans-serif;

  --sf-transition: all 0.35s cubic-bezier(.22,.61,.36,1);
}

/* =========================================================
   GLOBAL
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--sf-cream);
  color: var(--sf-text);
  font-family: var(--sf-sans);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--sf-transition);
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: var(--sf-gold);
  color: white;
}

/* =========================================================
   TOPBAR
========================================================= */

.sf-topbar {
  background: #eee7dd;
  color: #695e57;
  font-size: 12px;
  letter-spacing: .5px;
}

.sf-topbar a {
  color: var(--sf-gold);
  font-weight: 600;
}

.sf-topbar a:hover {
  color: var(--sf-black);
}

/* =========================================================
   NAVBAR
========================================================= */

.navbar-sisfora {
  background: #ffffff;
  min-height: 72px;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
  z-index: 999;
}

.navbar-sisfora.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
}

.navbar-sisfora .container {
  min-height: 72px;
}

/* Logo */

.sf-logo-brand {
  display: flex;
  align-items: center;
}

.sf-logo-img {
  width: 80px;
  height: 58px;
  object-fit: contain;
  transition: var(--sf-transition);
}

.sf-logo-brand:hover .sf-logo-img {
  transform: scale(1.04);
}

/* Navigation */

.navbar-sisfora .navbar-nav {
  gap: 0;
}

.navbar-sisfora .nav-link {
  position: relative;
  color: #2d2d2d;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  padding: 26px 14px !important;
  transition: var(--sf-transition);
  text-transform: none;
}

.navbar-sisfora .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: 0;
  height: 1.5px;
  background: #2d2d2d;
  transform: translateX(-50%);
  transition: width .35s ease;
}

.navbar-sisfora .nav-link:hover,
.navbar-sisfora .nav-link.active {
  color: #000;
}

.navbar-sisfora .nav-link:hover::after,
.navbar-sisfora .nav-link.active::after {
  width: 55%;
}

/* Navbar icons */

.nav-icon-link {
  position: relative;
  color: #2d2d2d;
  font-size: 20px;
  margin-left: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--sf-transition);
}

.nav-icon-link:hover {
  color: #000;
  transform: translateY(-2px);
}

.badge-count {
  position: absolute;
  top: -8px;
  right: -9px;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #c8a45a;
  color: white;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-toggler {
  color: #333333 !important;
}

/* Search pill — inline desktop search box */

.sf-search-pill {
  display: inline-flex;
  align-items: center;
  background: #f2f2f2;
  border-radius: 50px;
  padding: 8px 16px;
  width: 210px;
  margin-right: 2px;
  border: 1.5px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: text;
}

.sf-search-pill:focus-within {
  border-color: #d8d8d8;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, .04);
  background: #fff;
}

.sf-search-pill .bi-search {
  color: #888;
  font-size: 14px;
  flex-shrink: 0;
  margin-right: 8px;
}

.sf-search-pill input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 13px;
  color: #333;
  width: 100%;
  font-family: var(--sf-sans);
}

.sf-search-pill input::placeholder {
  color: #aaa;
}

/* =========================================================
   NAV DROPDOWNS
========================================================= */

.sf-caret {
  font-size: 9px;
  margin-left: 3px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.navbar-sisfora .sf-nav-dropdown.show .sf-caret,
.navbar-sisfora .sf-nav-dropdown:hover .sf-caret {
  transform: rotate(180deg);
}

.sf-dropdown-menu {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-top: 2px solid #2d2d2d;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
  padding: 8px 0;
  min-width: 200px;
  margin-top: 0 !important;
}

.sf-dropdown-item {
  color: #333333;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2px;
  text-transform: none;
  padding: 9px 22px;
  transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
}

.sf-dropdown-item:hover,
.sf-dropdown-item:focus {
  color: #000;
  background: #f5f5f5;
  padding-left: 26px;
}

.sf-divider {
  border-color: #eeeeee;
  margin: 4px 12px;
}

/* Keep parent link highlighted while dropdown area is hovered */
.navbar-sisfora .sf-nav-dropdown:hover > .nav-link {
  color: #000;
}

.navbar-sisfora .sf-nav-dropdown:hover > .nav-link::after {
  width: 55%;
}

/* Desktop: smooth fade-down on hover */
@media (min-width: 992px) {
  .navbar-sisfora .sf-nav-dropdown .sf-dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
    pointer-events: none;
  }

  .navbar-sisfora .sf-nav-dropdown:hover > .sf-dropdown-menu,
  .navbar-sisfora .sf-nav-dropdown.show > .sf-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
}

/* Mobile: light accordion menu */
@media (max-width: 991px) {
  .navbar-sisfora {
    background: #ffffff;
  }

  .navbar-sisfora .navbar-collapse {
    background: #ffffff;
    border-top: 1px solid #eeeeee;
    padding: 8px 0 12px;
  }

  .navbar-sisfora .nav-link {
    padding: 12px 16px !important;
    color: #2d2d2d;
  }

  .navbar-sisfora .sf-nav-dropdown .sf-dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: 1px solid #eeeeee;
    border-top: 1px solid #eeeeee;
    border-radius: 4px;
    background: #f8f8f8;
    margin: 0 0 6px 0 !important;
    padding: 4px 0;
  }

  .sf-dropdown-item {
    color: #444444;
    text-align: left;
    font-size: 12px;
    padding: 8px 20px;
  }

  .sf-dropdown-item:hover {
    color: #000;
    background: rgba(0, 0, 0, .04);
    padding-left: 20px;
  }

  .navbar-sisfora .sf-nav-dropdown:hover > .nav-link {
    color: #2d2d2d;
  }

  .navbar-sisfora .sf-nav-dropdown:hover > .nav-link::after {
    width: 0;
  }

  .sf-search-pill {
    width: 100%;
    margin: 8px 16px 4px;
    width: calc(100% - 32px);
  }
}

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

.hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 80% 25%, rgba(211, 178, 143, .18), transparent 35%),
    linear-gradient(135deg, #fbf8f2, #f4eee5);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(202, 165, 119, .08);
  right: -180px;
  top: -150px;
  filter: blur(2px);
}

.hero-title {
  font-family: var(--sf-serif);
  font-size: clamp(58px, 7vw, 105px);
  line-height: .95;
  font-weight: 400;
  letter-spacing: -3px;
  color: #201b19;
}

.hero-title em {
  color: var(--sf-gold);
  font-weight: 400;
}

.eyebrow {
  color: var(--sf-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.section-subtitle {
  max-width: 680px;
  color: #756a64;
  font-size: 17px;
  line-height: 1.9;
}

/* Hero image */

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 25px 70px rgba(48, 37, 30, .15);
  transition: var(--sf-transition);
}

.hero-image-wrap:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 35px 90px rgba(48, 37, 30, .22);
}

.hero-image-wrap img {
  width: 100%;
  transition: transform .8s cubic-bezier(.22,.61,.36,1);
}

.hero-image-wrap:hover img {
  transform: scale(1.04);
}

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

.btn-sisfora,
.btn-sisfora-outline {
  min-width: 170px;
  padding: 15px 28px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--sf-transition);
}

.btn-sisfora {
  background: var(--sf-dark);
  color: white;
  border: 1px solid var(--sf-dark);
}

.btn-sisfora:hover {
  background: var(--sf-gold);
  border-color: var(--sf-gold);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(181, 138, 60, .25);
}

.btn-sisfora-outline {
  background: transparent;
  color: var(--sf-dark);
  border: 1px solid #423a35;
}

.btn-sisfora-outline:hover {
  background: var(--sf-dark);
  color: white;
  transform: translateY(-4px);
}

/* =========================================================
   EDITORIAL SECTION
========================================================= */

.editorial-section {
  padding: 140px 0;
  background: #f8f4ed;
}

.editorial-heading {
  font-family: var(--sf-serif);
  font-size: clamp(55px, 7vw, 105px);
  line-height: .95;
  letter-spacing: -3px;
  color: #211c19;
}

.editorial-gold {
  color: var(--sf-gold);
  font-style: italic;
}

.editorial-subtitle {
  max-width: 440px;
  color: #766b65;
  font-size: 18px;
  line-height: 1.9;
}

/* =========================================================
   MARQUEE TICKER STRIP
========================================================= */

.sf-ticker-strip {
  background: var(--sf-dark);
  overflow: hidden;
  padding: 16px 0;
  white-space: nowrap;
}

.sf-ticker-track {
  display: inline-flex;
  align-items: center;
  animation: sf-marquee 35s linear infinite;
  will-change: transform;
}

.sf-ticker-item {
  display: inline-block;
  color: #f5ede0;
  font-family: var(--sf-sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 32px;
  white-space: nowrap;
}

.sf-ticker-sep {
  display: inline-block;
  color: var(--sf-gold);
  font-size: 13px;
  flex-shrink: 0;
  line-height: 1;
}

@keyframes sf-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .sf-ticker-track {
    animation: none;
  }
}

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

.section {
  padding: 110px 0;
}

.bg-blush {
  background: var(--sf-blush);
}

.bg-ivory {
  background: var(--sf-ivory);
}

.section-title {
  font-family: var(--sf-serif);
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--sf-black);
}

/* =========================================================
   CATEGORY CARDS
========================================================= */

.category-tile {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #e8dfd4;
}

.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.22,.61,.36,1);
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(25, 18, 15, .75),
    transparent 60%
  );
  opacity: .8;
}

.category-tile-overlay {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 20px;
  color: white;
}

.category-tile-overlay h5 {
  font-family: var(--sf-serif);
  font-size: 24px;
  margin: 0;
}

.category-tile:hover img {
  transform: scale(1.09);
}

.category-tile:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 40px rgba(38, 27, 21, .18);
}

/* =========================================================
   PRODUCT CARDS
========================================================= */

.product-card,
.sf-product-card {
  position: relative;
  background: #fffdf9;
  border: 1px solid rgba(65, 48, 39, .08);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--sf-transition);
}

.product-card:hover,
.sf-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(43, 31, 24, .14);
}

/* =========================================================
   PRODUCT IMAGE HOVER — TWO IMAGE EFFECT
========================================================= */

.product-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
  background: #f5f0ea;
}

.product-image-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.45s ease, transform 0.6s ease;
}

/* Main / actual image */
.product-main-image {
  opacity: 1;
  z-index: 1;
}

/* Second image */
.product-hover-image {
  opacity: 0;
  z-index: 2;
}

/* Mouse enter — only fade main image out when a hover image actually exists */
.product-image-wrapper.has-hover:hover .product-main-image {
  opacity: 0;
  transform: scale(1.03);
}

.product-image-wrapper:hover .product-hover-image {
  opacity: 1;
  transform: scale(1.03);
}

/* Product card */
.product-card,
.sf-product-card {
  position: relative;
  background: #fffdf9;
  border: 1px solid rgba(65, 48, 39, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s ease;
}

.product-card:hover,
.sf-product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 40px rgba(43, 31, 24, 0.14);
}

/* =========================================================
   PRODUCT CARD HOVER EFFECTS
   Makes icons and "Add to Bag" button appear smoothly
   when you hover over a product card — like sabbskin.pk
========================================================= */

/* The area that wraps the image and all the overlays */
.product-media {
  position: relative;  /* needed so child overlays can be positioned inside */
  overflow: hidden;    /* hides the add-to-cart button before it slides in */
}

/* ---- Badges: -15%, Bestseller, New (top-left corner) ---- */
.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;          /* stays above the image */
  display: flex;
  flex-direction: column;
  gap: 5px;
  pointer-events: none; /* badges don't block clicks */
}

/* Base badge style shared by all badge types */
.sf-badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 4px;
  line-height: 1.4;
}

/* Gold badge for discount (e.g. -15%) */
.sf-badge-sale        { background: var(--sf-gold); color: #fff; }
/* Green badge for new arrivals */
.sf-badge-new         { background: #3a7d52;        color: #fff; }
/* Dark badge for bestsellers */
.sf-badge-bestseller  { background: var(--sf-dark); color: #fff; }

/* ---- Quick Action Icons (top-right: heart + eye) ---- */
/* By default, icons are invisible and moved a little to the right */
.product-quick-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* Hidden state — shifted right and transparent */
  transform: translateX(20px);
  opacity: 0;
  /* Animation speed */
  transition: transform 0.35s ease, opacity 0.35s ease;
}

/* When you hover the whole card, the icons slide into view */
.product-card:hover .product-quick-actions,
.sf-product-card:hover .product-quick-actions {
  transform: translateX(0);
  opacity: 1;
}

/* Each small icon is a round white circle */
.btn-sm-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;          /* makes it a circle */
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--sf-dark);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  /* Animate color change on icon hover */
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
  text-decoration: none;       /* removes underline from <a> elements */
}

/* Icon turns gold when you hover it directly */
.btn-sm-icon:hover {
  background: var(--sf-gold);
  color: #fff;
  transform: scale(1.1);       /* slight zoom for a nice touch */
}

/* Second icon appears slightly later — creates a cascade effect */
.product-quick-actions .btn-sm-icon:nth-child(2) {
  transition-delay: 0.05s;
}

/* ---- "Add to Bag" button (slides up from bottom of image) ---- */
/* By default: pushed below the image, invisible */
.add-to-cart-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  border-radius: 0;            /* full-width bar, no rounded corners */
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 10;
  /* Hidden state — button is below the visible area */
  transform: translateY(100%);
  opacity: 0;
  /* Slide-up animation */
  transition: transform 0.35s ease, opacity 0.3s ease;
}

/* Slide up to cover the bottom of the image on hover */
.product-card:hover .add-to-cart-btn,
.sf-product-card:hover .add-to-cart-btn {
  transform: translateY(0);
  opacity: 1;
}

/* ---- Product info text below the image ---- */
.product-info {
  padding: 14px 14px 16px;
}

/* Small brand label in gold (e.g. "SISFORA") */
.product-category-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sf-gold);
  margin-bottom: 4px;
}

/* Product name in serif font */
.product-name {
  font-family: var(--sf-serif);
  font-size: 15px;
  margin-bottom: 5px;
  line-height: 1.3;
}

.product-name a {
  color: var(--sf-dark);
  text-decoration: none;
}

.product-name a:hover {
  color: var(--sf-gold);
}

/* Star rating row */
.product-rating {
  color: var(--sf-gold);
  font-size: 12px;
  margin-bottom: 4px;
}

/* Price row: current price + crossed-out old price */
.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-current {
  font-weight: 700;
  font-size: 15px;
  color: var(--sf-dark);
}

.price-old {
  font-size: 12px;
  color: #aaa;
  text-decoration: line-through;
}

/* =========================================================
   WHY SISFORA
========================================================= */

.why-card {
  background: white;
  border: 1px solid rgba(181, 138, 60, .12);
  transition: var(--sf-transition);
}

.why-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 18px 40px rgba(40, 28, 21, .10);
  border-color: rgba(181, 138, 60, .35);
}

.why-icon {
  font-size: 35px;
  color: var(--sf-gold);
  transition: var(--sf-transition);
}

.why-card:hover .why-icon {
  transform: scale(1.15) rotate(-5deg);
}

.why-title {
  font-family: var(--sf-serif);
  font-size: 20px;
}

/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonial-card {
  background: #fffdf9;
  padding: 35px;
  border: 1px solid #e8dfd6;
  transition: var(--sf-transition);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(37, 27, 21, .10);
}

.stars-gold {
  color: var(--sf-gold);
  letter-spacing: 3px;
}

/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter-band {
  background: #e8ded1;
}

.newsletter-band .form-control {
  min-height: 50px;
  border: 1px solid #cdbfb1;
  border-radius: 2px;
  background: #fffdf9;
}

.newsletter-band .form-control:focus {
  border-color: var(--sf-gold);
  box-shadow: 0 0 0 3px rgba(181, 138, 60, .12);
}

/* =========================================================
   FOOTER
========================================================= */

.sf-footer {
  background: #1d1816;
  color: #b9aaa0;
}

.sf-footer h6 {
  color: #eee5d8;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.sf-footer a {
  color: #a99b92;
}

.sf-footer a:hover {
  color: var(--sf-gold-light);
  transform: translateX(3px);
}

.sf-logo-img--footer {
  width: 120px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.social-icon:hover {
  background: var(--sf-gold);
  color: white !important;
  border-color: var(--sf-gold);
  transform: translateY(-4px);
}

.sf-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px;
}

/* =========================================================
   SKELETON
========================================================= */

.sf-skeleton {
  background: linear-gradient(
    90deg,
    #e8e0d7 25%,
    #f5eee6 50%,
    #e8e0d7 75%
  );
  background-size: 200% 100%;
  animation: skeletonMove 1.5s infinite;
}

@keyframes skeletonMove {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: -200% 0;
  }
}

/* =========================================================
   SCROLL REVEAL
========================================================= */

.sf-reveal {
  animation: revealUp .8s ease both;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

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

/* =========================================================
   TOAST
========================================================= */

.toast-sf {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 9999;
  padding: 14px 22px;
  background: var(--sf-dark);
  color: white;
  border-left: 3px solid var(--sf-gold);
  box-shadow: 0 15px 35px rgba(0,0,0,.2);
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

  .navbar-sisfora {
    min-height: 75px;
  }

  .navbar-sisfora .container {
    min-height: 75px;
  }

  .sf-logo-img {
    width: 82px;
    height: 60px;
  }

  .navbar-sisfora .navbar-nav {
    padding: 20px 0;
    gap: 0;
  }

  .navbar-sisfora .nav-link {
    padding: 12px 5px !important;
    text-align: center;
  }

  .navbar-sisfora .nav-link::after {
    display: none;
  }

  .nav-icon-link {
    margin-left: 10px;
  }

  .hero {
    min-height: auto;
    padding: 80px 0;
  }

  .hero-title {
    letter-spacing: -2px;
  }

  .editorial-section {
    padding: 90px 0;
  }

  .section {
    padding: 80px 0;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

  .hero {
    padding: 65px 0;
  }

  .hero-title {
    font-size: 52px;
    line-height: .98;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .editorial-heading {
    font-size: 52px;
  }

  .editorial-subtitle {
    font-size: 16px;
  }

  .btn-sisfora,
  .btn-sisfora-outline {
    min-width: 140px;
    padding: 13px 18px;
  }

  .hero-image-wrap {
    margin-top: 15px;
  }

  .section {
    padding: 65px 0;
  }

  .navbar-sisfora .d-flex.align-items-center {
    flex-wrap: nowrap;
  }
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

button:focus,
a:focus,
input:focus {
  outline: 2px solid var(--sf-gold);
  outline-offset: 3px;
}

/* =========================================================
   PREMIUM HOVER EFFECT
========================================================= */

button,
.btn,
.category-tile,
.product-card,
.sf-product-card,
.why-card,
.testimonial-card,
.nav-icon-link {
  will-change: transform;
}

/* Mouse hover par subtle lift */
.btn:hover,
.category-tile:hover,
.product-card:hover,
.sf-product-card:hover,
.why-card:hover,
.testimonial-card:hover {
  cursor: pointer;
}

/* =========================================================
   PRODUCT DETAILS PAGE — REDESIGNED LAYOUT
========================================================= */

.pd-hero-section {
  background: #ece9f4;
}

/* Vertical thumbnail column */
.pd-thumbs-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 76px;
  flex-shrink: 0;
}

.pd-thumb-v {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.pd-thumb-v.active,
.pd-thumb-v:hover {
  border-color: #8880b8;
}

/* Discount pill overlaid on main image */
.pd-discount-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  color: #444;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 13px;
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  letter-spacing: 0.3px;
}

/* Product title */
.pd-title {
  font-family: var(--sf-serif);
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.2;
}

/* Review count label */
.pd-review-count {
  font-size: 13px;
  color: #777;
}

/* "🔥 X sold in last 24 hours" */
.pd-sold-badge {
  font-size: 12px;
  font-weight: 600;
  color: #d94f1e;
}

/* Price */
.pd-price {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
  font-family: var(--sf-sans);
  letter-spacing: -0.5px;
}

.pd-price-old {
  font-size: 1.1rem;
  color: #aaa;
  text-decoration: line-through;
}

/* "X people viewing now" pill */
.pd-viewing-pill {
  display: inline-flex;
  align-items: center;
  background: #1a1a2e;
  color: #fff;
  font-size: 12.5px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 50px;
}

/* Ask a question / Share links */
.pd-action-link {
  font-size: 13px;
  color: #555;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.pd-action-link:hover {
  color: #1a1a2e;
  border-bottom-color: #1a1a2e;
}

/* Quantity stepper */
.pd-qty-group {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  border: 1px solid #ddd;
  overflow: hidden;
  flex-shrink: 0;
}

.pd-qty-btn {
  width: 38px;
  height: 46px;
  border: none;
  background: transparent;
  font-size: 18px;
  font-weight: 300;
  color: #333;
  cursor: pointer;
  transition: background 0.15s;
  line-height: 1;
}

.pd-qty-btn:hover {
  background: #f0eef5;
}

.pd-qty-input {
  width: 44px;
  height: 46px;
  border: none;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  color: #1a1a2e;
  -moz-appearance: textfield;
  appearance: textfield;
}

.pd-qty-input::-webkit-inner-spin-button,
.pd-qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Add to Cart — pill, muted purple */
.btn-pd-cart {
  height: 46px;
  border-radius: 50px;
  background: #8880b8;
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0 20px;
  white-space: nowrap;
  min-width: 0;
}

.btn-pd-cart:hover:not(:disabled) {
  background: #7068a8;
  transform: translateY(-2px);
}

.btn-pd-cart:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Round icon buttons (wishlist / compare) */
.btn-pd-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #ccc;
  color: #444;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
  flex-shrink: 0;
  text-decoration: none;
}

.btn-pd-icon:hover {
  border-color: #8880b8;
  color: #8880b8;
  transform: scale(1.08);
}

/* Buy Now — full width, dark pill */
.btn-pd-buynow {
  height: 52px;
  border-radius: 50px;
  background: #1a1a2e;
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-pd-buynow:hover:not(:disabled) {
  background: #2d2d48;
  transform: translateY(-2px);
}

.btn-pd-buynow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 576px) {
  .pd-thumbs-col {
    width: 56px;
  }
  .pd-thumb-v {
    width: 56px;
    height: 56px;
  }
  .pd-qty-btn {
    width: 32px;
  }
  .pd-qty-input {
    width: 36px;
  }
}