/* ===== Custom CSS ===== */
:root {
  --yellow: #163B68;
  --yellow-dark: #1E4A7E;
  --yellow-light: #C4D6EA;
  --brown: #1E4578;
  --brown-dark: #163B68;
  --dark: #0B1929;
  --gold: #D4A843;
  --gold-light: #ECD5A8;
  --gold-dark: #B8942B;
}
body {
  --primary-color: #0B1929;
  --secondary-color: #163B68;
  --secondary-color2: #163B68;
  --yellow-color: #163B68;
  --bg-gray-color: #F4F6F9;
}
:root, .color-scheme-1, .color-scheme-2, .color-scheme-3 {
  --secondary-color: #163B68 !important;
  --secondary-color2: #163B68 !important;
  --yellow-color: #163B68 !important;
}

/* ===== Hero Slider Overrides ===== */
.hero__slider--items {
  position: relative;
  aspect-ratio: 1920 / 600;
}
@media only screen and (max-width: 767px) {
  .hero__slider--items {
    aspect-ratio: auto;
    min-height: 85vh;
  }
}
.hero__slider--items::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.3) 40%, rgba(0,0,0,.05) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero__slider--bg {
  background-position: center center !important;
  background-size: cover !important;
  background-color: #1a1a2e;
}
.hero__slider--items__inner {
  position: relative;
  z-index: 2;
}
.slider__content {
  padding: 0 4rem !important;
}
@media only screen and (max-width: 767px) {
  .slider__content {
    padding: 0 1.5rem !important;
  }
}

/* ===== Trust Bar ===== */
.trust-bar {
  background: linear-gradient(135deg, #fdfaf5 0%, #fff8ee 50%, #fdfaf5 100%);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,168,67,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.trust-bar__inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: nowrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 36px;
  flex: 1;
  justify-content: center;
  cursor: default;
  position: relative;
  transition: background 0.25s ease;
}
.trust-bar__item:hover {
  background: rgba(212, 168, 67, 0.06);
}
.trust-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(212, 168, 67, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.trust-bar__item:hover .trust-bar__icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 6px 20px rgba(212, 168, 67, 0.5);
}
.trust-bar__text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: 0.3px;
}
.trust-bar__text span {
  display: block;
  font-size: 12.5px;
  color: #888;
  line-height: 1.4;
}
.trust-bar__divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(212,168,67,0.3), transparent);
  align-self: stretch;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .trust-bar__item { padding: 18px 20px; gap: 12px; }
  .trust-bar__icon { width: 42px; height: 42px; }
}
@media (max-width: 767px) {
  .trust-bar__inner { flex-wrap: wrap; }
  .trust-bar__divider { display: none; }
  .trust-bar__item {
    flex: 1 1 48%;
    padding: 16px 14px;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(212,168,67,0.1);
  }
  .trust-bar__item:nth-child(n+4) { border-bottom: none; }
  .trust-bar__icon { width: 38px; height: 38px; }
  .trust-bar__text strong { font-size: 13.5px; }
  .trust-bar__text span { font-size: 11.5px; }
}

/* ===== Grid & Utility Classes ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col,
.col-lg-8,
.col-lg-4,
.col-lg-12,
.col-md-6,
.col-md-4 {
  position: relative;
  width: 100%;
  padding: 0 15px;
}

.col { flex: 1 0 0%; }

@media (max-width: 767px) {
  .row-cols-md-2 > .col,
  .row-cols-lg-2 > .col { flex: 0 0 100%; max-width: 100%; }
}
.col-lg-12 { flex: 0 0 100%; max-width: 100%; }

@media (min-width: 992px) {
  .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
}

@media (min-width: 768px) {
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
}

/* Row columns utilities */
.row-cols-1 > .col { flex: 0 0 100%; max-width: 100%; }
@media (min-width: 576px) {
  .row-cols-sm-2 > .col { flex: 0 0 50%; max-width: 50%; }
}
@media (min-width: 768px) {
  .row-cols-md-2 > .col { flex: 0 0 50%; max-width: 50%; }
  .row-cols-md-3 > .col { flex: 0 0 33.333333%; max-width: 33.333333%; }
}
@media (min-width: 992px) {
  .row-cols-lg-3 > .col { flex: 0 0 33.333333%; max-width: 33.333333%; }
}

/* Flex utilities */
.d-flex { display: flex !important; }
.d-none { display: none !important; }
.align-items-center { align-items: center !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.flex-wrap { flex-wrap: wrap !important; }

@media (min-width: 768px) {
  .d-md-block { display: block !important; }
  .d-md-flex { display: flex !important; }
}

@media (min-width: 992px) {
  .d-lg-block { display: block !important; }
  .d-lg-flex { display: flex !important; }
  .d-lg-none { display: none !important; }
}

/* Display utilities */
.display-block { display: block !important; }

/* Spacing utilities */
.m-0 { margin: 0 !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-15 { margin-bottom: 15px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-25 { margin-bottom: 25px !important; }
.mb-28 { margin-bottom: 28px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-50 { margin-bottom: 50px !important; }
.mb--n28 { margin-bottom: -28px !important; }
.mb--n30 { margin-bottom: -30px !important; }
.mt-3 { margin-top: 3px !important; }
.mt-15 { margin-top: 15px !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

/* Text utilities */
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-white { color: #fff !important; }

/* Typography utilities */
.h3, h3 { font-size: 32px; }
.h4, h4 { font-size: 26px; }

/* Border utilities */
.border-0 { border: 0 !important; }
.border-radius-10 { border-radius: 10px !important; }

/* Position */
.position__relative { position: relative !important; }

/* Width */
.w-100 { width: 100% !important; }

/* Padding */
.p-0 { padding: 0 !important; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }

/* Container fluid */
.container-fluid { width: 100%; padding: 0 15px; margin: 0 auto; }

/* Section padding */
.section--padding { padding-top: 60px; padding-bottom: 60px; }

/* Border radius */
.border-radius-5 { border-radius: 5px !important; }
.border-radius-50 { border-radius: 50% !important; }

/* Margin bottom */
.mb-95 { margin-bottom: 95px !important; }

/* ===== Animations ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 160, 108, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(201, 160, 108, 0); }
}

@keyframes shimmer {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes tabActivate {
  0% { transform: scale(0.92); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cardEntrance {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 35px rgba(37, 211, 102, 0.7); }
}

@keyframes premiumShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Header Section ===== */
.header__section {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
}

/* -- Topbar -- */
.header__topbar.bg__primary {
  background: linear-gradient(135deg, var(--dark), #1a2a3a) !important;
  padding: 6px 0;
}

.header__topbar .header__shipping--text {
  font-size: 13px;
  letter-spacing: 0.3px;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 575px) {
  .header__topbar .header__shipping--text {
    font-size: 11px;
    text-align: center;
  }
}

/* -- Main Header -- */
.main__header.header__sticky {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.main__header--inner {
  padding: 10px 0;
  gap: 12px;
}

@media (max-width: 991px) {
  .main__header--inner {
    padding: 8px 0;
  }
}

/* -- Logo -- */
.main__logo {
  flex-shrink: 0;
}

.main__logo--title {
  margin: 0;
  line-height: 1;
}

.main__logo--img {
  max-height: 80px;
  max-width: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}

.main__logo--link {
  display: inline-block;
  text-decoration: none;
}

@media (max-width: 575px) {
  .main__logo--img {
    max-height: 60px;
  }
}

/* -- Desktop Menu -- */
.header__menu {
  margin: 0 20px;
}

.header__menu--navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
}

.header__menu--items {
  position: relative;
}

.header__menu--link {
  display: inline-block;
  padding: 6px 10px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.header__menu--link:hover {
  color: var(--yellow);
  background: rgba(245, 197, 24, 0.08);
}

/* -- Account / Icon Area -- */
.header__account ul {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
}

.header__account--items {
  position: relative;
}

.header__account--btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--dark);
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
}

.header__account--btn:hover {
  background: rgba(245, 197, 24, 0.1);
  color: var(--yellow);
}

.header__account--btn svg {
  width: 20px;
  height: 20px;
}

.items__count {
  position: absolute;
  top: 2px;
  right: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: var(--yellow);
  border-radius: 50%;
  line-height: 1;
}

.items__count.wishlist {
  background: var(--yellow-dark);
}

.header__account--text {
  display: none;
  font-size: 13px;
  margin-left: 6px;
  font-weight: 600;
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .header__account--text {
    display: inline;
  }
  .header__account--btn {
    width: auto;
    padding: 0 12px;
    border-radius: 20px;
    gap: 4px;
  }
}

/* -- Offcanvas Hamburger (mobile) -- */
.offcanvas__header--menu__open--btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--dark);
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.offcanvas__header--menu__open--btn:hover {
  background: rgba(245, 197, 24, 0.1);
}

.offcanvas__header--menu__open--svg {
  width: 26px;
  height: 26px;
}

/* -- Offcanvas Panel -- */
.offcanvas-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  z-index: 1100;
  background: #fff;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  transform: translateX(-100%);
  overflow-y: auto;
  will-change: transform;
}

.offcanvas-header.open {
  transform: translateX(0);
}

.offcanvas__inner {
  padding: 20px;
}

.offcanvas__logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.offcanvas__logo img {
  max-height: 60px;
}

.offcanvas__close--btn {
  background: none;
  border: none;
  font-size: 16px;
  color: var(--dark);
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.3s ease;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.offcanvas__close--btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.offcanvas__menu_ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offcanvas__menu_li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.offcanvas__menu_item {
  display: block;
  padding: 12px 0;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.offcanvas__menu_item:hover {
  color: var(--yellow);
}

.offcanvas__account--items {
  margin-top: 20px;
}

.offcanvas__account--items__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(245, 197, 24, 0.1);
  border-radius: 8px;
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.offcanvas__account--items__btn:hover {
  background: rgba(245, 197, 24, 0.2);
}

.offcanvas__account--items__icon svg {
  width: 20px;
  height: 20px;
}

/* -- Offcanvas Overlay -- */
.offcanvas-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.offcanvas-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* -- Mobile Sticky Toolbar -- */
.offcanvas__stikcy--toolbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
  display: none;
  padding: 4px 0;
}

@media (max-width: 767px) {
  .offcanvas__stikcy--toolbar {
    display: block;
  }
}

.offcanvas__stikcy--toolbar ul {
  list-style: none;
  margin: 0;
  padding: 0 8px;
}

.offcanvas__stikcy--toolbar__list {
  flex: 1;
  text-align: center;
}

.offcanvas__stikcy--toolbar__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 4px;
  color: #888;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
}

.offcanvas__stikcy--toolbar__btn:hover {
  color: var(--yellow);
}

.offcanvas__stikcy--toolbar__icon svg {
  width: 20px;
  height: 20px;
}

.offcanvas__stikcy--toolbar__label {
  font-size: 16px;
  font-weight: 500;
}

.offcanvas__stikcy--toolbar .items__count {
  top: 0;
  right: 50%;
  transform: translateX(calc(50% + 12px));
  min-width: 16px;
  height: 16px;
  font-size: 14px;
}

.offcanvas__stikcy--toolbar .wishlist__count {
  background: var(--yellow-dark) !important;
}

/* -- Minicart -- */
.offCanvas__minicart {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  max-width: 100vw;
  height: 100vh;
  z-index: 1100;
  background: #fff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  will-change: transform;
}

.offCanvas__minicart.open {
  transform: translateX(0);
}

.minicart__header {
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.minicart__header--top {
  margin-bottom: 4px;
}

.minicart__title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 18px;
  margin: 0;
}

.minicart__close--btn {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
  color: #888;
  transition: color 0.3s ease;
}

.minicart__close--btn:hover {
  color: var(--dark);
}

.minicart__header--desc {
  color: #888;
  font-size: 13px;
  margin: 0;
}

.minicart__product {
  flex: 1;
  padding: 16px 20px;
  overflow-y: auto;
}

.minicart__empty {
  color: #888;
  font-size: 14px;
  padding: 40px 0;
}

.minicart__product--items {
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.minicart__thumbnail a {
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.minicart__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.minicart__text {
  flex: 1;
  min-width: 0;
}

.minicart__subtitle {
  font-size: 14px;
  margin: 0 0 4px;
  font-weight: 600;
}

.minicart__subtitle a {
  color: var(--dark);
  text-decoration: none;
}

.minicart__subtitle a:hover {
  color: var(--yellow);
}

.color__variant,
.size__variant {
  font-size: 12px;
  color: #666;
  display: block;
  margin-bottom: 2px;
}

.minicart__price {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 6px;
}

.current__price {
  font-weight: 700;
  color: var(--dark);
  font-size: 14px;
}

.old__price {
  color: #999;
  font-size: 12px;
  text-decoration: line-through;
}

.minicart__text--footer {
  gap: 8px;
  flex-wrap: wrap;
}

.minicart__quantity .quantity__box {
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  overflow: hidden;
}

.quantity__value {
  width: 30px;
  height: 30px;
  border: none;
  background: #f5f5f5;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.quantity__value:hover {
  background: #e8e8e8;
}

.quantity__number {
  width: 36px;
  height: 30px;
  border: none;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  outline: none;
}

input.quantity__number[type="number"] {
  -moz-appearance: textfield;
}

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

.minicart__product--remove {
  background: none;
  border: none;
  color: #e74c3c;
  font-size: 13px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.minicart__product--remove:hover {
  background: rgba(231, 76, 60, 0.1);
}

.minicart__amount {
  padding: 16px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.minicart__amount_list {
  margin-bottom: 6px;
  font-size: 14px;
  color: #666;
}

.minicart__amount_list span:last-child {
  color: var(--dark);
}

.minicart__conditions {
  padding: 0 20px 12px;
  font-size: 12px;
  color: #666;
}

.minicart__conditions--input {
  margin-right: 6px;
}

.minicart__conditions--label a {
  color: var(--yellow);
  text-decoration: none;
}

.minicart__button {
  padding: 0 20px 20px;
  gap: 10px;
}

.minicart__button--link {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 480px) {
  .offCanvas__minicart {
    width: 100vw;
    right: -100vw;
  }
}

/* -- Predictive Search -- */
.predictive__search--box {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.predictive__search--box.open {
  display: flex;
}

.predictive__search--box__inner {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 560px;
  position: relative;
}

.predictive__search--title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 35px;
  margin: 0 0 20px;
  text-align: center;
}

.predictive__search--form {
  display: flex;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.predictive__search--form:focus-within {
  border-color: var(--yellow);
}

.predictive__search--input {
  flex: 1;
  border: none;
  padding: 14px 20px;
  font-size: 24px;
  outline: none;
  background: transparent;
}

.predictive__search--button {
  border: none;
  background: var(--yellow);
  color: var(--dark);
  padding: 0 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
}

.predictive__search--button:hover {
  background: var(--yellow-dark);
}

.predictive__search--close__btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  padding: 6px;
  transition: color 0.3s ease;
}

.predictive__search--close__btn:hover {
  color: var(--dark);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 575px) {
  .predictive__search--box__inner {
    padding: 24px 16px;
  }
  .predictive__search--title {
    font-size: 29px;
  }
  .predictive__search--input {
    font-size: 21px;
    padding: 12px 14px;
  }
}

/* ===== Banner Section 1 ===== */
.banner__section {
  animation: fadeInUp 0.8s ease both;
}

.banner__items { will-change: transform;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.banner__items:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.banner__items--thumbnail {
  border-radius: 16px;
  overflow: hidden;
}

.banner__items--thumbnail__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.banner__items:hover .banner__items--thumbnail__img {
  transform: scale(1.08);
}

.banner__items--content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  animation: fadeInLeft 0.6s 0.2s ease both;
}

.banner__items--content__title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 35px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
  position: relative;
  padding-left: 12px;
}

.banner__items--content__title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

/* ===== Featured Categories Section ===== */
.featured-categories-section {
  padding: 80px 0 70px;
  background: linear-gradient(135deg, #F0F4FA 0%, #faf6f2 50%, #E0E8F4 100%);
  position: relative;
  overflow: hidden;
}

.featured-categories-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--brown), var(--yellow-dark), var(--yellow));
  background-size: 300% 100%;
  animation: premiumShimmer 4s ease-in-out infinite;
}

.featured-categories-title {
  font-family: "Playfair Display", "Josefin Sans", serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
  padding-bottom: 20px;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
  letter-spacing: 1px;
  animation: fadeInDown 0.8s ease both;
}

.featured-categories-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--yellow), var(--yellow-dark), transparent);
  border-radius: 2px;
}

.featured-categories-title span {
  color: var(--yellow-dark);
  font-style: italic;
}

.category-card { will-change: transform;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-height: 220px;
  background: linear-gradient(135deg, #F0F4FA, #E0E8F4);
  border: 2px solid #E0E8F4;
  animation: cardEntrance 0.6s ease both;
}

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }

.category-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: var(--yellow);
}

.category-card__overlay {
  text-align: center;
  color: #333;
}

.category-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  border-radius: 50%;
  margin: 0 auto 16px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 4px 15px rgba(245, 197, 24, 0.3);
}

.category-card:hover .category-card__icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 8px 25px rgba(245, 197, 24, 0.4);
}

.category-card__icon svg {
  color: #fff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.category-card__title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}

.category-card__title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}

.category-card:hover .category-card__title::after {
  transform: scaleX(1);
}

.category-card__count {
  font-size: 21px;
  font-weight: 400;
  color: #888;
  font-family: "Open Sans", sans-serif;
  display: block;
  margin-top: 8px;
}

/* ==========================================================================
   ===== Redesigned Most Popular Items Section (pop-) =====
   ========================================================================== */
#mostPopularSection {
  --pop-primary: #163B68;
  --pop-primary-dark: #3A6EBA;
  --pop-accent: #163B68;
  --pop-dark: #1a1a1a;
  --pop-light-bg: #f8f5f1;
  --pop-card-bg: #ffffff;
  --pop-gray: #6e6e6e;
  --pop-gray-light: #e6e6e6;
  --pop-star: #163B68;
  --pop-transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --pop-transition-slow: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  --pop-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
  --pop-shadow-hover: 0 18px 42px rgba(180, 140, 100, 0.15);

  background-color: var(--pop-light-bg);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

#mostPopularSection::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(30,77,140,0.06) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.pop-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.pop-overline {
  display: inline-block;
  font-family: "Josefin Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pop-primary-dark);
  margin-bottom: 8px;
  position: relative;
  padding: 0 24px;
}

.pop-overline::before,
.pop-overline::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 25px;
  height: 2px;
  background-color: var(--pop-primary);
  transform: translateY(-50%);
}
.pop-overline::before { right: 100%; }
.pop-overline::after { left: 100%; }

.pop-title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--pop-dark);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.pop-title span {
  background: linear-gradient(135deg, var(--pop-primary-dark), var(--pop-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pop-subtitle {
  font-size: 16px;
  color: var(--pop-gray);
  max-width: 600px;
  margin: 0 auto 16px;
  line-height: 1.6;
}

.pop-divider {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.pop-divider span {
  display: block;
  width: 60px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--pop-primary), var(--pop-accent));
}

/* Tabs Pill Styling */
.pop-tabs-container {
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}
.pop-tabs {
  background: #ffffff;
  padding: 6px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.03);
  gap: 6px;
}
.pop-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 22px;
  font-weight: 700;
  font-family: "Josefin Sans", sans-serif;
  color: var(--pop-gray);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--pop-transition);
}
.pop-tab-btn__icon {
  width: 16px;
  height: 16px;
  stroke-width: 2.2;
  transition: var(--pop-transition);
}
.pop-tab-btn:hover {
  color: var(--pop-primary-dark);
}
.pop-tab-btn:hover .pop-tab-btn__icon {
  transform: scale(1.1);
}
.pop-tab-btn.active {
  background: linear-gradient(135deg, var(--pop-dark), #2d2d2d);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.pop-tab-btn.active .pop-tab-btn__icon {
  stroke: var(--pop-accent);
}

/* Grid Layout */
.pop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

/* Premium Card */
.pop-card {
  background-color: var(--pop-card-bg);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--pop-shadow);
  transition: var(--pop-transition);
  opacity: 0;
  transform: translateY(30px);
  border: 1px solid rgba(0,0,0,0.04);
}
.pop-card.animated {
  opacity: 1;
  transform: translateY(0);
}
.pop-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--pop-shadow-hover);
  border-color: transparent;
}

/* Card Image Wrapper */
.pop-card__img-wrap {
  position: relative;
  overflow: hidden;
  background-color: #f8f6f4;
  aspect-ratio: 1 / 1;
}
.pop-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--pop-transition-slow);
}
.pop-card__img.secondary-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.pop-card:hover .pop-card__img.primary-img {
  opacity: 0;
  transform: scale(1.05);
}
.pop-card:hover .pop-card__img.secondary-img {
  opacity: 1;
  transform: scale(1.05);
}

/* Floating Actions Dock */
.pop-card__actions {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  display: flex;
  gap: 10px;
  z-index: 3;
  opacity: 0;
  transition: var(--pop-transition);
  pointer-events: none;
}
.pop-card:hover .pop-card__actions {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.pop-action-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--pop-card-bg);
  color: var(--pop-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: var(--pop-transition);
}
.pop-action-btn:hover {
  background-color: var(--pop-accent);
  color: var(--pop-dark);
  transform: scale(1.1);
}
.pop-action-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

/* Badges */
.pop-card__badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 3;
  color: var(--pop-dark);
  font-family: "Josefin Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  text-transform: uppercase;
}
.pop-card__badge.new { background-color: var(--pop-accent); }
.pop-card__badge.hot { background-color: #ff6b6b; color: #ffffff; }
.pop-card__badge.sale { background-color: #2ec4b6; color: #ffffff; }

/* Details */
.pop-card__content {
  padding: 20px 18px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.pop-card__rating {
  display: flex;
  gap: 3px;
  margin-bottom: 8px;
}
.pop-card__rating svg {
  width: 14px;
  height: 14px;
  fill: var(--pop-star);
  stroke: var(--pop-star);
}
/* Empty star — replaces inline style="fill:none; stroke:#e6e6e6;" */
.pop-card__rating svg.star-empty {
  fill: none;
  stroke: #e0e0e0;
}
.pop-card__title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
}
.pop-card__title a {
  color: var(--pop-dark);
  transition: var(--pop-transition);
  text-decoration: none;
}
.pop-card__title a:hover {
  color: var(--pop-primary-dark);
}

.pop-card__price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.pop-card__price {
  font-size: 18px;
  font-weight: 800;
  color: var(--pop-primary-dark);
}
.pop-card__price--old {
  font-size: 21px;
  text-decoration: line-through;
  color: #a0a0a0;
}

/* Card Add to Cart Button */
.pop-card__cart-btn {
  width: 100%;
  padding: 11px 18px;
  border-radius: 30px;
  border: 1.5px solid var(--pop-gray-light);
  background-color: transparent;
  color: var(--pop-dark);
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--pop-transition);
  cursor: pointer;
  margin-top: auto;
  text-decoration: none;
}
.pop-card__cart-btn svg {
  width: 16px;
  height: 16px;
  transition: var(--pop-transition);
}
.pop-card:hover .pop-card__cart-btn {
  background: linear-gradient(135deg, var(--pop-accent), var(--pop-primary));
  color: var(--pop-dark);
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(245, 197, 24, 0.25);
}

/* Tab pane fade animation */
.tab_pane {
  display: none;
}
.tab_pane.active {
  display: block;
}
.tab_pane.active.show .pop-grid {
  animation: popTabFadeUp 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

@keyframes popTabFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Delays */
.pop-card:nth-child(1) { transition-delay: 0s; }
.pop-card:nth-child(2) { transition-delay: 0.05s; }
.pop-card:nth-child(3) { transition-delay: 0.1s; }
.pop-card:nth-child(4) { transition-delay: 0.15s; }

/* Grid Responsive */
@media (max-width: 1399px) {
  .pop-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
@media (max-width: 1199px) {
  .pop-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .pop-title { font-size: 42px; }
}
@media (max-width: 991px) {
  .pop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .pop-title { font-size: 36px; }
  .pop-subtitle { font-size: 14px; }
}
@media (max-width: 575px) {
  .pop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .pop-tab-btn {
    padding: 10px 16px;
    font-size: 19px;
  }
  .pop-title { font-size: 35px; }
  .pop-overline { font-size: 16px; }
}
@media (max-width: 420px) {
  .pop-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}



/* ===== Shipping Section ===== */
.shipping__section {
  background: linear-gradient(135deg, var(--dark), #1a2a3a);
  padding: 50px 0 !important;
}

.shipping__section--inner {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px !important;
  padding: 30px 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.shipping__items {
  padding: 20px 15px;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease both;
}

.shipping__items:nth-child(1) { animation-delay: 0.1s; }
.shipping__items:nth-child(2) { animation-delay: 0.2s; }
.shipping__items:nth-child(3) { animation-delay: 0.3s; }
.shipping__items:nth-child(4) { animation-delay: 0.4s; }

.shipping__items:hover {
  transform: translateY(-5px);
}

.shipping__items--icon svg {
  color: var(--gold) !important;
  width: 36px;
  height: 40px;
  transition: all 0.3s ease;
}

.shipping__items:hover .shipping__items--icon svg {
  transform: scale(1.15);
  color: #fff !important;
}

.shipping__items--content__title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  margin-top: 12px;
  transition: color 0.3s ease;
}

.shipping__items:hover .shipping__items--content__title {
  color: var(--gold);
}

/* ===== Brand Features Section ===== */
.brand-features-section {
  background: var(--dark);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.brand-features-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--brown), var(--yellow-dark), var(--yellow));
  background-size: 300% 100%;
  animation: premiumShimmer 4s ease-in-out infinite;
}

.brand-feature-item {
  text-align: center;
  padding: 25px 15px;
  color: #fff;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease both;
}

.brand-feature-item:nth-child(1) { animation-delay: 0.1s; }
.brand-feature-item:nth-child(2) { animation-delay: 0.2s; }
.brand-feature-item:nth-child(3) { animation-delay: 0.3s; }
.brand-feature-item:nth-child(4) { animation-delay: 0.4s; }

.brand-feature-item:hover {
  transform: translateY(-5px);
}

.brand-feature-item .feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 197, 24, 0.15);
  border-radius: 50%;
  color: var(--yellow);
  transition: all 0.3s ease;
}

.brand-feature-item:hover .feature-icon {
  background: var(--yellow);
  color: var(--dark);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 30px rgba(245, 197, 24, 0.3);
}

.brand-feature-item h4 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 29px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.brand-feature-item p {
  font-size: 21px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
}

/* ===== Instagram Gallery Section ===== */
.instagram-gallery-section {
  padding: 70px 0;
  background: #f9f7f5;
  overflow: hidden;
}

.instagram-title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
  padding-bottom: 18px;
  margin-bottom: 6px;
  position: relative;
  display: inline-block;
  animation: fadeInDown 0.8s ease both;
}

.instagram-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dark));
  border-radius: 2px;
}

.instagram-title span {
  color: var(--yellow-dark);
}

.instagram-subtitle {
  font-family: "Josefin Sans", sans-serif;
  font-size: 15px;
  color: #999;
  margin-top: 12px;
  font-weight: 400;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: 100%;
}

.instagram-grid__item {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  text-decoration: none;
  cursor: pointer;
  animation: zoomIn 0.6s ease both;
}

.instagram-grid__item:nth-child(1) { animation-delay: 0.05s; }
.instagram-grid__item:nth-child(2) { animation-delay: 0.1s; }
.instagram-grid__item:nth-child(3) { animation-delay: 0.15s; }
.instagram-grid__item:nth-child(4) { animation-delay: 0.2s; }
.instagram-grid__item:nth-child(5) { animation-delay: 0.25s; }
.instagram-grid__item:nth-child(6) { animation-delay: 0.3s; }

.instagram-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.instagram-grid__item:hover img {
  transform: scale(1.12);
}

.instagram-grid__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.35s ease;
  color: #fff;
}

.instagram-grid__item:hover .instagram-grid__overlay {
  opacity: 1;
}

.instagram-grid__overlay svg {
  transform: scale(0.6);
  transition: transform 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.instagram-grid__item:hover .instagram-grid__overlay svg {
  transform: scale(1);
}

/* ===== Testimonial Section ===== */
.testimonial-section-fix {
  padding-top: 80px !important;
  padding-bottom: 60px !important;
  margin-top: 10px;
  background: #fcfaf8;
}

.testimonial-section-fix .testimonial__swiper--activation {
  padding: 0 15px;
}

.testimonial-section-fix .testimonial__banner--thumbnail {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-section-fix .testimonial__banner--thumbnail__img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.testimonial-section-fix .testimonial__banner--thumbnail:hover .testimonial__banner--thumbnail__img {
  transform: scale(1.05);
}

.testimonial-section-fix .section__heading--maintitle {
  font-family: "Josefin Sans", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
  position: relative;
  padding-bottom: 15px;
}

.testimonial-section-fix .section__heading--maintitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dark));
  border-radius: 2px;
}

.testimonial-section-fix .testimonial__items {
  padding: 20px 0;
}

.testimonial-section-fix .testimonial__items--desc {
  font-size: 24px;
  line-height: 2.6rem;
  color: #555;
  font-style: italic;
}

.testimonial-section-fix .testimonial__pagination {
  bottom: 0 !important;
  position: relative !important;
  margin-top: 20px;
}

.testimonial-section-fix .testimonial__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ddd;
  opacity: 1;
  transition: transform 0.3s ease, background 0.3s ease;
}

.testimonial-section-fix .testimonial__pagination .swiper-pagination-bullet-active {
  transform: scaleX(2.8);
  border-radius: 5px;
  background: var(--gold);
}

/* ===== Newsletter Banner ===== */
.newsletter__banner--section {
  position: relative;
}

.newsletter__banner--wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
}

.newsletter__banner--bg {
  position: absolute;
  inset: 0;
}

.newsletter__banner--bg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.newsletter__banner--overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 26, 37, 0.92) 0%, rgba(18, 26, 37, 0.75) 50%, rgba(18, 26, 37, 0.6) 100%);
}

.newsletter__banner--content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 640px;
  padding: 60px 40px;
  text-align: center;
}

.newsletter__banner--badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 197, 24, 0.15);
  border: 1px solid rgba(245, 197, 24, 0.25);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.newsletter__banner--title {
  font-size: clamp(26px, 4.5vw, 45px);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 14px;
}

.newsletter__banner--desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter__banner--form {
  max-width: 520px;
  margin: 0 auto;
}

.newsletter__banner--input-group {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 0 0 0 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.newsletter__banner--input-group:focus-within {
  box-shadow: 0 6px 30px rgba(245, 197, 24, 0.2);
  transform: translateY(-1px);
}

.newsletter__banner--input-icon {
  flex-shrink: 0;
  color: #999;
  transition: color 0.3s ease;
}

.newsletter__banner--input-group:focus-within .newsletter__banner--input-icon {
  color: var(--yellow-dark);
}

.newsletter__banner--input {
  flex: 1;
  height: 54px;
  border: none;
  outline: none;
  padding: 0 12px;
  font-size: 15px;
  color: #333;
  background: transparent;
  font-family: inherit;
}

.newsletter__banner--input::placeholder {
  color: #aaa;
}

.newsletter__banner--submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 54px;
  padding: 0 28px;
  border: none;
  border-radius: 0 12px 12px 0;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  color: var(--dark);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  font-family: inherit;
}

.newsletter__banner--submit:hover {
  background: linear-gradient(135deg, var(--yellow-dark), var(--yellow));
  transform: translateX(2px);
}

.newsletter__banner--submit svg {
  transition: transform 0.3s ease;
}

.newsletter__banner--submit:hover svg {
  transform: translateX(3px);
}

.newsletter__banner--footnote {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 16px;
}

.newsletter__banner--deco {
  position: absolute;
  border-radius: 50%;
  background: rgba(245, 197, 24, 0.06);
  pointer-events: none;
  z-index: 1;
}

.newsletter__banner--deco--1 {
  width: 200px;
  height: 200px;
  top: -60px;
  right: -40px;
}

.newsletter__banner--deco--2 {
  width: 140px;
  height: 140px;
  bottom: -30px;
  left: -20px;
}

.newsletter__banner--deco--3 {
  width: 80px;
  height: 80px;
  bottom: 30px;
  right: 10%;
  background: rgba(245, 197, 24, 0.04);
}

@media (max-width: 768px) {
  .newsletter__banner--wrapper {
    min-height: 260px;
    border-radius: 12px;
  }

  .newsletter__banner--content {
    padding: 40px 24px;
  }

  .newsletter__banner--desc {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .newsletter__banner--input-group {
    flex-direction: column;
    padding: 0;
    border-radius: 12px;
    background: transparent;
    box-shadow: none;
  }

  .newsletter__banner--input-icon {
    display: none;
  }

  .newsletter__banner--input {
    height: 48px;
    padding: 0 16px;
    border-radius: 12px 12px 0 0;
    background: #fff;
    text-align: center;
  }

  .newsletter__banner--submit {
    width: 100%;
    height: 48px;
    border-radius: 0 0 12px 12px;
    justify-content: center;
    font-size: 14px;
  }

  .newsletter__banner--submit:hover {
    transform: none;
  }

  .newsletter__banner--submit:hover svg {
    transform: none;
  }

  .newsletter__banner--deco--1 {
    width: 120px;
    height: 120px;
  }

  .newsletter__banner--deco--2 {
    width: 80px;
    height: 80px;
  }

  .newsletter__banner--deco--3 {
    display: none;
  }
}

/* ===== FAQ Accordion Styles ===== */
/* ===== FAQ Page ===== */
.faq__section {
  background: #f8f6f3;
}

.faq-section-title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 6px;
}

.faq-section-subtitle {
  font-size: 22px;
  color: #888;
  margin: 0 0 24px;
}

.faq-category {
  margin-bottom: 40px;
}

.faq-category-title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 29px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}

.faq-item {
  background: #fff;
  border: 1px solid #e8e4df;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.faq-item.active {
  border-color: var(--yellow);
  box-shadow: 0 2px 16px rgba(245, 197, 24, 0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: none;
  border: none;
  font-size: 24px;
  font-weight: 600;
  font-family: "Josefin Sans", sans-serif;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.faq-item.active .faq-question {
  color: #163B68;
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #999;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--yellow);
}

.faq-answer {
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
  max-height: 0;
  opacity: 0;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding: 0 20px 18px;
}

.faq-answer p {
  font-size: 22px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

.faq-loading {
  text-align: center;
  padding: 60px 0;
  color: #999;
  font-size: 24px;
}

.faq-empty {
  text-align: center;
  padding: 60px 0;
  color: #999;
  font-size: 24px;
}

@media (max-width: 767px) {
  .faq-section-title {
    font-size: 32px;
  }
  .faq-category-title {
    font-size: 26px;
  }
  .faq-question {
    font-size: 22px;
    padding: 14px 16px;
  }
  .faq-answer p {
    font-size: 21px;
  }
  .faq-item.active .faq-answer {
    padding: 0 16px 14px;
  }
}

@media (max-width: 575px) {
  .faq-section-title {
    font-size: 27px;
  }
  .faq-category-title {
    font-size: 22px;
  }
  .faq-question {
    font-size: 21px;
    padding: 12px 14px;
  }
}

/* ===== About Page Styles ===== */

/* About Section */
.about__section {
  padding: 60px 0;
}

.about__thumbnail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.about__thumbnail--items {
  flex: 1;
}

.about__thumbnail--img {
  width: 100%;
  border-radius: 8px;
}

.banner__bideo--play.about__thumbnail--play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bideo__play--icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--dark);
  transition: all 0.3s ease;
}

.bideo__play--icon:hover {
  background: var(--yellow);
  transform: scale(1.1);
}

.about__content--subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--yellow-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about__content--maintitle {
  font-family: "Josefin Sans", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}

.about__content--desc {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}

.about__author {
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.about__author--name {
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 2px;
}

.about__author--rank {
  font-size: 14px;
  color: #999;
}

.about__author--signature {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
}

/* Counter Section */
.counterup__banner--section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--dark), #1a2a3a);
  position: relative;
  overflow: hidden;
}

.counterup__banner__bg2::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(245, 197, 24, 0.05);
}

.counterup__banner__bg2::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(245, 197, 24, 0.03);
}

.counterup__banner--inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.counterup__banner--items {
  flex: 1;
  text-align: center;
  padding: 20px 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.counterup__banner--items:last-child {
  border-right: none;
}

.counterup__banner--items__text {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  line-height: 1.5;
  letter-spacing: 1px;
}

.counterup__banner--items__number {
  font-family: "Josefin Sans", sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1.1;
}

.counterup__banner--items__number::after {
  content: '+';
  color: var(--gold);
}

/* Team Section */
.team__section {
  padding: 60px 0;
  background: #fafafa;
}

.team__container {
  padding: 0;
}

.team__items {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px 25px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  margin-bottom: 30px;
}

.team__items:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.team__thumbnail {
  margin-bottom: 16px;
}

.team__thumbnail--img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
  border: 3px solid var(--yellow-light);
  transition: border-color 0.3s ease;
}

.team__items:hover .team__thumbnail--img {
  border-color: var(--yellow);
}

.team__content--title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 29px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 4px;
}

.team__content--subtitle {
  font-size: 21px;
  color: var(--yellow-dark);
  font-weight: 500;
  display: block;
  margin-bottom: 14px;
}

.team__social {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
}

.team__social--list {
  margin: 0;
}

.team__social--icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #999;
  font-size: 14px;
  transition: all 0.3s ease;
}

.team__social--icon:hover {
  background: var(--yellow);
  color: var(--dark);
  transform: translateY(-2px);
}

.custom-col {
  padding: 0 15px;
}

/* About Responsive */
@media (max-width: 991px) {
  .about__thumbnail {
    margin-bottom: 30px;
  }
  .about__content--maintitle {
    font-size: 42px;
  }
  .counterup__banner--inner {
    flex-wrap: wrap;
  }
  .counterup__banner--items {
    flex: 0 0 45%;
    border-right: none;
  }
  .counterup__banner--items:nth-child(2) {
    border-right: none;
  }
  .counterup__banner--items__number {
    font-size: 45px;
  }
}

@media (max-width: 767px) {
  .about__section {
    padding: 40px 0;
  }
  .about__thumbnail {
    flex-direction: column;
  }
  .about__content--maintitle {
    font-size: 35px;
  }
  .team__items {
    padding: 20px 15px;
  }
  .team__thumbnail--img {
    width: 80px;
    height: 80px;
  }
  .team__content--title {
    font-size: 24px;
  }
  .counterup__banner--items {
    flex: 0 0 100%;
  }
  .counterup__banner--items__number {
    font-size: 38px;
  }
}

@media (max-width: 575px) {
  .about__content--maintitle {
    font-size: 29px;
  }
  .about__author--signature {
    width: 70px;
  }
  .counterup__banner--section {
    padding: 40px 0;
  }
  .team__section {
    padding: 40px 0;
  }
}

/* ===== Blog Page Styles ===== */

/* Breadcrumb */
.breadcrumb__section.breadcrumb__bg {
  background: linear-gradient(135deg, rgba(26,26,26,0.4), rgba(26,42,58,0.4)), url('../img/banner/breadcrumb-bg.webp') center / cover no-repeat;
  padding: 50px 0;
}

.breadcrumb__content--title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 30px;
  font-weight: 700;
}

.breadcrumb__content--menu {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
}

.breadcrumb__content--menu__items {
  font-size: 14px;
}

.breadcrumb__content--menu__items a,
.breadcrumb__content--menu__items span {
  text-decoration: none;
}

.breadcrumb__content--menu__items + .breadcrumb__content--menu__items::before {
  content: '/';
  margin-right: 8px;
  color: rgba(255,255,255,0.6);
}

/* Blog Section */
/* ===== Blog Page ===== */
.blog-page {
  background: #f8f6f3;
}

.blog-header {
  text-align: center;
  margin-bottom: 40px;
}

.blog-header-title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 8px;
}

.blog-header-sub {
  font-size: 18px;
  color: #888;
  margin: 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.blog-card__img-wrap {
  display: block;
  overflow: hidden;
  position: relative;
}

.blog-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__img {
  transform: scale(1.06);
}

.blog-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #999;
  margin-bottom: 8px;
}

.blog-card__meta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-right: 3px;
}

.blog-card__meta-item {
  display: inline-flex;
  align-items: center;
}

.blog-card__title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 8px;
}

.blog-card__title a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card__title a:hover {
  color: var(--yellow-dark);
}

.blog-card__excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: #777;
  margin: 0 0 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--yellow-dark);
  text-decoration: none;
  align-self: flex-start;
}
.blog-card__btn svg {
  transition: transform 0.3s ease;
}

.blog-card__btn:hover {
  color: var(--dark);
}
.blog-card__btn:hover svg {
  transform: translateX(4px);
}

/* Blog Pagination */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
  padding: 20px 0;
  list-style: none;
}

.blog-pagination__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #555;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.blog-pagination__item:hover {
  border-color: var(--yellow);
  color: var(--dark);
}

.blog-pagination__item--active {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  color: var(--dark);
  border-color: transparent;
}

.blog-pagination__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-pagination__arrow:hover:not(:disabled) {
  border-color: var(--yellow);
  background: var(--yellow);
}

.blog-pagination__arrow:disabled {
  opacity: 0.4;
  cursor: default;
}

.blog-pagination__arrow svg {
  width: 16px;
  height: 16px;
}

/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: 20px;
}

.blog-sidebar__widget {
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.blog-sidebar__title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}

.blog-sidebar__search {
  display: flex;
  gap: 8px;
}

.blog-sidebar__search-input {
  flex: 1;
  height: 42px;
  padding: 0 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

.blog-sidebar__search-input:focus {
  border-color: var(--yellow);
}

.blog-sidebar__search-btn {
  height: 42px;
  padding: 0 16px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  color: var(--dark);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.blog-sidebar__search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 197, 24, 0.3);
}

.blog-sidebar__recent {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.blog-sidebar__recent-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-sidebar__recent-img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.blog-sidebar__recent-content {
  flex: 1;
  min-width: 0;
}

.blog-sidebar__recent-title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 3px;
}

.blog-sidebar__recent-title a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-sidebar__recent-title a:hover {
  color: var(--yellow-dark);
}

.blog-sidebar__recent-date {
  font-size: 13px;
  color: #aaa;
}

.blog-empty {
  text-align: center;
  padding: 60px 0;
  color: #999;
  font-size: 15px;
}

@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-sidebar {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .blog-header-title {
    font-size: 24px;
  }
  .blog-card__img {
    height: 180px;
  }
  .blog-card__body {
    padding: 16px;
  }
  .blog-card__title {
    font-size: 18px;
  }
  .blog-card__excerpt {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .blog-header-title {
    font-size: 22px;
  }
  .blog-card__img {
    height: 180px;
  }
  .blog-card__body {
    padding: 14px;
  }
  .blog-sidebar__search {
    flex-direction: column;
  }
  .blog-sidebar__search-btn {
    width: 100%;
  }
}

/* ===== Blog Details Page ===== */
.blog__details--section {
  background: #f8f6f3;
}

.blog__details--wrapper {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Post Header */
.post__header--title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 15px;
}

.blog__post--meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 21px;
  color: #888;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.blog__post--meta strong {
  font-weight: 600;
  color: #666;
}

.blog__post--meta .meta-sep {
  color: #ddd;
}

.blog__post--meta a {
  color: var(--yellow-dark);
  text-decoration: none;
  font-weight: 600;
}

.blog__post--meta a:hover {
  color: var(--dark);
}

/* Featured Image */
.blog__thumbnail {
  border-radius: 12px;
  overflow: hidden;
}

.blog__thumbnail--img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Content */
.blog__details--content {
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
  text-align: justify;
  line-height: 1.9;
  font-size: 24px;
  color: #555;
}

.blog__details--content p {
  margin-bottom: 18px;
}

.blog__details--content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 20px 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.blog__details--content h2 {
  font-size: 32px;
  margin-top: 32px;
  margin-bottom: 14px;
  color: var(--dark);
  font-weight: 700;
}

.blog__details--content h3 {
  font-size: 28px;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--dark);
  font-weight: 600;
}

.blog__details--content h4 {
  font-size: 25px;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--dark);
  font-weight: 600;
}

.blog__details--content a {
  color: var(--yellow-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog__details--content a:hover {
  color: var(--dark);
}

.blog__details--content ul,
.blog__details--content ol {
  padding-left: 24px;
  margin-bottom: 18px;
}

.blog__details--content li {
  margin-bottom: 6px;
}

.blog__details--content blockquote {
  border-left: 4px solid var(--yellow);
  padding: 16px 24px;
  margin: 20px 0;
  font-style: italic;
  background: #faf9f7;
  border-radius: 0 10px 10px 0;
  color: #666;
  font-size: 24px;
}

.blog__details--content pre {
  background: #1e1b4b;
  color: #e0e7ff;
  padding: 20px;
  border-radius: 10px;
  overflow-x: auto;
  margin: 20px 0;
  font-size: 21px;
  font-family: 'JetBrains Mono', monospace;
}

.blog__details--content code {
  background: #f3f0eb;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 14px;
  color: #d63384;
}

.blog__details--content pre code {
  background: none;
  padding: 0;
  color: inherit;
}

.blog__details--content table {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  display: block;
  margin: 20px 0;
  border-collapse: collapse;
}

.blog__details--content table th,
.blog__details--content table td {
  border: 1px solid #e0e0e0;
  padding: 10px 14px;
  text-align: left;
}

.blog__details--content table th {
  background: #faf9f7;
  font-weight: 600;
}

.blog__details--content * {
  max-width: 100%;
}

/* Tags & Social Share */
.blog__tags--social__media {
  padding: 24px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin: 30px 0;
  flex-wrap: wrap;
  gap: 16px;
}

.blog__tags--media__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-right: 10px;
  white-space: nowrap;
}

.blog__tags--media {
  flex-wrap: wrap;
}

.blog__tags--media ul {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
  flex-wrap: wrap;
}

.blog__tags--media__link {
  display: inline-block;
  padding: 6px 14px;
  background: #f3f0eb;
  border-radius: 20px;
  font-size: 20px;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog__tags--media__link:hover {
  background: var(--yellow);
  color: var(--dark);
}

.blog__social--media__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-right: 10px;
  white-space: nowrap;
}

.blog__social--media ul {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
}

.blog__social--media__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f3f0eb;
  color: #666;
  transition: all 0.3s ease;
  text-decoration: none;
}

.blog__social--media__link:hover {
  background: var(--yellow);
  color: var(--dark);
  transform: translateY(-2px);
}

.blog__social--media__link svg {
  width: 16px;
  height: 16px;
}

/* Related Posts */
.related__post--area {
  margin-top: 10px;
}

.section__heading--maintitle {
  font-family: "Josefin Sans", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--dark);
}

.related__post--items {
  background: #faf9f7;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related__post--items:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.related__post--thumbnail {
  overflow: hidden;
}

.related__post--thumbnail a {
  display: block;
}

.related__post--img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.related__post--items:hover .related__post--img {
  transform: scale(1.06);
}

.related__post--text {
  padding: 14px 16px 18px;
}

.related__post--title {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 6px;
  line-height: 1.35;
}

.related__post--title__link {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related__post--title__link:hover {
  color: var(--yellow-dark);
}

.related__post--deta {
  font-size: 19px;
  color: #aaa;
}

/* Comments */
.comment__box {
  margin-top: 10px;
}

.reviews__comment--reply__title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
}

.reviews__comment--inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.no-comments {
  font-size: 21px;
  color: #999;
  padding: 20px 0;
}

.reviews__comment--list {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #faf9f7;
  border-radius: 12px;
}

.reviews__comment--avatar {
  flex-shrink: 0;
}

.reviews__comment--avatar img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.reviews__comment--content {
  flex: 1;
  min-width: 0;
}

.reviews__comment--content__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}

.reviews__comment--content__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.reviews__comment--content__date {
  font-size: 19px;
  color: #aaa;
}

.reviews__comment--content__desc {
  font-size: 21px;
  line-height: 1.6;
  color: #666;
  margin: 0 0 10px;
  text-align: justify;
}

.comment__reply--btn {
  font-size: 20px;
  color: var(--yellow-dark);
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  padding: 0;
  transition: color 0.3s ease;
}

.comment__reply--btn:hover {
  color: var(--dark);
}

/* Comment Form */
.reviews__comment--reply__area {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.reviews__comment--reply__input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-size: 21px;
  outline: none;
  transition: border-color 0.3s ease;
  background: #fff;
  color: #555;
}

.reviews__comment--reply__input:focus {
  border-color: var(--yellow);
}

.reviews__comment--reply__textarea {
  width: 100%;
  height: 130px;
  padding: 14px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-size: 21px;
  outline: none;
  resize: vertical;
  transition: border-color 0.3s ease;
  background: #fff;
  color: #555;
  font-family: inherit;
}

.reviews__comment--reply__textarea:focus {
  border-color: var(--yellow);
}

/* Sidebar */
.blog__sidebar--widget {
  position: sticky;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.single__widget {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.widget__title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}

.widget__search--form {
  display: flex;
  gap: 8px;
}

.widget__search--form__input {
  flex: 1;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 20px;
  outline: none;
  transition: border-color 0.3s ease;
}

.widget__search--form__input:focus {
  border-color: var(--yellow);
}

.widget__search--form__btn {
  height: 44px;
  padding: 0 16px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  color: var(--dark);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.widget__search--form__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 197, 24, 0.3);
}

/* Recent Posts in Sidebar */
.recent__post--list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.recent__post--item {
  gap: 12px;
}

.recent__post--thumb {
  flex-shrink: 0;
}

.recent__post--thumb a {
  display: block;
}

.recent__post--thumb img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.recent__post--info {
  flex: 1;
  min-width: 0;
}

.recent__post--title {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 4px;
}

.recent__post--title a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent__post--title a:hover {
  color: var(--yellow-dark);
}

.recent__post--date {
  font-size: 18px;
  color: #aaa;
}

.no-data {
  font-size: 14px;
  color: #999;
}

/* Tag Cloud */
.widget__tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget__tagcloud--list {
  margin: 0;
}

.widget__tagcloud--link {
  display: inline-block;
  padding: 6px 14px;
  background: #f3f0eb;
  border-radius: 20px;
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.widget__tagcloud--link:hover {
  background: var(--yellow);
  color: var(--dark);
}

@media (max-width: 991px) {
  .blog__sidebar--widget {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .blog__details--wrapper {
    padding: 20px;
  }
  .post__header--title {
    font-size: 24px;
  }
  .blog__details--content {
    font-size: 15px;
  }
  .blog__details--content h2 {
    font-size: 20px;
  }
  .blog__details--content h3 {
    font-size: 18px;
  }
  .blog__post--meta { font-size: 13px; flex-direction: column; align-items: flex-start; gap: 4px; }
  .reviews__comment--list {
    flex-direction: column;
  }
  .reviews__comment--avatar img {
    width: 44px;
    height: 44px;
  }
  .reviews__comment--reply__title { font-size: 17px; }
  .related__post--title { font-size: 14px; }
  .section__heading--maintitle { font-size: 18px; }
  .widget__title { font-size: 16px; }
  .recent__post--title { font-size: 13px; }
  .widget__tagcloud--link { font-size: 12px; }
}

@media (max-width: 480px) {
  .blog__details--wrapper { padding: 14px; border-radius: 10px; }
  .post__header--title { font-size: 20px; }
  .blog__details--content { font-size: 14px; }
  .blog__tags--social__media { flex-direction: column; gap: 12px; }
  .reviews__comment--reply__input { font-size: 13px; }
  .reviews__comment--reply__textarea { font-size: 13px; }
  .recent__post--thumb img { width: 48px; height: 48px; }
}

/* ===== Instagram Section (second) ===== */
.instagram__section {
  background: var(--dark) !important;
  position: relative;
}

.instagram__section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dark), var(--yellow));
}

.instagram__section .section__heading--maintitle {
  color: var(--yellow) !important;
}

.instagram__section .section__heading--desc {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* ===== Primary Button Override ===== */
.primary__btn {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark)) !important;
  color: var(--dark) !important;
  font-weight: 700 !important;
  border: none !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  overflow: hidden;
}

.primary__btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(245, 197, 24, 0.35) !important;
}

/* ===== Section title span yellow ===== */
.section__heading--maintitle span {
  color: var(--yellow-dark) !important;
}

/* ===== Scroll to Top ===== */
#scroll__top {
  background: var(--yellow) !important;
  color: var(--dark) !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(245, 197, 24, 0.3) !important;
}

#scroll__top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 197, 24, 0.4) !important;
}

/* ===== Footer Section ===== */
.footer__section {
  background: var(--dark) !important;
  position: relative;
}

.footer__section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dark), var(--yellow));
}

.main__footer {
  padding: 60px 40px 30px;
}

@media (max-width: 767px) {
  .main__footer {
    padding: 40px 20px 20px;
  }
}

.main__footer .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .main__footer .row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .main__footer .row {
    grid-template-columns: 1fr;
  }
}

.main__footer .row > [class*="col-"] {
  width: 100%;
  max-width: 100%;
  flex: none;
  padding: 0;
}

/* -- Widget Columns -- */
.footer__widget {
  margin-bottom: 0;
}

.footer__widget--title {
  font-family: "Josefin Sans", sans-serif;
  color: var(--yellow) !important;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: default;
}

.footer__widget--button {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--yellow);
}

.footer__widget--title__arrowdown--icon {
  display: none;
  width: 14px;
  color: var(--yellow);
  transition: transform 0.3s ease;
}

.footer__widget--title.active .footer__widget--title__arrowdown--icon {
  transform: rotate(180deg);
}

.footer__widget--inner {
  display: block;
}

/* -- About Widget -- */
.footer__logo {
  display: inline-block;
  margin-bottom: 15px;
}

.footer__logo img {
  max-height: 80px;
  width: auto;
}

.footer__widget--desc {
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 15px;
}

/* -- Social Icons -- */
.footer__social {
  margin-top: 15px;
}

.social__shear {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
}

.social__shear--list {
  margin: 0;
}

.social__shear--list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social__shear--list__icon:hover {
  background: var(--yellow);
  color: var(--dark);
  transform: translateY(-3px);
}

/* -- Menu Widget -- */
.footer__widget--menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__widget--menu__list {
  margin-bottom: 10px;
}

.footer__widget--menu__text {
  color: rgba(255, 255, 255, 0.7) !important;
  transition: color 0.3s ease, transform 0.3s ease !important;
  position: relative;
  padding-left: 0;
  display: inline-block;
  font-size: 15px;
  text-decoration: none;
}

.footer__widget--menu__text:hover {
  color: var(--yellow) !important;
  transform: translateX(5px);
}

/* -- Newsletter Widget -- */
.footer__newsletter {
  display: block;
}

.footer__newsletter--desc {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 13px;
  margin-bottom: 15px;
}

.newsletter__subscribe--form__style {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

@media (max-width: 575px) {
  .newsletter__subscribe--form__style {
    flex-direction: column;
  }
  .newsletter__subscribe--button {
    width: 100%;
    justify-content: center;
  }
}

.footer__newsletter--input {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #fff !important;
  border-radius: 30px !important;
  padding: 12px 18px !important;
  width: 100%;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

.footer__newsletter--input:focus {
  border-color: var(--yellow) !important;
}

.footer__newsletter--input::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

.footer__newsletter--button {
  white-space: nowrap;
}

.newsletter__subscribe--button {
  border-radius: 30px !important;
  padding: 12px 22px;
  cursor: pointer;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.newsletter__subscribe--button__icon {
  width: 14px;
  height: 14px;
}

/* -- Footer Bottom -- */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.copyright__content {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 13px;
  margin: 0;
}

.copyright__content--link {
  color: var(--yellow) !important;
  font-weight: 600;
  text-decoration: none;
}

.copyright__content--link:hover {
  color: #fff !important;
}

.footer__payment {
  text-align: right;
}

.footer__payment--visa__card {
  max-width: 200px;
  height: auto;
}

/* -- Mobile Footer Accordion -- */
@media (max-width: 575px) {
  .main__footer {
    padding: 30px 0 10px;
  }
  .footer__widget {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 0;
  }
  .footer__widget--title {
    font-size: 15px;
    margin-bottom: 0;
    cursor: pointer;
  }
  .footer__widget--button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .footer__widget--title__arrowdown--icon {
    display: block;
  }
  .footer__widget--inner {
    display: none;
    padding-top: 14px;
  }
  .footer__widget--title.active + .footer__widget--inner {
    display: block;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer__payment {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .main__footer {
    padding: 40px 0 20px;
  }
  .footer__payment {
    text-align: center;
  }
}

/* -- WhatsApp Floating Button -- */
.whatsapp__btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  color: #fff;
  background: #20b859;
}

.whatsapp__btn svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .whatsapp__btn {
    width: 46px;
    height: 46px;
    bottom: 70px;
    right: 14px;
  }
  .whatsapp__btn svg {
    width: 22px;
    height: 22px;
  }
}

/* ===== Responsive ===== */
@media (max-width: 1199px) {
  .testimonial-section-fix .testimonial__banner--thumbnail__img {
    height: 400px;
  }
  .testimonial-section-fix .section__heading--maintitle {
    font-size: 45px;
  }
}

@media (max-width: 991px) {
  .testimonial-section-fix {
    padding: 60px 0 50px !important;
  }
  .testimonial-section-fix .testimonial__banner--thumbnail__img {
    height: auto;
    max-height: 350px;
  }
  .testimonial-section-fix .testimonial__section--inner {
    padding-top: 30px;
  }
  .testimonial-section-fix .section__heading {
    text-align: center;
  }
  .testimonial-section-fix .section__heading--maintitle {
    font-size: 42px;
  }
  .testimonial-section-fix .section__heading--maintitle::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .testimonial-section-fix .testimonial__items--topbar {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .testimonial-section-fix {
    padding: 40px 0 40px !important;
  }
  .testimonial-section-fix .testimonial__banner--thumbnail__img {
    max-height: 250px;
  }
  .testimonial-section-fix .section__heading {
    text-align: center;
  }
  .testimonial-section-fix .section__heading--maintitle {
    font-size: 35px;
  }
  .testimonial-section-fix .section__heading--maintitle::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .testimonial-section-fix .testimonial__items--topbar {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .testimonial-section-fix .testimonial__items--author {
    text-align: center;
    width: 100%;
    padding-left: 0;
    margin-top: 10px;
  }
  .testimonial-section-fix .testimonial__items--thumbnail {
    margin: 0 auto;
  }
  .testimonial__rating {
    justify-content: center;
  }
  .testimonial-section-fix .testimonial__items--desc {
    font-size: 22px;
    line-height: 2.2rem;
    text-align: center;
    padding: 0 10px;
  }
  .testimonial-section-fix .testimonial__icon--svg {
    display: block;
    margin: 0 auto 10px;
  }
  .testimonial-section-fix .testimonial__section--inner {
    padding-top: 20px;
  }
}

@media (max-width: 575px) {
  .most-popular-title { font-size: 35px; }
  .most-popular-tabs { padding: 5px; gap: 4px; border-radius: 20px; }
  .most-popular-tab-btn { padding: 8px 14px; font-size: 19px; gap: 4px; }
  .most-popular-tab-btn .tab-icon { width: 14px; height: 14px; }
  .featured-categories-title { font-size: 35px; }
  .category-card { will-change: transform; min-height: 160px; }
  .category-card__icon { width: 44px; height: 44px; }
  .category-card__icon svg { width: 22px; height: 22px; }
  .category-card__title { font-size: 26px; }
  .brand-feature-item { padding: 15px 10px; }
  .brand-feature-item p { font-size: 19px; }
  .instagram-gallery-section { padding: 35px 0; }
  .instagram-title { font-size: 29px; }
  .instagram-subtitle { font-size: 13px; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .shipping__items { padding: 15px 10px; }
  .shipping__items--content__title { font-size: 22px; }
}

/* ===== Featured Collection Section (showcase redesign) ===== */
.fc-showcase {
  background: #fcf9f6;
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.fc-showcase::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,197,24,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.fc-showcase::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(30,77,140,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.fc-showcase__header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.fc-showcase__overline {
  display: inline-block;
  font-family: "Josefin Sans", sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 8px;
  position: relative;
  padding: 0 20px;
}
.fc-showcase__overline::before,
.fc-showcase__overline::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 2px;
  background: var(--yellow);
}
.fc-showcase__overline::before { right: 100%; }
.fc-showcase__overline::after { left: 100%; }
/* ================================================================
   CURATED COLLECTION — Premium Redesign v2
   उत्तम चयन | Full-bleed magazine-style bento grid
   ================================================================ */

/* ── Section wrapper ── */
#featuredCollection {
  --cc-gold: #c9973b;
  --cc-gold-light: #163B68;
  --cc-dark: #12100e;
  --cc-accent: #e8d5a3;
  --cc-text: #3a3228;
  --cc-muted: #8c7b66;
  --cc-white: #ffffff;
  --cc-radius: 18px;
  --cc-shadow: 0 8px 32px rgba(0,0,0,0.14);
  --cc-shadow-hover: 0 24px 64px rgba(0,0,0,0.26);
  --cc-transition: 0.55s cubic-bezier(0.23, 1, 0.32, 1);

  background: linear-gradient(165deg, #faf8f4 0%, #f0ebe0 60%, #e8dece 100%);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}

/* Decorative grain texture overlay */
#featuredCollection::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Large decorative circle */
#featuredCollection::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,151,59,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

#featuredCollection .container {
  position: relative;
  z-index: 1;
}

/* ── Section header ── */
.cc-header {
  text-align: center;
  margin-bottom: 60px;
}

.cc-overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cc-gold);
  margin-bottom: 16px;
}
.cc-overline::before,
.cc-overline::after {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: currentColor;
  opacity: 0.6;
}

.cc-title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 54px;
  font-weight: 900;
  color: var(--cc-dark);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.cc-title em {
  font-style: normal;
  position: relative;
  display: inline-block;
}
.cc-title em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--cc-gold), var(--cc-gold-light));
  z-index: -1;
  opacity: 0.55;
}

.cc-subtitle {
  font-size: 26px;
  color: var(--cc-muted);
  max-width: 580px;
  margin: 0 auto 0;
  line-height: 1.65;
}
.cc-subtitle strong {
  color: var(--cc-text);
  font-weight: 700;
}

/* ── Bento Grid ── */
.cc-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  grid-template-rows: 360px 280px;
  gap: 16px;
  margin-bottom: 60px;
}

/* ── Card base ── */
.cc-card {
  position: relative;
  border-radius: var(--cc-radius);
  overflow: hidden;
  display: block;
  text-decoration: none !important;
  background: #1a1612;
  box-shadow: var(--cc-shadow);
  cursor: pointer;

  /* entrance: hidden until .visible fires */
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition:
    opacity var(--cc-transition),
    transform var(--cc-transition),
    box-shadow var(--cc-transition);
}

.cc-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered delays */
.cc-card:nth-child(1).visible { transition-delay: 0.00s; }
.cc-card:nth-child(2).visible { transition-delay: 0.08s; }
.cc-card:nth-child(3).visible { transition-delay: 0.16s; }
.cc-card:nth-child(4).visible { transition-delay: 0.24s; }
.cc-card:nth-child(5).visible { transition-delay: 0.32s; }

.cc-card:hover {
  box-shadow: var(--cc-shadow-hover);
  transform: translateY(-6px) scale(1.01);
  text-decoration: none !important;
}

/* Hero card spans 2 rows */
.cc-card--hero { grid-row: span 2; }

/* Wide card spans 2 cols */
.cc-card--wide { grid-column: span 2; }

/* ── Card image ── */
.cc-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.85s var(--cc-transition), filter 0.5s ease;
  will-change: transform;
  filter: brightness(0.88);
}
.cc-card:hover .cc-card__img {
  transform: scale(1.1);
  filter: brightness(0.75);
}

/* ── Multi-stop gradient overlay ── */
.cc-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    175deg,
    rgba(18,16,14,0) 30%,
    rgba(18,16,14,0.15) 55%,
    rgba(18,16,14,0.75) 100%
  );
  transition: background 0.4s ease;
}
.cc-card:hover .cc-card__overlay {
  background: linear-gradient(
    175deg,
    rgba(18,16,14,0) 20%,
    rgba(18,16,14,0.2) 50%,
    rgba(18,16,14,0.85) 100%
  );
}

/* Gold shimmer on hover */
.cc-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 35%,
    rgba(201,151,59,0.08) 50%,
    transparent 65%
  );
  background-size: 250% 250%;
  background-position: 100% 100%;
  transition: background-position 0.7s ease;
  pointer-events: none;
}
.cc-card:hover .cc-card__shine {
  background-position: 0% 0%;
}

/* ── Badge (number) ── */
.cc-card__badge {
  position: absolute;
  top: 18px;
  left: 20px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.22);
  z-index: 3;
  transition: color 0.35s ease, transform 0.35s ease;
}
.cc-card:hover .cc-card__badge {
  color: var(--cc-gold-light);
  transform: scale(1.1);
}

/* ── Card content ── */
.cc-card__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 26px 26px;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(12,10,8,0.88) 0%,
    rgba(12,10,8,0.55) 40%,
    rgba(12,10,8,0.0) 100%
  );
}

.cc-card__tag {
  align-self: flex-start;
  font-family: "Josefin Sans", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 10px;
  background: var(--cc-gold);
  color: var(--cc-dark);
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.cc-card__tag--hot  { background: #e8534a; color: #fff; }
.cc-card__tag--sale { background: #27ae60; color: #fff; }
.cc-card__tag--ex   { background: #8e44ad; color: #fff; }

.cc-card:hover .cc-card__tag {
  transform: translateY(0);
  opacity: 1;
}

.cc-card__title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff !important;
  line-height: 1.25;
  margin-bottom: 6px;
  transition: transform 0.4s ease;
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}
.cc-card:hover .cc-card__title { transform: translateY(-3px); }

.cc-card__price {
  font-size: 23px;
  font-weight: 700;
  color: var(--cc-gold-light) !important;
  margin-bottom: 12px;
  display: block;
  transition: transform 0.35s ease;
}
.cc-card:hover .cc-card__price { transform: translateY(-2px); }

.cc-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,0.9) !important;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 0.06s, transform 0.4s ease 0.06s, gap 0.3s ease, color 0.3s ease;
  pointer-events: auto;
  text-decoration: none;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(201,151,59,0.5);
  padding-bottom: 2px;
}
.cc-card:hover .cc-card__cta {
  opacity: 1;
  transform: translateY(0);
  gap: 12px;
  color: #fff !important;
}
.cc-card__cta svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.cc-card:hover .cc-card__cta svg { transform: translateX(5px); }

/* ── Hero card bigger type ── */
.cc-card--hero .cc-card__title { font-size: 42px; }
.cc-card--hero .cc-card__price { font-size: 29px; }
.cc-card--hero .cc-card__body  { padding: 40px 32px 32px; }

/* ── Stats row ── */
.cc-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 60px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  padding: 10px 0;
}
.cc-stat {
  flex: 1;
  max-width: 240px;
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid rgba(201,151,59,0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.cc-stat:last-child { border-right: none; }
.cc-stat.visible {
  opacity: 1;
  transform: translateY(0);
}
.cc-stat:nth-child(1).visible { transition-delay: 0.1s; }
.cc-stat:nth-child(2).visible { transition-delay: 0.2s; }
.cc-stat:nth-child(3).visible { transition-delay: 0.3s; }
.cc-stat:nth-child(4).visible { transition-delay: 0.4s; }
.cc-stat__num {
  font-family: "Josefin Sans", sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--cc-dark);
  line-height: 1;
  margin-bottom: 8px;
}
.cc-stat__num span {
  background: linear-gradient(135deg, var(--cc-gold), var(--cc-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cc-stat__label {
  font-size: 21px;
  color: var(--cc-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Footer CTA ── */
.cc-footer {
  text-align: center;
}
.cc-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 44px;
  border-radius: 60px;
  background: var(--cc-dark);
  color: #fff !important;
  font-family: "Josefin Sans", sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-decoration: none !important;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 6px 24px rgba(18,16,14,0.3);
}
.cc-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cc-gold), var(--cc-gold-light));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cc-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(201,151,59,0.45);
  color: var(--cc-dark) !important;
}
.cc-btn:hover::before { opacity: 1; }
.cc-btn > * { position: relative; z-index: 1; }
.cc-btn svg { transition: transform 0.35s ease; }
.cc-btn:hover svg { transform: translateX(5px); }

/* ================================================================
   RESPONSIVE — Curated Collection
   ================================================================ */
@media (max-width: 1199px) {
  .cc-title { font-size: 46px; }
  .cc-grid { grid-template-rows: 320px 250px; gap: 14px; }
  .cc-card--hero .cc-card__title { font-size: 32px; }
}

@media (max-width: 991px) {
  #featuredCollection { padding: 80px 0 70px; }
  .cc-title { font-size: 40px; }
  .cc-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 240px;
    gap: 14px;
  }
  .cc-card--hero {
    grid-column: span 2;
    grid-row: span 1;
  }
  .cc-card--wide { grid-column: span 2; }
  .cc-stats { flex-wrap: wrap; padding: 5px 0; }
  .cc-stat { flex: 0 0 50%; max-width: none; border-right: none; border-bottom: 1px solid rgba(201,151,59,0.2); }
  .cc-stat:nth-child(3), .cc-stat:nth-child(4) { border-bottom: none; }
}

@media (max-width: 767px) {
  #featuredCollection { padding: 65px 0 55px; }
  .cc-title { font-size: 45px; }
  .cc-subtitle { font-size: 14px; }
  .cc-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 210px;
    gap: 12px;
  }
  .cc-card--hero {
    grid-column: span 2;
    grid-row: auto;
    height: 260px;
  }
  .cc-card__title { font-size: 24px; }
  /* Always show CTA and tag on mobile/touch */
  .cc-card__cta { opacity: 1; transform: translateY(0); }
  .cc-card__tag  { opacity: 1; transform: translateY(0); }
  .cc-stat__num  { font-size: 42px; }
  .cc-btn { font-size: 22px; padding: 14px 32px; }
}

@media (max-width: 575px) {
  #featuredCollection { padding: 50px 0 40px; }
  .cc-header { margin-bottom: 40px; }
  .cc-title { font-size: 35px; letter-spacing: -0.5px; }
  .cc-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
  }
  .cc-card { height: 240px; }
  .cc-card--hero { grid-column: span 1; height: 280px; }
  .cc-card--wide  { grid-column: span 1; }
  .cc-card--hero .cc-card__title { font-size: 32px; }
  .cc-card__title { font-size: 25px; }
  .cc-card__body { padding: 20px 18px 18px; }
  .cc-stats { margin-bottom: 36px; }
  .cc-stat { flex: 0 0 100%; border-right: none; }
  .cc-btn { width: 100%; justify-content: center; font-size: 21px; padding: 14px 24px; }
}

/* ===== Testimonial Section (redesigned) ===== */
/* ===== Blog Section (redesigned - Wooden Furniture) ===== */
/* ===== Responsive: Featured Collection ===== */
@media (max-width: 991px) {
  .featured-collection-grid {
    grid-template-columns: 1fr 1fr;
  }
  .featured-collection-grid .collection-card--lg {
    grid-column: span 2;
    grid-row: auto;
    max-height: 300px;
  }
}
@media (max-width: 575px) {
  .featured-collection-title { font-size: 35px; }
  .featured-collection-grid {
    grid-template-columns: 1fr;
  }
  .featured-collection-grid .collection-card--lg {
    grid-column: span 1;
  }
  .collection-card { min-height: 220px; }
  .collection-card__overlay { padding: 18px; }
  .collection-card__title { font-size: 26px; }
}

/* ==========================================================================
   ===== Redesigned Wooden Furniture Section (wfs-) =====
   ========================================================================== */
#woodenFurnitureSection {
  --wfs-primary: #163B68;
  --wfs-primary-dark: #3A6EBA;
  --wfs-accent: #163B68;
  --wfs-dark: #1a1a1a;
  --wfs-light-bg: #faf7f4;
  --wfs-card-bg: #ffffff;
  --wfs-gray: #6e6e6e;
  --wfs-gray-light: #e6e6e6;
  --wfs-star: #163B68;
  --wfs-transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --wfs-transition-slow: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  --wfs-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  --wfs-shadow-hover: 0 16px 36px rgba(180, 140, 100, 0.12);
  
  background-color: var(--wfs-light-bg);
  padding: 85px 0 75px;
  position: relative;
  overflow: hidden;
}

#woodenFurnitureSection::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(30,77,140,0.06) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.wfs-row {
  display: flex;
  gap: 35px;
  align-items: stretch;
}

/* Left Spotlight deal column (40%) */
.wfs-col-4 {
  width: 40%;
  display: flex;
  flex-direction: column;
}

/* Right Collection grid column (60%) */
.wfs-col-8 {
  width: 60%;
  display: flex;
  flex-direction: column;
}

/* Header */
.wfs-header {
  margin-bottom: 35px;
}
.wfs-overline {
  display: inline-block;
  font-family: "Josefin Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--wfs-primary-dark);
  margin-bottom: 8px;
  position: relative;
  padding-left: 30px;
}
.wfs-overline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: var(--wfs-primary);
  transform: translateY(-50%);
}
.wfs-title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--wfs-dark);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.wfs-title span {
  background: linear-gradient(135deg, var(--wfs-primary-dark), var(--wfs-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wfs-subtitle {
  font-size: 24px;
  color: var(--wfs-gray);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.wfs-divider {
  display: flex;
  gap: 6px;
}
.wfs-divider span {
  display: block;
  width: 50px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--wfs-primary), var(--wfs-accent));
}

/* Grid Layout */
.wfs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  flex-grow: 1;
}

/* Premium Card (WFS) */
.wfs-card {
  background-color: var(--wfs-card-bg);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--wfs-shadow);
  transition: var(--wfs-transition);
  opacity: 0;
  transform: translateY(30px);
}
.wfs-card.animated {
  opacity: 1;
  transform: translateY(0);
}
.wfs-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--wfs-shadow-hover);
}

.wfs-card__img-wrap {
  position: relative;
  overflow: hidden;
  background-color: #f8f6f4;
  aspect-ratio: 1 / 1;
}
.wfs-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--wfs-transition-slow);
}
.wfs-card__img.secondary-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.wfs-card:hover .wfs-card__img.primary-img {
  opacity: 0;
  transform: scale(1.05);
}
.wfs-card:hover .wfs-card__img.secondary-img {
  opacity: 1;
  transform: scale(1.05);
}

.wfs-card__actions {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  display: flex;
  gap: 10px;
  z-index: 3;
  opacity: 0;
  transition: var(--wfs-transition);
  pointer-events: none;
}
.wfs-card:hover .wfs-card__actions {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.wfs-action-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--wfs-card-bg);
  color: var(--wfs-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: var(--wfs-transition);
}
.wfs-action-btn:hover {
  background-color: var(--wfs-accent);
  color: var(--wfs-dark);
  transform: scale(1.1);
}
.wfs-action-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.wfs-card__badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 3;
  background-color: var(--wfs-accent);
  color: var(--wfs-dark);
  font-family: "Josefin Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.wfs-card__content {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.wfs-card__rating {
  display: flex;
  gap: 3px;
  margin-bottom: 8px;
}
.wfs-card__rating svg {
  width: 14px;
  height: 14px;
  fill: var(--wfs-star);
  stroke: var(--wfs-star);
}
/* Empty star — replaces inline style="fill:none; stroke:#e6e6e6;" */
.wfs-card__rating svg.star-empty {
  fill: none;
  stroke: #e0e0e0;
}
.wfs-card__title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
}
.wfs-card__title a {
  color: var(--wfs-dark);
  transition: var(--wfs-transition);
  text-decoration: none;
}
.wfs-card__title a:hover {
  color: var(--wfs-primary-dark);
}

.wfs-card__price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}
.wfs-card__price {
  font-size: 26px;
  font-weight: 700;
  color: var(--wfs-primary-dark);
}
.wfs-card__price--old {
  font-size: 21px;
  text-decoration: line-through;
  color: #a0a0a0;
}

.wfs-card__cart-btn {
  width: 100%;
  padding: 10px 18px;
  border-radius: 30px;
  border: 1px solid var(--wfs-gray-light);
  background-color: transparent;
  color: var(--wfs-dark);
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--wfs-transition);
  cursor: pointer;
  margin-top: auto;
}
.wfs-card__cart-btn svg {
  width: 16px;
  height: 16px;
  transition: var(--wfs-transition);
}
.wfs-card:hover .wfs-card__cart-btn {
  background: linear-gradient(135deg, var(--wfs-accent), var(--wfs-primary));
  color: var(--wfs-dark);
  border-color: transparent;
  box-shadow: 0 6px 15px rgba(245, 197, 24, 0.2);
}

/* Spotlight Card Layout */
.wfs-spotlight {
  height: 100%;
  min-height: 540px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px 36px;
  z-index: 2;
  transition: var(--wfs-transition);
}
.wfs-spotlight__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.wfs-spotlight:hover .wfs-spotlight__bg {
  transform: scale(1.06);
}
.wfs-spotlight__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(20,15,10,0.08) 0%,
    rgba(20,15,10,0.5) 45%,
    rgba(20,15,10,0.92) 100%
  );
  z-index: 2;
}
.wfs-spotlight__content {
  position: relative;
  z-index: 3;
  color: #ffffff !important;
}
.wfs-spotlight__tag {
  display: inline-block;
  background-color: var(--wfs-accent);
  color: var(--wfs-dark);
  font-family: "Josefin Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.wfs-spotlight__title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 45px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.wfs-spotlight__desc {
  font-size: 23px;
  color: rgba(255,255,255,0.9) !important;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Glassmorphism Timer */
.wfs-timer {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}
.wfs-timer__block {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  min-width: 65px;
  transition: var(--wfs-transition);
}
.wfs-spotlight:hover .wfs-timer__block {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}
.wfs-timer__val {
  display: block;
  font-family: "Josefin Sans", sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--wfs-accent);
  line-height: 1;
  margin-bottom: 4px;
}
.wfs-timer__label {
  display: block;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.8) !important;
  font-weight: 600;
}

.wfs-spotlight__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--wfs-accent), var(--wfs-primary));
  color: var(--wfs-dark);
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  font-size: 22px;
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(245, 197, 24, 0.2);
  transition: var(--wfs-transition);
}
.wfs-spotlight__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 197, 24, 0.45);
  color: var(--wfs-dark);
  text-decoration: none;
}
.wfs-spotlight__btn svg {
  width: 16px;
  height: 16px;
  transition: var(--wfs-transition);
}
.wfs-spotlight__btn:hover svg {
  transform: translateX(4px);
}

/* Stagger transitions */
.wfs-card:nth-child(1) { transition-delay: 0s; }
.wfs-card:nth-child(2) { transition-delay: 0.07s; }
.wfs-card:nth-child(3) { transition-delay: 0.14s; }
.wfs-card:nth-child(4) { transition-delay: 0.21s; }

/* Responsive WFS */
@media (max-width: 1199px) {
  .wfs-title { font-size: 40px; }
  .wfs-spotlight { min-height: 460px; padding: 30px; }
  .wfs-spotlight__title { font-size: 38px; }
}
@media (max-width: 991px) {
  .wfs-row {
    flex-direction: column;
    gap: 40px;
  }
  .wfs-col-4, .wfs-col-8 {
    width: 100%;
  }
  .wfs-spotlight {
    min-height: 400px;
  }
}
@media (max-width: 575px) {
  .wfs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .wfs-title { font-size: 38px; }
  .wfs-spotlight { padding: 24px; }
  .wfs-spotlight__title { font-size: 32px; }
  .wfs-timer__block { min-width: 50px; padding: 8px; }
  .wfs-timer__val { font-size: 29px; }
}

/* ===== Banner Style2 — Text Overlap Fix ===== */
.banner__items--content__style2 {
  max-width: 45%;
  left: 2.4rem !important;
}

.banner__items--content__style2.right {
  left: auto !important;
  right: 2.4rem !important;
}

.banner__items--content__style2--title {
  word-break: break-word;
  hyphens: auto;
  line-height: 1.3;
}

@media (max-width: 991px) {
  .banner__items--content__style2 {
    max-width: 52%;
    left: 1.8rem !important;
  }
  .banner__items--content__style2.right {
    right: 1.8rem !important;
  }
}

@media (max-width: 575px) {
  .banner__items--content__style2 {
    max-width: 60%;
    left: 1.4rem !important;
  }
  .banner__items--content__style2.right {
    right: 1.4rem !important;
  }
}



/* ===== Contact Form Improved ===== */
.contact__form--input:focus,
.contact__form--textarea:focus {
  border-color: var(--secondary-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(245, 28, 28, 0.1);
}

.contact__form--input,
.contact__form--textarea {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact__form--btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact__form--btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 28, 28, 0.3);
}

.contact__form--success {
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact__info {
  transition: transform 0.3s ease;
}

.contact__info:hover {
  transform: translateY(-5px);
}

@media (max-width: 767px) {
  .contact__section {
    padding: 40px 0;
  }
  .contact__section--hrading {
    font-size: 24px;
  }
  .contact__section--hrading__desc {
    font-size: 15px;
  }
  .contact__form--label {
    font-size: 14px;
  }
  .contact__form--input {
    font-size: 14px;
    padding: 10px 15px;
  }
  .main__contact--area .row {
    flex-direction: column-reverse;
  }
  .contact__info {
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .contact__section {
    padding: 25px 0;
  }
  .contact__section--hrading {
    font-size: 22px;
  }
}

/* ===== Contact Font Size Overrides (theme CSS oversized) ===== */
.contact__form--btn {
  font-size: 14px !important;
  line-height: 1.6 !important;
  padding: 10px 24px !important;
}
.contact__info--content__title {
  font-size: 16px !important;
  line-height: 1.4 !important;
}
.contact__info--content__desc {
  font-size: 14px !important;
  line-height: 1.6 !important;
}
.login__remember--label {
  font-size: 13px !important;
}
.contact__form--input,
.contact__form--textarea {
  font-size: 14px !important;
}
.contact__form--label {
  font-size: 14px !important;
}
@media (max-width: 991px) {
  .contact__info--content__desc {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }
  .login__remember--label {
    font-size: 14px !important;
  }
}
@media (max-width: 767px) {
  .contact__info--content__title {
    font-size: 15px !important;
  }
  .contact__info--content__desc {
    font-size: 13px !important;
  }
  .contact__form--btn {
    font-size: 14px !important;
  }
}

/* ===== Wishlist / Cart Font Size Overrides (theme CSS oversized) ===== */
.cart__title {
  font-size: 22px !important;
  line-height: 1.4 !important;
}
.cart__table--header__list {
  font-size: 13px !important;
  line-height: 1.6 !important;
}
.cart__content--title {
  font-size: 15px !important;
  line-height: 1.4 !important;
}
.cart__content--variant {
  font-size: 12px !important;
  line-height: 1.4 !important;
}
.cart__price {
  font-size: 15px !important;
  font-weight: 600;
}
.wishlist__cart--btn {
  font-size: 13px !important;
  line-height: 1.6 !important;
}
.continue__shopping--link {
  font-size: 14px !important;
}
.continue__shopping--clear {
  font-size: 14px !important;
}
.cart__remove--btn {
  width: 24px !important;
  height: 24px !important;
  line-height: 24px !important;
}
.cart__remove--btn svg {
  width: 12px !important;
  height: 12px !important;
}
.in__stock {
  font-size: 12px !important;
}
@media (max-width: 991px) {
  .wishlist__cart--btn {
    font-size: 14px !important;
  }
}
@media (max-width: 767px) {
  .cart__title {
    font-size: 20px !important;
  }
  .continue__shopping--link,
  .continue__shopping--clear {
    font-size: 13px !important;
  }
}
@media (max-width: 575px) {
  .cart__title {
    font-size: 18px !important;
  }
}

/* ===== Global Theme Font Size Overrides (style.css oversized fonts) ===== */

/* --- Header / Nav --- */
.header__menu--link {
  font-size: 15px !important;
}
.header__sub--menu__link {
  font-size: 13px !important;
}
.header__mega--subtitle {
  font-size: 14px !important;
}
.header__mega--sub__menu--title {
  font-size: 13px !important;
}
.header__info--text {
  font-size: 12px !important;
}
.header__select--categories,
.header__search--category {
  font-size: 13px !important;
}

/* --- Minicart sidebar --- */
.offcanvas__minicart .minicart__header--desc {
  font-size: 12px !important;
}
.offcanvas__minicart .minicart__title {
  font-size: 16px !important;
}
.offcanvas__minicart .minicart__subtitle {
  font-size: 13px !important;
}
.offcanvas__minicart .minicart__button--link {
  font-size: 14px !important;
}
.offcanvas__minicart .quantity__value {
  font-size: 18px !important;
}

/* --- Product grid/list --- */
.product__items--action__btn.add__to--cart {
  font-size: 13px !important;
}
.product__items--action__cart--btn {
  font-size: 12px !important;
}
.product__items--content__subtitle {
  font-size: 13px !important;
}
.current__price {
  font-size: 15px !important;
}
.old__price {
  font-size: 13px !important;
}
.product__list--current__price {
  font-size: 16px !important;
}
.product__list--items__content--title {
  font-size: 15px !important;
}
.product__grid--heading__maintitle {
  font-size: 16px !important;
}
.product__tab--btn__list {
  font-size: 13px !important;
  height: 32px !important;
  line-height: 32px !important;
}

/* --- Shop sidebar --- */
.widget__title {
  font-size: 16px !important;
}
.widget__filter--btn__text {
  font-size: 14px !important;
}
.offcanvas__filter--close__text {
  font-size: 14px !important;
}
.widget__search--form__input {
  font-size: 14px !important;
}
.price__filter--label {
  font-size: 13px !important;
}
.price__filter--btn {
  font-size: 14px !important;
}
.price__divider {
  font-size: 16px !important;
}
.product__view--label {
  font-size: 13px !important;
}
.product__showing--count {
  font-size: 13px !important;
}
.pagination__item {
  font-size: 14px !important;
  width: 32px !important;
  height: 32px !important;
  line-height: 30px !important;
}

/* --- Blog --- */
.blog__content--meta__text {
  font-size: 12px !important;
}
.blog__content--desc {
  font-size: 14px !important;
}
.blog__content--btn {
  font-size: 13px !important;
}
.articl__post--items__content--title {
  font-size: 15px !important;
}
.blog__post--meta {
  font-size: 13px !important;
}
.blog__tags--media__title {
  font-size: 14px !important;
}
.blog__social--media__title {
  font-size: 14px !important;
}
.meta__deta {
  font-size: 13px !important;
}
.related__post--title {
  font-size: 15px !important;
}
.related__post--deta {
  font-size: 13px !important;
}
.comment__reply--btn {
  font-size: 13px !important;
  line-height: 32px !important;
}
.reviews__comment--content__title2 {
  font-size: 15px !important;
}
.reviews__comment--content__date2 {
  font-size: 12px !important;
}
.rating__list--text {
  font-size: 13px !important;
}
.blockquote__content--desc {
  font-size: 14px !important;
}

/* --- Account / Login --- */
.account__login--header__desc {
  font-size: 14px !important;
}
.account__login--input {
  font-size: 14px !important;
  height: 42px !important;
}
.account__login--btn {
  font-size: 14px !important;
}
.account__login--signup__text {
  font-size: 14px !important;
}
.account__login--forgot {
  font-size: 13px !important;
}
.account__social--link {
  font-size: 13px !important;
}
.account__menu--list {
  font-size: 14px !important;
}
.account__welcome--text {
  font-size: 14px !important;
}
.account__table--header__child--items {
  font-size: 13px !important;
}
.account__details--desc {
  font-size: 14px !important;
}
.account__details--link {
  font-size: 14px !important;
}
.account__details--footer__btn {
  font-size: 14px !important;
}
.new__address--btn {
  font-size: 14px !important;
}

/* --- Cart extras --- */
.coupon__code--title {
  font-size: 16px !important;
}
.cart__note--title {
  font-size: 16px !important;
}
.cart__summary--footer__desc {
  font-size: 14px !important;
}
.cart__summary--footer__btn {
  font-size: 14px !important;
}

/* --- Checkout --- */
.checkout__total--calculated__text {
  font-size: 13px !important;
}
.checkout__total--footer__title {
  font-size: 14px !important;
}
.checkout__total--footer__amount {
  font-size: 18px !important;
}
.checkout__order--summary__title {
  font-size: 16px !important;
}
.payment__history--title {
  font-size: 16px !important;
}
.order__summary--final__price {
  font-size: 14px !important;
}
.product__description--name {
  font-size: 14px !important;
}
.section__header--title {
  font-size: 16px !important;
}
.compare__heading--maintitle {
  font-size: 18px !important;
}
.compare__table--items__child--header {
  font-size: 13px !important;
}
.compare__product--title {
  font-size: 14px !important;
}
.compare__description {
  font-size: 13px !important;
}
.compare__instock {
  font-size: 12px !important;
}
.compare__cart--btn {
  font-size: 13px !important;
}

/* --- Quickview --- */
.quickview__close--btn {
  font-size: 16px !important;
  width: 28px !important;
  height: 28px !important;
  line-height: 28px !important;
}
.quickview__value--quantity {
  font-size: 18px !important;
}
input.quickview__value--number {
  font-size: 14px !important;
}
.quickview__cart--btn {
  font-size: 14px !important;
}
.quickview__social--title {
  font-size: 13px !important;
}

/* --- Shipping / About / Accordion --- */
.shipping__items--content__title {
  font-size: 16px !important;
}
.shipping__style2--content__title {
  font-size: 14px !important;
}
.shipping__style2--content__desc {
  font-size: 13px !important;
}
.about__content--subtitle {
  font-size: 16px !important;
}
.about__content--desc {
  font-size: 14px !important;
}
.accordion__items--body__desc {
  font-size: 14px !important;
}
.accordion__items--button {
  font-size: 14px !important;
}
.faq__accordion--btn {
  font-size: 14px !important;
}

/* --- Footer --- */
.footer__widget--desc {
  font-size: 14px !important;
}
.footer__widget--title {
  font-size: 16px !important;
}
.footer__widget--menu__text {
  font-size: 13px !important;
}
.copyright__content {
  font-size: 12px !important;
}
.footer__contact--info__text {
  font-size: 13px !important;
}
.footer__payment--method__title {
  font-size: 14px !important;
}
.footer__newsletter--desc {
  font-size: 14px !important;
}

/* --- Newsletter / popup --- */
.newsletter__subscribe--button {
  font-size: 13px !important;
}
.newsletter__popup--title {
  font-size: 18px !important;
}
.newsletter__popup--content--desc {
  font-size: 14px !important;
}
.newsletter__popup--subscribe__input {
  font-size: 14px !important;
}
.newsletter__popup--subscribe__btn {
  font-size: 14px !important;
}
.newsletter__popup--dontshow__again--text {
  font-size: 12px !important;
}

/* --- Privacy / Error / Counter --- */
.privacy__policy--content__title {
  font-size: 18px !important;
}
.privacy__policy--content__subtitle {
  font-size: 15px !important;
}
.privacy__policy--content__desc {
  font-size: 14px !important;
}
.error__content--title {
  font-size: 18px !important;
}
.error__content--desc {
  font-size: 14px !important;
}
.error__content--btn {
  font-size: 14px !important;
}
.counterup__banner--items__text {
  font-size: 18px !important;
  letter-spacing: 1px;
}
.counterup__banner--items__number {
  font-size: 56px !important;
  line-height: 1.1 !important;
}
.team__content--subtitle {
  font-size: 14px !important;
}
.team__content--title {
  font-size: 16px !important;
}

/* --- Product details / Reviews --- */
.product__details--info {
  font-size: 14px !important;
}
.product__details--info__title {
  font-size: 20px !important;
}
.product__details--info__price .current__price {
  font-size: 18px !important;
}
.product__details--info__price .old__price {
  font-size: 14px !important;
}
.product__details--info__desc {
  font-size: 14px !important;
}
.product__variant--title {
  font-size: 14px !important;
}
.product__details--info__meta--list {
  font-size: 13px !important;
}
.guarantee__safe--checkout__title {
  font-size: 14px !important;
}
.product__details--tab__list {
  font-size: 14px !important;
}
.product__tab--content__title {
  font-size: 15px !important;
}
.product__tab--content__desc,
.product__tab--content__list {
  font-size: 14px !important;
}
.actions__newreviews--btn.primary__btn {
  font-size: 14px !important;
}
.reviews__comment--content__desc {
  font-size: 14px !important;
}
.reviews__comment--reply__textarea,
.reviews__comment--reply__input {
  font-size: 14px !important;
}

/* --- Breadcrumb (inner pages) --- */
.breadcrumb__content--title {
  font-size: 30px !important;
}
.breadcrumb__content--menu__items {
  font-size: 14px !important;
}
@media (min-width: 992px) {
  .breadcrumb__content--title {
    font-size: 42px !important;
    line-height: 1.2 !important;
  }
}
@media (min-width: 1200px) {
  .breadcrumb__content--title {
    font-size: 48px !important;
  }
}
@media (min-width: 1600px) {
  .breadcrumb__content--title {
    font-size: 54px !important;
  }
}
@media (max-width: 767px) {
  .breadcrumb__content--title {
    font-size: 26px !important;
  }
}
@media (max-width: 575px) {
  .breadcrumb__content--title {
    font-size: 22px !important;
  }
}

/* --- Slider headings --- */
.slider__content2--maintitle,
.slider__content3--maintitle {
  font-size: 28px !important;
}
@media (min-width: 768px) {
  .slider__content2--maintitle,
  .slider__content3--maintitle {
    font-size: 32px !important;
  }
}
@media (min-width: 992px) {
  .slider__content2--maintitle,
  .slider__content3--maintitle {
    font-size: 36px !important;
  }
}
@media (min-width: 1200px) {
  .slider__content2--maintitle,
  .slider__content3--maintitle {
    font-size: 42px !important;
  }
}

/* --- Banner headings --- */
.banner__items--content__title {
  font-size: 18px !important;
}
.banner__items--content__style2--title {
  font-size: 18px !important;
}
.banner__content--style2__subtitle {
  font-size: 13px !important;
}
.banner__content--style2--title {
  font-size: 18px !important;
}
.banner__content--style3__title {
  font-size: 18px !important;
}
.banner__discount--content__subtitle {
  font-size: 13px !important;
}
.banner__discount--content__title {
  font-size: 24px !important;
}
.deals__content--style2__subtitle {
  font-size: 13px !important;
}
.deals__banner--countdown .countdown__number {
  font-size: 16px !important;
}
.deals__banner--countdown .countdown__text {
  font-size: 12px !important;
}
.product__banner--content__subtitle {
  font-size: 13px !important;
}
.product__banner--content--title {
  font-size: 18px !important;
}
.product__banner--content__price {
  font-size: 16px !important;
}
.choiceus__content--desc {
  font-size: 14px !important;
}
.new__product--content__title {
  font-size: 28px !important;
}
.new__product--price__badge {
  font-size: 13px !important;
}
.new__product--current__price {
  font-size: 20px !important;
}
.new__product--old__price {
  font-size: 15px !important;
}

/* ===== My Account / Dashboard Design ===== */
.my__account--section {
  background: var(--bg-gray-color);
}

.my__account--section__inner {
  background: var(--white-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.account__left--sidebar {
  width: 260px;
  min-width: 260px;
  padding: 30px 20px;
  background: var(--white-color);
  border-right: 1px solid var(--border-color2);
}

.account__content--title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
}

.account__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.account__menu--list {
  margin-bottom: 2px;
}

.account__menu--list a,
.account__menu--list Link {
  display: block;
  padding: 12px 15px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray-color);
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.account__menu--list a:hover {
  background: var(--gray-color2);
  color: var(--primary-color);
  transform: translateX(5px);
}

.account__menu--list.active a {
  background: var(--secondary-color);
  color: var(--white-color);
  font-weight: 600;
}

.account__menu--list.active a:hover {
  background: var(--secondary-color);
  color: var(--white-color);
  padding-left: 15px;
}

.account__wrapper {
  flex: 1;
  padding: 30px;
}

.account__welcome--text {
  font-size: 14px;
  color: var(--text-gray-color);
  margin-bottom: 25px;
  padding: 15px 20px;
  background: #f0f8ff;
  border-radius: 8px;
  border-left: 4px solid var(--secondary-color);
}

.account__table {
  width: 100%;
  border-collapse: collapse;
}

.account__table--header {
  background: var(--bg-gray-color);
}

.account__table--header__child--items {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  text-align: left;
  border-bottom: 2px solid var(--border-color2);
}

.account__table--body__child {
  border-bottom: 1px solid var(--border-color2);
  transition: background 0.2s ease;
}

.account__table--body__child:hover {
  background: var(--gray-color2);
}

.account__table--body__child--items {
  padding: 14px 16px;
  font-size: 14px;
  color: var(--text-gray-color);
}

.account__details {
  background: var(--bg-gray-color);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid var(--border-color2);
}

.account__details--title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.account__details--desc {
  font-size: 14px;
  line-height: 2.4rem;
  color: var(--text-gray-color);
  margin-bottom: 15px;
}

.account__details--link {
  font-size: 14px;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
}

.account__details--link:hover {
  text-decoration: underline;
}

.account__details--footer {
  margin-top: 20px;
  gap: 10px;
}

.account__details--footer__btn {
  padding: 10px 25px;
  border: 1px solid var(--border-color);
  background: var(--white-color);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.account__details--footer__btn:hover {
  background: var(--secondary-color);
  color: var(--white-color);
  border-color: var(--secondary-color);
}

.new__address--btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.new__address--btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 28, 28, 0.3);
}

@media (max-width: 991px) {
  .my__account--section__inner {
    flex-direction: column;
  }
  .account__left--sidebar {
    width: 100%;
    min-width: unset;
    margin-bottom: 20px;
    padding: 20px;
    border-right: none;
    border-bottom: 1px solid var(--border-color2);
  }
  .account__menu {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .account__menu--list {
    margin-bottom: 0;
  }
  .account__menu--list a,
  .account__menu--list Link {
    padding: 10px 18px;
    font-size: 13px;
  }
  .account__wrapper {
    width: 100%;
    padding: 20px;
  }
  .account__table--area {
    overflow-x: auto;
  }
  .account__table {
    min-width: 600px;
  }
  .new__address--btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .my__account--section {
    padding: 30px 0;
  }
  .account__welcome--text {
    font-size: 13px;
    padding: 12px 15px;
  }
  .account__content--title {
    font-size: 20px;
  }
  .account__menu {
    flex-direction: column;
    gap: 0;
  }
  .account__menu--list a,
  .account__menu--list Link {
    padding: 11px 15px;
    font-size: 13px;
  }
  .account__table--header__child--items,
  .account__table--body__child--items {
    padding: 10px 12px;
    font-size: 13px;
  }
  .account__details {
    padding: 18px;
  }
  .account__details--title {
    font-size: 16px;
  }
  .account__details--desc {
    font-size: 13px;
  }
  .account__details--footer {
    flex-direction: column;
    gap: 8px;
  }
  .account__details--footer__btn {
    width: 100%;
    text-align: center;
    padding: 10px 20px;
  }
}

@media (max-width: 575px) {
  .my__account--section {
    padding: 20px 0;
  }
  .account__left--sidebar {
    padding: 15px;
  }
  .account__content--title {
    font-size: 18px;
  }
  .account__wrapper {
    padding: 15px;
  }
  .account__table--header__child--items,
  .account__table--body__child--items {
    padding: 8px 10px;
    font-size: 12px;
  }
}

/* Mobile table view for account orders */
@media (max-width: 767px) {
  .account__table--body.mobile__none {
    display: none;
  }
  .account__table--body.mobile__block {
    display: block;
  }
  .account__table--body.mobile__block .account__table--body__child {
    display: flex;
    flex-wrap: wrap;
    padding: 12px;
    margin-bottom: 10px;
    background: var(--gray-color2);
    border-radius: 8px;
  }
  .account__table--body.mobile__block .account__table--body__child--items {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 4px 8px;
    display: flex;
    flex-direction: column;
  }
  .account__table--body.mobile__block .account__table--body__child--items strong {
    font-size: 12px;
    color: var(--text-gray-color);
    margin-bottom: 2px;
  }
  .account__table--body.mobile__block .account__table--body__child--items span {
    font-size: 13px;
    font-weight: 600;
  }
}

@media (min-width: 768px) {
  .account__table--body.mobile__block {
    display: none;
  }
}

/* ===== Page Transitions ===== */
.main__content_wrapper {
  animation: pageFadeIn 0.3s ease;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Button Hover Enhancements ===== */
.primary__btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.primary__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 28, 28, 0.3);
}

/* ===== Breadcrumb Responsive ===== */
@media (max-width: 767px) {
  .breadcrumb__content--title {
    font-size: 26px;
  }
  .breadcrumb__content--menu__items {
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .breadcrumb__content--title {
    font-size: 22px;
  }
  .breadcrumb__section {
    padding: 30px 0;
  }
}

/* ===== My Account - Address Page ===== */
.account__address--form {
  background: var(--bg-gray-color);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid var(--border-color2);
}

.account__address--form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.account__address--form-grid .full-width {
  grid-column: 1 / -1;
}

.account__address--form-grid .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.account__address--form-grid label {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
}

.account__address--form-grid input,
.account__address--form-grid select {
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 14px;
  color: var(--text-gray-color);
  background: var(--white-color);
  transition: border-color 0.3s ease;
}

.account__address--form-grid input:focus,
.account__address--form-grid select:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.account__addresses--list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.account__address--card {
  background: var(--white-color);
  border: 1px solid var(--border-color2);
  border-radius: 10px;
  padding: 20px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.account__address--card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.account__address--card.default {
  border-color: var(--secondary-color);
  border-width: 2px;
}

.account__address--card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.account__address--label {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.account__address--default-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--white-color);
  background: var(--secondary-color);
  padding: 3px 10px;
  border-radius: 4px;
}

.account__address--details {
  font-size: 14px;
  line-height: 2.2rem;
  color: var(--text-gray-color);
  margin-bottom: 15px;
}

.account__address--card-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .account__addresses--list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .account__address--form-grid {
    grid-template-columns: 1fr;
  }
  .account__address--form {
    padding: 18px;
  }
  .account__address--card {
    padding: 15px;
  }
  .account__address--card-actions {
    flex-direction: column;
  }
  .account__address--card-actions button {
    width: 100%;
    text-align: center;
  }
}

/* ===== Product Variable Page Fixes ===== */

/* Tab content thumbnail - resize to reasonable size */
.product__tab--content__thumbnail--img {
  max-width: 320px;
  height: auto;
  border-radius: 10px;
}

/* You May Also Like - constrain image sizes */
.product__section .product__items--img {
  max-width: 100%;
  height: 260px !important;
  object-fit: cover;
}

.product__section .product__items--thumbnail {
  max-height: 280px;
  overflow: hidden;
}

/* Tab content items - prevent huge layout */
.product__tab--content__items {
  flex-wrap: wrap;
  gap: 20px;
}
.product__tab--content__right {
  flex: 1;
  min-width: 240px;
}

/* Tab pane active display */
.tab_pane.active.show {
  display: block;
  animation: tabFadeIn 0.4s ease both;
}

/* Tab list cursor */
.product__details--tab__list {
  cursor: pointer;
}

@media (max-width: 767px) {
  .product__details--tab { flex-wrap: wrap; gap: 8px; }
  .product__details--tab__list { padding: 8px 14px; font-size: 13px !important; white-space: nowrap; }
}

/* Product detail - bigger fonts, text wrapping, justify */
.product__details--info__desc,
.product__tab--content__desc,
.product__tab--content__title {
  font-size: 17px !important;
  line-height: 1.8 !important;
  text-align: justify !important;
  overflow-wrap: break-word !important;
  word-break: break-word !important;
}

.product__details--info__title {
  font-size: 28px !important;
  line-height: 1.3 !important;
}

.current__price {
  font-size: 24px !important;
}

.old__price {
  font-size: 18px !important;
}

.product__details--tab__list {
  font-size: 15px !important;
}

@media (max-width: 768px) {
  .product__tab--content__thumbnail--img {
    max-width: 200px;
  }
  .product__section .product__items--img {
    height: 200px !important;
  }
  .product__section .product__items--thumbnail {
    max-height: 220px;
  }
  .product__details--info__title { font-size: 22px !important; }
  .current__price { font-size: 20px !important; }
  .old__price { font-size: 16px !important; }
  .product__details--tab__list { font-size: 14px !important; }
  .product__details--info__desc,
  .product__tab--content__desc,
  .product__tab--content__title { font-size: 15px !important; }
  .product__tab--content__items { flex-direction: column; }
}

@media (max-width: 480px) {
  .product__tab--content__thumbnail--img { max-width: 100%; }
  .product__section .product__items--img { height: 160px !important; }
  .product__section .product__items--thumbnail { max-height: 180px; }
  .product__details--info__title { font-size: 18px !important; }
}








/* ═══════════════════════════════════════════════════════════════════
   SHOP PAGE (sp-*) — Inter / admin sidebar design system
   ═══════════════════════════════════════════════════════════════════ */

.sp-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---------- Hero Breadcrumb ---------- */
.sp-hero {
  position: relative; padding: 60px 0 50px;
  background: #0f0c08; overflow: hidden;
}
.sp-hero__bg {
  position: absolute; inset: 0;
  background: url('assets/img/banner/breadcrumb-bg.webp') center/cover no-repeat;
  opacity: .10;
}
.sp-hero__content { position: relative; z-index: 1; text-align: center; }
.sp-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 800; color: #fff;
  letter-spacing: .01em; margin-bottom: 14px; line-height: 1.15;
}
.sp-breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 500; color: rgba(255,255,255,.6);
}
.sp-breadcrumb a { color: #163B68; text-decoration: none; transition: color .2s; }
.sp-breadcrumb a:hover { color: #fff; }
.sp-breadcrumb svg { opacity: .5; width: 12px; height: 12px; }

/* ---------- Body Layout ---------- */
.sp-body { padding: 50px 0 64px; }
.sp-layout { display: flex; gap: 28px; align-items: flex-start; }

/* ---------- Sidebar ---------- */
.sp-sidebar {
  width: 270px; flex-shrink: 0;
  background: #fff; border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  position: sticky; top: 100px;
  transition: transform .3s ease, opacity .3s;
}
.sp-sidebar__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; padding-bottom: 16px;
  border-bottom: 1px solid #f0ebe3;
}
.sp-sidebar__head h3 {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600;
  letter-spacing: .02em; color: #1a1209; margin: 0;
  text-transform: uppercase;
}
.sp-sidebar__badge {
  background: #163B68; color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 2px 7px; border-radius: 12px;
}
.sp-sidebar__close {
  display: none; background: none; border: none;
  font-size: 21px; cursor: pointer; color: #888; line-height: 1;
}
.sp-widget { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid #f0ebe3; }
.sp-widget:last-child { border: none; margin-bottom: 0; padding-bottom: 0; }
.sp-widget__title {
  font-size: 15px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  color: #1a1209; margin-bottom: 16px;
}

/* Sidebar: Search */
.sp-search-form {
  display: flex; border: 1px solid #e8e0d6; border-radius: 8px; overflow: hidden;
  background: #faf8f5;
}
.sp-search-form input {
  flex: 1; border: none; padding: 10px 14px;
  font-size: 15px; font-weight: 500;
  background: transparent; outline: none; color: #1a1209;
}
.sp-search-form button {
  background: none; border: none; padding: 0 14px;
  cursor: pointer; color: #888; transition: color .2s;
}
.sp-search-form button:hover { color: #163B68; }

/* Sidebar: Categories */
.sp-cat-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.sp-cat-list button {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; padding: 10px 12px; border-radius: 8px;
  font-size: 15px; font-weight: 500; color: #555;
  cursor: pointer; transition: all .2s; text-align: left;
}
.sp-cat-list button:hover,
.sp-cat-list button.active { background: #faf3ea; color: #1E4A7E; font-weight: 600; }
.sp-cat-arrow { font-size: 12px; opacity: 0; transition: opacity .2s; }
.sp-cat-list button:hover .sp-cat-arrow,
.sp-cat-list button.active .sp-cat-arrow { opacity: 1; }

/* Sidebar: Price */
.sp-price-form { display: flex; flex-direction: column; gap: 12px; }
.sp-price-inputs { display: flex; align-items: center; gap: 8px; }
.sp-price-inputs label {
  flex: 1; display: flex; flex-direction: column; gap: 4px;
  font-size: 13px; font-weight: 500; color: #888;
}
.sp-price-inputs input {
  border: 1px solid #e8e0d6; border-radius: 8px; padding: 9px 10px;
  font-size: 15px; background: #faf8f5; outline: none; width: 100%;
  color: #1a1209; transition: border-color .2s;
}
.sp-price-inputs input:focus { border-color: #163B68; }
.sp-price-sep { color: #bbb; flex-shrink: 0; padding-top: 20px; font-size: 15px; }
.sp-btn-apply {
  background: #1a1209; color: #fff; border: none;
  padding: 11px 20px; border-radius: 8px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: all .25s;
}
.sp-btn-apply:hover { background: #1E4A7E; transform: translateY(-1px); }
.sp-btn-clear {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: none; border: 1px solid #e5ddd4; color: #888;
  padding: 10px 14px; border-radius: 8px;
  font-size: 15px; font-weight: 500; cursor: pointer; width: 100%;
  margin-top: 16px; transition: all .2s;
}
.sp-btn-clear:hover { border-color: #c44; color: #c44; background: #fff5f5; }

/* Sidebar: Mobile */
.sp-backdrop {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.45);
  z-index: 199; backdrop-filter: blur(4px);
}
@media (max-width: 991px) {
  .sp-sidebar {
    position: fixed; left: 0; top: 0; height: 100vh; width: 300px;
    z-index: 200; border-radius: 0 14px 14px 0;
    transform: translateX(-110%); overflow-y: auto;
  }
  .sp-sidebar.open { transform: translateX(0); }
  .sp-sidebar__close { display: block; }
  .sp-backdrop { display: block; }
  .sp-layout { flex-direction: column; }
}

/* ---------- Main Column ---------- */
.sp-main { flex: 1; min-width: 0; }

/* ---------- Toolbar ---------- */
.sp-toolbar {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  margin-bottom: 22px; padding: 14px 18px;
  background: #fff; border-radius: 12px;
  box-shadow: 0 1px 8px rgba(0,0,0,.04);
}
.sp-toolbar__left { display: flex; align-items: center; gap: 14px; }
.sp-toolbar__right { display: flex; align-items: center; gap: 12px; }
.sp-filter-btn {
  display: flex; align-items: center; gap: 6px;
  background: #1a1209; color: #fff; border: none;
  padding: 10px 16px; border-radius: 8px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: all .25s;
}
.sp-filter-btn:hover { background: #1E4A7E; }
.sp-filter-badge {
  background: #163B68; color: #fff;
  font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 12px;
}
.sp-results { font-size: 15px; font-weight: 500; color: #888; margin: 0; }
.sp-view-toggle { display: flex; gap: 4px; }
.sp-view-toggle button {
  background: none; border: 1px solid #e8e0d6; border-radius: 6px;
  padding: 6px 8px; cursor: pointer; color: #888; transition: all .2s; line-height: 1;
}
.sp-view-toggle button.active,
.sp-view-toggle button:hover { border-color: #1a1209; color: #1a1209; background: #f5f0ea; }
.sp-sort {
  border: 1px solid #e8e0d6; border-radius: 8px; padding: 9px 12px;
  font-size: 15px; font-weight: 500; background: #faf8f5;
  color: #555; cursor: pointer; outline: none; transition: border-color .2s;
}
.sp-sort:focus { border-color: #163B68; }

/* ---------- Filter Chips ---------- */
.sp-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.sp-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: #faf3ea; border: 1px solid #f0d9b5; color: #7a4f1e;
  padding: 6px 12px; border-radius: 20px;
  font-size: 15px; font-weight: 500;
}
.sp-chip button {
  background: none; border: none; cursor: pointer;
  font-size: 15px; line-height: 1; color: #1E4A7E; padding: 0; transition: color .15s;
}
.sp-chip button:hover { color: #c44; }

/* ---------- Product Grid ---------- */
.sp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px; margin-bottom: 44px;
}
.sp-grid--list { grid-template-columns: 1fr; gap: 18px; }

/* ---------- Product Card ---------- */
.sp-card {
  background: #fff; border-radius: 14px;
  overflow: hidden; box-shadow: 0 2px 14px rgba(0,0,0,.05);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.sp-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,.1); }

/* Card: Image */
.sp-card__img-wrap {
  position: relative; overflow: hidden;
  background: #f8f5f0; aspect-ratio: 4/3;
}
.sp-card__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease, opacity .4s ease;
  position: absolute; inset: 0;
}
.sp-card__img--primary { opacity: 1; }
.sp-card__img--secondary { opacity: 0; }
.sp-card:hover .sp-card__img--primary { opacity: 0; transform: scale(1.06); }
.sp-card:hover .sp-card__img--secondary { opacity: 1; transform: scale(1.06); }

/* Badge */
.sp-badge {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  padding: 5px 11px; border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
}
.sp-badge--sale { background: #e94444; color: #fff; }
.sp-badge--new  { background: #2a8a5a; color: #fff; }

/* Card: Action Buttons */
.sp-card__actions {
  position: absolute; bottom: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 6px;
  opacity: 0; transform: translateX(10px); transition: all .3s ease;
}
.sp-card:hover .sp-card__actions { opacity: 1; transform: translateX(0); }
.sp-action-btn {
  width: 36px; height: 36px; background: #fff;
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.1);
  color: #555; text-decoration: none; transition: all .2s;
}
.sp-action-btn:hover { background: #1a1209; color: #fff; transform: scale(1.1); }
.sp-action-btn svg { width: 16px; height: 16px; }

/* Card: Body */
.sp-card__body { padding: 18px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.sp-card__cat {
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  color: #163B68; margin-bottom: 6px; display: block;
}
.sp-card__title {
  font-size: 17px; font-weight: 700; color: #1a1209;
  line-height: 1.3; margin-bottom: 8px;
}
.sp-card__title a { text-decoration: none; color: inherit; transition: color .2s; }
.sp-card__title a:hover { color: #1E4A7E; }
.sp-card__desc {
  font-size: 15px; font-weight: 400; color: #777;
  line-height: 1.6; margin-bottom: 10px; text-align: justify;
}
.sp-card__stars { display: flex; align-items: center; gap: 3px; margin-bottom: 8px; }
.sp-card__stars span { font-size: 15px; font-weight: 500; color: #999; margin-left: 3px; }
.sp-card__price {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px; margin-top: auto; padding-top: 10px;
}
.sp-card__price--current { font-size: 20px; font-weight: 700; color: #1a1209; }
.sp-card__price--old { font-size: 15px; font-weight: 500; color: #bbb; text-decoration: line-through; }
.sp-card__cart-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: #1a1209; color: #fff;
  border: none; border-radius: 10px; padding: 11px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: all .25s;
}
.sp-card__cart-btn:hover { background: #1E4A7E; transform: translateY(-1px); }
.sp-card__cart-btn.added { background: #2a8a5a; }
.sp-card__cart-btn svg { width: 16px; height: 16px; }

/* List View */
.sp-grid--list .sp-card { flex-direction: row; }
.sp-grid--list .sp-card__img-wrap { width: 200px; height: 200px; aspect-ratio: unset; flex-shrink: 0; }
.sp-grid--list .sp-card__body { justify-content: center; padding: 20px; }
@media (max-width: 575px) {
  .sp-grid--list .sp-card { flex-direction: column; }
  .sp-grid--list .sp-card__img-wrap { width: 100%; height: 220px; }
}

@media (max-width: 768px) {
  .sp-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
  .sp-body { padding: 30px 0 40px; }
  .sp-toolbar { flex-direction: column; align-items: stretch; }
  .sp-toolbar__left, .sp-toolbar__right { justify-content: space-between; }
  .sp-sort { width: 100%; }
  .sp-card__body { padding: 14px; }
  .sp-card__title { font-size: 16px; }
  .sp-card__price--current { font-size: 18px; }
  .sp-card__price--old { font-size: 14px; }
  .sp-empty, .sp-error { padding: 40px 16px; }
  .sp-pagination { gap: 4px; }
  .sp-page-btn { min-width: 36px; height: 36px; font-size: 14px; }
  .sp-hero { padding: 40px 0 30px; }
}

/* ---------- Skeleton ---------- */
.sp-skeleton { pointer-events: none; }
.sp-skeleton__img {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(90deg, #f0ebe3 25%, #fdf5ec 50%, #f0ebe3 75%);
  background-size: 200% 100%; animation: sp-shimmer 1.4s infinite;
}
.sp-skeleton__body { padding: 16px; }
.sp-skeleton__line {
  height: 14px; border-radius: 7px;
  background: linear-gradient(90deg, #f0ebe3 25%, #fdf5ec 50%, #f0ebe3 75%);
  background-size: 200% 100%; animation: sp-shimmer 1.4s infinite;
  margin-bottom: 10px;
}
.sp-skeleton__line.short { width: 60%; }
.sp-skeleton__line.shorter { width: 40%; }
@keyframes sp-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

/* ---------- Empty / Error ---------- */
.sp-empty, .sp-error {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 64px 20px; text-align: center; background: #fff; border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.sp-empty svg, .sp-error svg { color: #ccc; margin-bottom: 16px; width: 56px; height: 56px; }
.sp-empty h3, .sp-error h3 {
  font-size: 21px; font-weight: 700; color: #333; margin-bottom: 8px;
}
.sp-empty p, .sp-error p {
  font-size: 15px; font-weight: 500; color: #888; margin-bottom: 18px;
}

/* ---------- Pagination ---------- */
.sp-pagination {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 8px;
}
.sp-page-btn {
  min-width: 40px; height: 40px; border-radius: 8px;
  border: 1px solid #e8e0d6; background: #fff;
  font-size: 15px; font-weight: 600; color: #555;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.sp-page-btn:hover:not(:disabled) { border-color: #1a1209; color: #1a1209; }
.sp-page-btn.active { background: #1a1209; color: #fff; border-color: #1a1209; }
.sp-page-btn:disabled { opacity: .35; cursor: not-allowed; }
.sp-page-btn--arrow { padding: 0; }

/* ═══════════════════════════════════════════════════════════════════
   QUICK VIEW MODAL (sqv-*) — Inter / admin sidebar design system
   ═══════════════════════════════════════════════════════════════════ */

.sqv-overlay {
  position: fixed; inset: 0; background: rgba(10,8,5,.7);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  padding: 20px; backdrop-filter: blur(6px); animation: sqv-in .2s ease;
}
@keyframes sqv-in { from { opacity: 0; } to { opacity: 1; } }
.sqv-modal {
  background: #fff; border-radius: 20px; max-width: 840px; width: 100%;
  max-height: 90vh; overflow-y: auto; position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,.3);
  animation: sqv-slide .3s ease;
}
@keyframes sqv-slide { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.sqv-close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: #f0ebe3; color: #333;
  font-size: 20px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.sqv-close:hover { background: #e94444; color: #fff; }
.sqv-loading { display: flex; align-items: center; justify-content: center; padding: 80px; }
.sqv-spinner {
  width: 40px; height: 40px; border: 3px solid #f0ebe3;
  border-top-color: #163B68; border-radius: 50%; animation: sqv-spin .7s linear infinite;
}
@keyframes sqv-spin { to { transform: rotate(360deg); } }
.sqv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.sqv-images { padding: 24px 20px 24px 28px; }
.sqv-main-img {
  border-radius: 14px; overflow: hidden; background: #f8f5f0; margin-bottom: 10px;
}
.sqv-main-img img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.sqv-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.sqv-thumb {
  width: 56px; height: 56px; border-radius: 8px; overflow: hidden;
  border: 2px solid transparent; background: #f0ebe3; cursor: pointer; transition: border-color .2s;
}
.sqv-thumb.active, .sqv-thumb:hover { border-color: #163B68; }
.sqv-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sqv-info { padding: 30px 28px 28px; display: flex; flex-direction: column; }
.sqv-category {
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  color: #163B68; display: block; margin-bottom: 8px;
}
.sqv-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px; font-weight: 800; color: #1a1209;
  margin-bottom: 14px; line-height: 1.25;
}
.sqv-price { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.sqv-current { font-size: 24px; font-weight: 700; color: #1a1209; }
.sqv-old { font-size: 15px; font-weight: 500; color: #bbb; text-decoration: line-through; }
.sqv-desc {
  font-size: 15px; font-weight: 400; color: #666;
  line-height: 1.7; margin-bottom: 20px;
  text-align: justify; overflow-wrap: break-word; word-break: break-word;
}
.sqv-row { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.sqv-label {
  font-size: 15px; font-weight: 500; color: #888; min-width: 36px;
}
.sqv-qty {
  display: flex; align-items: center; gap: 0;
  border: 1px solid #e8e0d6; border-radius: 8px; overflow: hidden;
}
.sqv-qty button {
  width: 36px; height: 36px; background: #f8f5f0; border: none;
  font-size: 17px; cursor: pointer; color: #555;
  transition: background .15s, color .15s;
}
.sqv-qty button:hover { background: #163B68; color: #fff; }
.sqv-qty span {
  padding: 0 16px; font-size: 15px; font-weight: 600; color: #1a1209;
}
.sqv-btn-cart {
  width: 100%; background: #1a1209; color: #fff;
  border: none; border-radius: 10px; padding: 14px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: all .25s; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.sqv-btn-cart:hover { background: #1E4A7E; transform: translateY(-1px); }
.sqv-btn-cart.added { background: #2a8a5a; }
.sqv-btn-link {
  display: block; text-align: center; padding: 12px;
  border: 1px solid #e8e0d6; border-radius: 10px;
  font-size: 15px; font-weight: 500; color: #666;
  text-decoration: none; margin-top: 10px; transition: all .2s;
}
.sqv-btn-link:hover { border-color: #1a1209; color: #1a1209; background: #faf8f5; }

@media (max-width: 640px) {
  .sqv-grid { grid-template-columns: 1fr; }
  .sqv-images { padding: 20px; }
  .sqv-info { padding: 0 20px 20px; }
  .sqv-title { font-size: 20px; }
  .sqv-current { font-size: 20px; }
  .sqv-old { font-size: 14px; }
  .sqv-desc { font-size: 14px; }
  .sqv-thumb { width: 44px; height: 44px; }
  .sqv-qty button { width: 32px; height: 32px; font-size: 15px; }
  .sqv-qty span { padding: 0 12px; font-size: 14px; }
}

@media (max-width: 480px) {
  .sqv-modal { max-height: 100vh; border-radius: 12px; }
  .sqv-overlay { padding: 10px; align-items: flex-end; }
  .sqv-info { padding: 0 16px 16px; }
  .sqv-title { font-size: 18px; }
  .sqv-btn-cart { padding: 12px; font-size: 14px; }
}

/* ═══════════════════════════════════════════════════════════════════
   HOME PAGE — Testimonials (hts-*)
   ============================================================ */
.hts-section {
  padding: 80px 0 90px;
  background: linear-gradient(180deg, #faf8f5 0%, #fff 40%, #f8f6f3 100%);
  position: relative;
}
.hts-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}
.hts-overline {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 8px;
}
.hts-title {
  font-size: clamp(29px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.2;
}
.hts-title span {
  color: var(--gold);
}
.hts-subtitle {
  font-size: clamp(14px, 1.3vw, 16px);
  color: #888;
  line-height: 1.6;
}
.hts-grid {
  display: grid;
  contain: layout style;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hts-card {
  background: #fff;
  border-radius: 14px;
  padding: 26px 24px 22px;
  border: 1px solid #eee;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  will-change: transform;
}
.hts-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(30,77,140,.15);
  border-color: var(--gold-light);
}
.hts-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}
.hts-stars svg {
  width: 17px;
  height: 17px;
}
.hts-text {
  font-size: 15px;
  line-height: 1.65;
  color: #555;
  margin-bottom: 16px;
  font-style: italic;
  flex: 1;
}
.hts-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid #f0ebe5;
}
.hts-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.hts-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 2px;
}
.hts-role {
  font-size: 13px;
  color: #999;
}
@media (max-width: 991px) {
  .hts-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 575px) {
  .hts-section { padding: 36px 0 50px; }
  .hts-header { margin-bottom: 28px; }
  .hts-grid { grid-template-columns: 1fr; gap: 14px; }
  .hts-card { padding: 20px 18px 18px; }
  .hts-text { font-size: 14px; }
}

/* ============================================================
   HOME PAGE — Stay Connected CTA (sc-*)
   ============================================================ */
.sc-section { padding: 0 0 100px; }
.sc-card {
  display: flex;
  gap: 0;
  background: linear-gradient(135deg, #0f1724 0%, #162240 50%, #1a2d52 100%);
  border-radius: 24px;
  overflow: hidden;
  min-height: 340px;
}
.sc-card__left {
  flex: 1;
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sc-card__right {
  width: 340px;
  flex-shrink: 0;
  background: rgba(255,255,255,.04);
  border-left: 1px solid rgba(255,255,255,.06);
  padding: 56px 36px;
  display: flex;
  align-items: center;
}
/* Left column */
.sc-icon-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.sc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(212,168,67,.12);
  color: #D4A843;
}
.sc-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #D4A843;
}
.sc-title {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
  font-family: 'Playfair Display', Georgia, serif;
}
.sc-title em { color: #D4A843; font-style: normal; }
.sc-desc {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 420px;
}
/* Form */
.sc-form { max-width: 440px; }
.sc-form__row {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.sc-form__row:focus-within {
  border-color: rgba(212,168,67,.35);
  box-shadow: 0 0 0 3px rgba(212,168,67,.08);
}
.sc-form__input {
  flex: 1;
  height: 50px;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 14px;
  padding: 0 18px;
  font-family: inherit;
}
.sc-form__input::placeholder { color: rgba(255,255,255,.3); }
.sc-form__btn {
  height: 50px;
  padding: 0 28px;
  border: none;
  background: linear-gradient(135deg, #D4A843, #B8942B);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .03em;
  cursor: pointer;
  white-space: nowrap;
  transition: all .3s ease;
}
.sc-form__btn:hover { background: linear-gradient(135deg, #B8942B, #c9a33a); }
.sc-form__btn:disabled { opacity: .6; cursor: not-allowed; }
.sc-msg { font-size: 12px; margin-top: 8px; }
.sc-msg--ok { color: #4ade80; }
.sc-msg--err { color: #f87171; }
/* Trust line */
.sc-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,.3);
}
/* Right column — perks */
.sc-perks { display: flex; flex-direction: column; gap: 28px; }
.sc-perk { display: flex; gap: 14px; align-items: flex-start; }
.sc-perk__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(212,168,67,.1);
  color: #D4A843;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-perk__title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 3px;
}
.sc-perk__text {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin: 0;
  line-height: 1.5;
}
/* Mobile */
@media (max-width: 991px) {
  .sc-card { flex-direction: column; }
  .sc-card__right {
    width: 100%;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 36px 52px;
  }
  .sc-perks { flex-direction: row; flex-wrap: wrap; gap: 20px; }
  .sc-perk { flex: 1; min-width: 160px; }
}
@media (max-width: 767px) {
  .sc-card__left { padding: 40px 24px; }
  .sc-card__right { padding: 28px 24px; }
  .sc-form { max-width: 100%; }
  .sc-form__row { flex-direction: column; border-radius: 12px; }
  .sc-form__input { height: 48px; text-align: center; }
  .sc-form__btn { height: 48px; width: 100%; border-radius: 0 0 11px 11px; }
  .sc-perks { flex-direction: column; gap: 16px; }
  .sc-perk { min-width: 0; }
}

/* ============================================================
   HOME PAGE — Instagram Premium (hig3-*)
   ============================================================ */
.hig3-section {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  background: #fff;
}
.hig3-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(212,168,67,.04) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 20%, rgba(212,168,67,.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Header — matches other sections: overline + title + subtitle */
.hig3-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.hig3-overline {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 6px;
}
.hig3-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900; color: #1a1209; line-height: 1.15;
  margin: 0 0 6px;
}
.hig3-title em {
  font-style: normal;
  color: var(--gold);
}
.hig3-subtitle {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 13px; color: #5A6678; margin: 0;
  letter-spacing: .02em;
}
.hig3-follow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #1a1209;
  color: #fff; text-decoration: none;
  padding: 11px 26px; border-radius: 50px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: .03em;
  transition: all .3s ease;
  flex-shrink: 0;
}
.hig3-follow:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,67,.25);
}
.hig3-follow svg { transition: transform .3s ease; }
.hig3-follow:hover svg:first-child { transform: scale(1.1); }
.hig3-follow:hover svg:last-child { transform: translateX(3px); }

/* Grid — 6 columns, rounded images */
.hig3-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  position: relative;
  z-index: 1;
}
.hig3-item {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 1;
  cursor: pointer;
  border-radius: 16px;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94), box-shadow .4s ease;
}
.hig3-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
  z-index: 2;
}
.hig3-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s ease, filter .4s ease;
}
.hig3-item:hover .hig3-img {
  transform: scale(1.08);
  filter: brightness(.55);
}
/* Overlay */
.hig3-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, rgba(0,0,0,.15) 40%, transparent 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  opacity: 0;
  transition: all .35s ease;
  transform: translateY(8px);
}
.hig3-item:hover .hig3-overlay {
  opacity: 1;
  transform: translateY(0);
}
.hig3-overlay svg {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
  opacity: .9;
}
.hig3-overlay__label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  background: rgba(255,255,255,.18);
  padding: 6px 18px; border-radius: 24px;
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(6px);
  transition: background .3s;
}
.hig3-item:hover .hig3-overlay__label {
  background: rgba(255,255,255,.25);
}

/* Responsive */
@media (max-width: 991px) {
  .hig3-grid { grid-template-columns: repeat(4, 1fr); }
  .hig3-grid .hig3-item:nth-child(n+5) { display: none; }
}
@media (max-width: 767px) {
  .hig3-header { flex-direction: column; align-items: flex-start; }
  .hig3-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hig3-grid .hig3-item:nth-child(n+4) { display: none; }
  .hig3-item { border-radius: 12px; }
}
@media (max-width: 440px) {
  .hig3-grid { grid-template-columns: repeat(2, 1fr); }
  .hig3-grid .hig3-item:nth-child(n+3) { display: none; }
}

/* ============================================================
   HOME PAGE — Newsletter Clean Minimal (hn2-*)
   ============================================================ */
/* ============================================================
   HOME PAGE — Stay Connected (hn2-*)
   ============================================================ */
.hn2-section {
  padding: 0 0 100px;
  position: relative;
}
.hn2-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, #0f0c08, #2a1f14, #1a1209);
  background-size: 400% 400%;
  animation: hn2GradShift 12s ease infinite;
  padding: 90px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
@keyframes hn2GradShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hn2-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,12,8,.88) 0%, rgba(42,31,20,.7) 50%, rgba(15,12,8,.85) 100%);
}
.hn2-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 620px;
}
.hn2-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(201,160,108,.2), rgba(201,160,108,.08));
  color: var(--gold);
  border: 1px solid rgba(201,160,108,.3);
  padding: 8px 22px; border-radius: 50px;
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}
.hn2-badge svg { width: 14px; height: 14px; }
.hn2-title {
  font-size: clamp(29px, 3.5vw, 38px);
  font-weight: 800; color: #fff;
  line-height: 1.15; margin-bottom: 16px;
}
.hn2-title em { color: var(--gold); font-style: normal; }
.hn2-desc {
  font-size: clamp(14px, 1.4vw, 16px);
  color: rgba(255,255,255,.65);
  line-height: 1.7; margin-bottom: 32px;
  max-width: 480px; margin-left: auto; margin-right: auto;
}
/* NewsletterBanner overrides */
.hn2-content .newsletter__banner--section { padding: 0 !important; }
.hn2-content .newsletter__banner--wrapper { background: none !important; border-radius: 0 !important; box-shadow: none !important; }
.hn2-content .newsletter__banner--bg { display: none !important; }
.hn2-content .newsletter__banner--content {
  position: static; transform: none !important;
  padding: 0 !important; text-align: center;
}
.hn2-content .newsletter__banner--title,
.hn2-content .newsletter__banner--badge,
.hn2-content .newsletter__banner--desc,
.hn2-content .newsletter__banner--footnote { display: none !important; }
.hn2-content .newsletter__banner--form {
  display: flex; gap: 0; max-width: 480px; margin: 0 auto;
  border-radius: 60px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  transition: box-shadow .4s ease;
}
.hn2-content .newsletter__banner--form:hover {
  box-shadow: 0 8px 40px rgba(30,77,140,.2);
}
.hn2-content .newsletter__banner--form input {
  flex: 1; border: none; padding: 16px 24px;
  font-size: 14px; background: rgba(255,255,255,.1); color: #fff;
  outline: none; transition: background .3s;
}
.hn2-content .newsletter__banner--form input::placeholder { color: rgba(255,255,255,.4); }
.hn2-content .newsletter__banner--form input:focus { background: rgba(255,255,255,.18); }
.hn2-content .newsletter__banner--form button {
  padding: 16px 32px; border: none;
  background: linear-gradient(135deg, #D4A843, #B8942B);
  color: #fff; font-weight: 800; font-size: 14px;
  cursor: pointer; letter-spacing: .03em;
  transition: all .3s ease;
  white-space: nowrap;
}
.hn2-content .newsletter__banner--form button:hover {
  background: linear-gradient(135deg, #B8942B, #D4A843);
  transform: scale(1.04);
}
/* Decorative floating particles */
.hn2-deco {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 1;
}
.hn2-deco--1 {
  width: 500px; height: 500px; top: -200px; right: -150px;
  background: radial-gradient(circle, rgba(30,77,140,.12), transparent 70%);
  animation: hn2Float1 8s ease-in-out infinite;
}
.hn2-deco--2 {
  width: 350px; height: 350px; bottom: -120px; left: -100px;
  background: radial-gradient(circle, rgba(30,77,140,.08), transparent 70%);
  animation: hn2Float2 10s ease-in-out infinite;
}
@keyframes hn2Float1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}
@keyframes hn2Float2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 25px); }
}
@media (max-width: 767px) {
  .hn2-wrap { padding: 50px 24px; border-radius: 16px; min-height: 320px; }
  .hn2-title { font-size: clamp(22px, 5vw, 29px); }
  .hn2-content .newsletter__banner--form { flex-direction: column; border-radius: 16px; }
  .hn2-content .newsletter__banner--form input { text-align: center; }
}

/* ============================================================
   HOME PAGE — Instagram Section (hig-*)
   Fully redesigned with animations, hover effects
   ============================================================ */
/* ══════════════════════════════════════
   INSTAGRAM SECTION — Tilt Grid (hig2)
   ══════════════════════════════════════ */
.hig2-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #f8f6f3 0%, #fff 40%, #f8f6f3 100%);
  position: relative; overflow: hidden;
}
.hig2-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(30,77,140,.06) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 20%, rgba(42,92,154,.04) 0%, transparent 50%);
  pointer-events: none;
}
.hig2-header {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 28px; position: relative; z-index: 1;
}
.hig2-header__icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
  display: flex; align-items: center; justify-content: center; color: #fff;
  box-shadow: 0 3px 10px rgba(220,39,67,.2);
  transition: transform .3s ease;
}
.hig2-header__icon:hover { transform: scale(1.1) rotate(-5deg); }
.hig2-title {
  font-size: clamp(19px, 2.5vw, 26px);
  font-weight: 800; color: #1a1209; margin: 0 0 2px;
  font-family: 'Playfair Display', Georgia, serif;
}
.hig2-title span {
  background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hig2-subtitle { font-size: 11px; color: #5A6678; margin: 0; letter-spacing: .02em; }
.hig2-follow {
  display: inline-flex; align-items: center; gap: 6px; margin-left: auto;
  background: linear-gradient(135deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
  background-size: 200% 200%;
  animation: hig2GradShift 3s ease infinite;
  color: #fff; text-decoration: none;
  padding: 8px 18px; border-radius: 50px;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  transition: all .3s ease; position: relative; overflow: hidden;
}
.hig2-follow:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 6px 20px rgba(220,39,67,.3); }
@keyframes hig2GradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Grid */
.hig2-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  border-radius: 14px;
  overflow: hidden;
  position: relative; z-index: 1;
  perspective: 1200px;
}
.hig2-item {
  position: relative; overflow: hidden; display: block; aspect-ratio: 1;
  cursor: pointer;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94), box-shadow .4s ease;
}
.hig2-item:hover {
  transform: rotateX(2deg) rotateY(-2deg) scale(1.03);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
  z-index: 2;
}
.hig2-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease, filter .3s ease;
}
.hig2-item:hover .hig2-img { transform: scale(1.1); filter: brightness(.7); }
.hig2-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 50%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  color: #fff; opacity: 0; transition: all .35s ease;
  transform: translateY(8px);
}
.hig2-item:hover .hig2-overlay { opacity: 1; transform: translateY(0); }
.hig2-overlay svg { width: 22px; height: 22px; }
.hig2-overlay span {
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: rgba(255,255,255,.15); padding: 4px 12px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(4px);
}

/* Entrance animation handled in global reveal section */

@media (max-width: 991px) {
  .hig2-grid { grid-template-columns: repeat(4, 1fr); }
  .hig2-grid .hig2-item:nth-child(n+5) { display: none; }
}
@media (max-width: 767px) {
  .hig2-grid { grid-template-columns: repeat(3, 1fr); }
  .hig2-grid .hig2-item:nth-child(n+4) { display: none; }
  .hig2-follow { margin-left: 0; }
}
@media (max-width: 440px) {
  .hig2-grid { grid-template-columns: repeat(2, 1fr); }
  .hig2-grid .hig2-item:nth-child(n+3) { display: none; }
}


/* ============================================================
   HOME — 3 TOP SECTIONS REDESIGN
   Fonts: Playfair Display (headings) · Inter (body)
   ============================================================ */

/* ── Shared section label/overline ── */
.hcat2-overline, .hpop-overline {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #1E4A7E; margin-bottom: 12px;
}
.hcat2-overline::before, .hcat2-overline::after,
.hpop-overline::before, .hpop-overline::after {
  content: ''; display: block; width: 30px; height: 1.5px;
  background: currentColor; opacity: .55;
}

/* ──────────────────────────────────────────────
   SECTION 1 — Featured Collection (hfc2-*)
   ────────────────────────────────────────────── */
.hfc2-section {
  background: linear-gradient(160deg, #F0F4FA 0%, #E8ECF4 100%);
  padding: 60px 0 70px;
}
.hfc2-header { text-align: center; margin-bottom: 36px; }
.hfc2-overline {
  font-size: 10px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 8px;
}
.hfc2-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800; color: #1a1209; line-height: 1.15;
  margin-bottom: 10px;
}
.hfc2-title em { font-style: normal; color: var(--gold); }
.hfc2-subtitle {
  font-size: 11px; color: #5A6678; line-height: 1.6;
  max-width: 480px; margin: 0 auto;
}
.hfc2-subtitle strong { color: #1a1209; font-weight: 700; }

/* Grid: 4 columns */
.hfc2-grid {
  display: grid;
  contain: layout style;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 44px;
}

/* Card */
.hfc2-card {
  display: flex; flex-direction: column;
  background: #fff; border-radius: 12px; overflow: hidden;
  text-decoration: none; border: 1px solid rgba(0,0,0,.05);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  will-change: transform;
}
.hfc2-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
  border-color: var(--gold-light);
}
.hfc2-card__img-wrap {
  position: relative; overflow: hidden;
  background: #E0E8F4;
  aspect-ratio: 1/1;
  backface-visibility: hidden;
  contain: paint;
}
.hfc2-img--primary, .hfc2-img--secondary {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: opacity .4s ease, transform .45s ease;
}
.hfc2-img--primary   { opacity: 1; z-index: 1; }
.hfc2-img--secondary { opacity: 0; z-index: 0; }
.hfc2-card:hover .hfc2-img--primary   { opacity: 0; transform: scale(1.08); }
.hfc2-card:hover .hfc2-img--secondary { opacity: 1; transform: scale(1.08); }

/* Quick view overlay */
.hfc2-quick {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%) translateY(10px); z-index: 3;
  font-size: 9px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  background: rgba(0,0,0,.7); backdrop-filter: blur(4px);
  color: #fff; padding: 5px 14px; border-radius: 20px;
  opacity: 0; transition: all .3s ease; white-space: nowrap;
}
.hfc2-card:hover .hfc2-quick { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Badge pills */
.hfc2-badge {
  position: absolute; top: 8px; left: 8px; z-index: 2;
  font-size: 9px; font-weight: 700;
  padding: 3px 9px; border-radius: 20px;
  letter-spacing: .04em;
}
.hfc2-badge--disc { background: #e94444; color: #fff; }
.hfc2-badge--tag  { background: var(--gold); color: #1a1209; }

/* Card body */
.hfc2-card__body {
  padding: 14px 16px 16px;
  display: flex; flex-direction: column;
}
.hfc2-card__title {
  font-size: 13px; font-weight: 700; color: #1a1209;
  line-height: 1.3; margin-bottom: 8px;
  font-family: 'Playfair Display', Georgia, serif;
}
.hfc2-card__price-row { display: flex; align-items: center; gap: 8px; }
.hfc2-card__price {
  font-size: 14px; font-weight: 700; color: #1a1209;
}
.hfc2-card__old {
  font-size: 11px; color: #bbb; text-decoration: line-through;
}

/* Stats bar */
.hfc2-stats {
  display: flex; justify-content: center; flex-wrap: wrap;
  background: #fff; border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  padding: 4px 0; margin-bottom: 36px; border: 1px solid rgba(0,0,0,.04);
}
.hfc2-stat {
  flex: 1; min-width: 100px; max-width: 180px;
  text-align: center; padding: 18px 16px;
  display: flex; flex-direction: column; gap: 4px;
  border-right: 1px solid rgba(201,160,108,.2);
}
.hfc2-stat:last-child { border-right: none; }
.hfc2-stat__num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px; font-weight: 800;
  color: var(--gold); line-height: 1;
}
.hfc2-stat__label {
  font-size: 10px; color: #999; font-weight: 500;
  text-transform: uppercase; letter-spacing: .06em;
}

/* Footer CTA */
.hfc2-footer { text-align: center; }
.hfc2-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #1a1209; color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 12px 28px; border-radius: 50px;
  text-decoration: none; transition: background .25s, transform .15s, gap .2s;
  box-shadow: 0 4px 16px rgba(26,18,9,.2);
}
.hfc2-btn:hover { background: var(--gold); transform: translateY(-2px); gap: 12px; }
.hfc2-btn svg { transition: transform .2s; }
.hfc2-btn:hover svg { transform: translateX(3px); }

/* Entrance animation delays - legacy kept for compat */

/* Responsive */
@media (max-width: 991px) {
  .hfc2-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hfc2-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hfc2-card__body { padding: 10px 12px 12px; }
}
@media (max-width: 440px) {
  .hfc2-grid { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────────
   SECTION 2 — Shop by Category (hcat2-*)
   ────────────────────────────────────────────── */
.hcat2-section {
  background: #ffffff;
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.hcat2-section::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,.1), transparent 70%);
  pointer-events: none;
}

.hcat2-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; margin-bottom: 50px;
}
.hcat2-overline { color: var(--gold); }
.hcat2-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 800; color: #0A1118; line-height: 1.15; margin-bottom: 12px;
}
.hcat2-title em { font-style: normal; color: var(--gold); }
.hcat2-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 15px; color: #555; line-height: 1.6;
}
.hcat2-all-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 700;
  color: #163B68; text-decoration: none;
  border: 2px solid rgba(13,27,42,.2); padding: 12px 26px; border-radius: 10px;
  white-space: nowrap; transition: all .2s; flex-shrink: 0;
}
.hcat2-all-btn:hover { background: var(--gold); color: #1a1209; border-color: var(--gold); }

/* category grid — 4 columns */
.hcat2-grid {
  display: grid;
  contain: layout style;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.hcat2-card {
  position: relative; display: block; border-radius: 18px;
  overflow: hidden; height: 320px; text-decoration: none;
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
  transition: transform .35s ease, box-shadow .35s ease;
  will-change: transform;
}
.hcat2-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 20px 50px rgba(0,0,0,.5); }
.hcat2-card__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s ease;
}
.hcat2-card:hover .hcat2-card__img { transform: scale(1.08); }
.hcat2-card__veil {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.82) 0%,
    rgba(0,0,0,.4) 50%,
    rgba(0,0,0,.08) 100%
  );
  transition: background .3s;
}
.hcat2-card:hover .hcat2-card__veil {
  background: linear-gradient(
    to top,
    rgba(0,0,0,.88) 0%,
    rgba(0,0,0,.5) 60%,
    rgba(0,0,0,.15) 100%
  );
}
.hcat2-card__content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 24px; display: flex; flex-direction: column;
}
.hcat2-card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(212,168,67,.15);
  border: 1.5px solid rgba(212,168,67,.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 14px;
  transition: background .25s, transform .25s;
}
.hcat2-card:hover .hcat2-card__icon { background: var(--gold); color: #1a1209; transform: scale(1.08); }
.hcat2-card__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px; font-weight: 700; color: #fff;
  margin-bottom: 5px; line-height: 1.2;
}
.hcat2-card__count {
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 12px;
}
.hcat2-card__explore {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 700; color: #163B68;
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.hcat2-card:hover .hcat2-card__explore { opacity: 1; transform: translateY(0); }

@media (max-width: 991px) {
  .hcat2-grid { grid-template-columns: 1fr 1fr; }
  .hcat2-card { height: 280px; }
}
@media (max-width: 575px) {
  .hcat2-grid { grid-template-columns: 1fr; }
  .hcat2-header { flex-direction: column; align-items: flex-start; }
}

/* ──────────────────────────────────────────────
   SECTION 3 — Most Popular Items (hpop-*)
   ────────────────────────────────────────────── */
.hpop-section {
  background: #f8f5f0;
  padding: 100px 0 90px;
}

/* Header */
.hpop-header {
  text-align: center;
  margin-bottom: 48px;
}
.hpop-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  color: #1a1209;
  line-height: 1.15;
  margin-bottom: 14px;
}
.hpop-title em {
  font-style: normal;
  color: var(--gold);
  position: relative;
}
.hpop-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.6vw, 16px);
  color: #5A6678;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Tabs */
.hpop-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
  background: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.hpop-tab {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #888;
  background: none;
  border: none;
  padding: 11px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all .22s ease;
}
.hpop-tab__icon { display: flex; align-items: center; flex-shrink: 0; }
.hpop-tab:hover { background: rgba(201,160,108,.1); color: var(--gold); }
.hpop-tab.active {
  background: #1a1209;
  color: #fff;
  box-shadow: 0 4px 14px rgba(26,18,9,.2);
}
.hpop-tab.active .hpop-tab__icon svg { stroke: var(--gold); }

/* Product grid — 4 columns */
.hpop-grid {
  display: grid;
  contain: layout style;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 48px;
}

/* Product card */
.hpop-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
  will-change: transform;
}
.hpop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
  border-color: var(--gold-light);
}

/* Card image */
.hpop-card__img-wrap {
  position: relative;
  overflow: hidden;
  background: #E0E8F4;
  aspect-ratio: 4/3;
}
.hpop-card__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s ease, opacity .3s ease;
}
.hpop-img--primary  { opacity: 1; }
.hpop-img--secondary { opacity: 0; }
.hpop-card:hover .hpop-img--primary  { opacity: 0; transform: scale(1.06); }
.hpop-card:hover .hpop-img--secondary { opacity: 1; transform: scale(1.06); }

/* Badges */
.hpop-badge {
  position: absolute;
  top: 12px; left: 12px; z-index: 2;
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 700;
  padding: 4px 11px; border-radius: 20px;
}
.hpop-badge--sale  { background: #e94444; color: #fff; }
.hpop-badge--label { background: var(--gold); color: #1a1209; }

/* Action buttons (hover) */
.hpop-card__actions {
  position: absolute;
  bottom: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; transform: translateX(10px);
  transition: opacity .25s, transform .25s;
  z-index: 3;
}
.hpop-card:hover .hpop-card__actions { opacity: 1; transform: translateX(0); }
.hpop-act-btn {
  width: 36px; height: 36px;
  background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #444; text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transition: background .2s, color .2s, transform .15s;
}
.hpop-act-btn svg { width: 16px; height: 16px; }
.hpop-act-btn:hover { background: var(--gold); color: #fff; transform: scale(1.1); }

/* Card body */
.hpop-card__body {
  padding: 18px 20px 22px;
  display: flex; flex-direction: column; flex: 1;
}
.hpop-card__stars {
  display: flex; gap: 3px; margin-bottom: 10px;
}
.hpop-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px; font-weight: 700;
  color: #1a1209; line-height: 1.35;
  margin-bottom: 10px;
}
.hpop-card__title a { text-decoration: none; color: inherit; transition: color .2s; }
.hpop-card__title a:hover { color: var(--gold); }
.hpop-card__price-row {
  display: flex; align-items: center; gap: 9px;
  margin-bottom: 14px; margin-top: auto; padding-top: 10px;
}
.hpop-card__price {
  font-family: 'Inter', sans-serif;
  font-size: 17px; font-weight: 700; color: #1a1209;
}
.hpop-card__old {
  font-family: 'Inter', sans-serif;
  font-size: 14px; color: #bbb; text-decoration: line-through;
}
.hpop-card__btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #1a1209; color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 600;
  padding: 12px; border-radius: 10px;
  text-decoration: none;
  transition: background .25s, transform .15s;
}
.hpop-card__btn:hover { background: var(--gold); transform: translateY(-1px); }

/* Footer CTA */
.hpop-footer { text-align: center; }
.hpop-view-all {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 700;
  color: #1a1209; text-decoration: none;
  border: 2px solid #1a1209; padding: 14px 36px; border-radius: 50px;
  transition: all .25s;
}
.hpop-view-all:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

/* Responsive */
@media (max-width: 1199px) {
  .hpop-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .hpop-grid { grid-template-columns: 1fr; }
  .hpop-tabs { padding: 8px; gap: 6px; }
  .hpop-tab { font-size: 13px; padding: 9px 14px; }
}


/* ============================================================
   GLOBAL FONT OVERRIDE — Josefin Sans everywhere
   All redesigned sections: hfc, hcat2, hpop, sp (shop),
   sqv (quick view), hnl, hblog, hig
   ============================================================ */

/* ── Import Josefin Sans extra weights ── */
/* (already loaded via index.html — just referencing) */

/* ── Inter font base: admin sidebar style ── */
.hfc2-section, .hfc2-section *,
.hts-section, .hts-section *,
.hcat2-section, .hcat2-section *,
.hpop-section, .hpop-section *,
.hac-section, .hac-section *,
.hn2-section, .hn2-section *,
.hb3-section, .hb3-section *,
.hig2-section, .hig2-section *,
.hero__slider--section, .hero__slider--section *,
.banner__section, .banner__section *,
.banner__video--section, .banner__video--section *,
.shipping__section, .shipping__section * {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}
/* Blog details page */
.main__content_wrapper,
.blog__details--content, .blog__details--content *,
.blog__post--meta, .blog__post--meta *,
.reviews__comment--content__desc,
.reviews__comment--content__title,
.recent__post--title, .recent__post--title a,
.widget__search--form, .widget__search--form *,
.widget__tagcloud, .widget__tagcloud *,
.comment__reply--btn {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

/* ── SECTION 1: Featured Collection ── */
.hfc2-overline          { font-size: 13px !important; letter-spacing: .18em !important; }
.hfc2-title             { font-size: clamp(29px, 3.5vw, 42px) !important; }
.hfc2-subtitle          { font-size: 14px !important; line-height: 1.6 !important; }
.hfc2-card__title       { font-size: 14px !important; }
.hfc2-card__price       { font-size: 15px !important; }
.hfc2-card__old         { font-size: 12px !important; }
.hfc2-stat__num         { font-size: 28px !important; }
.hfc2-stat__label       { font-size: 12px !important; }
.hfc2-btn               { font-size: 13px !important; }

/* ── SECTION 2: Shop by Category ── */
.hcat2-overline        { font-size: 13px !important; color: var(--gold) !important; }
.hcat2-title           { font-size: clamp(32px, 3.5vw, 46px) !important; }
.hcat2-subtitle        { font-size: 15px !important; }
.hcat2-all-btn         { font-size: 14px !important; }
.hcat2-card__name      { font-size: 24px !important; }
.hcat2-card__count     { font-size: 13px !important; }
.hcat2-card__explore   { font-size: 14px !important; }

/* ── SECTION 3: Most Popular Items ── */
.hpop-overline         { font-size: 13px !important; }
.hpop-title            { font-size: clamp(32px, 4vw, 50px) !important; }
.hpop-subtitle         { font-size: 15px !important; }
.hpop-tab              { font-size: 14px !important; padding: 10px 18px !important; }
.hpop-card__title      { font-size: 17px !important; }
.hpop-card__price      { font-size: 18px !important; }
.hpop-card__old        { font-size: 14px !important; }
.hpop-card__btn        { font-size: 14px !important; padding: 12px !important; }
.hpop-badge            { font-size: 12px !important; }
.hpop-view-all         { font-size: 15px !important; padding: 14px 36px !important; }

/* ── TESTIMONIALS SECTION (hts-*) ── */
.hts-text            { font-size: 15px !important; }
.hts-name            { font-size: 14px !important; }
.hts-role            { font-size: 13px !important; }
.hts-stars svg       { width: 17px !important; height: 17px !important; }
.hts-overline        { font-size: 13px !important; }

/* ── BLOG SECTION (hb3-*) ── Admin sidebar style ── */
.hb3-meta            { font-size: 13px !important; }
.hb3-read            { font-size: 13px !important; }
.hb3-card__title     { font-size: 15px !important; }

/* ── INSTAGRAM SECTION (hig2-*) ── Admin sidebar style ── */
.hig2-subtitle       { font-size: 12px !important; }
.hig2-overlay span   { font-size: 11px !important; }

/* ── BLOG DETAILS PAGE ── Larger readable sizes ── */
.post__header--title             { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important; font-size: 32px !important; font-weight: 700 !important; letter-spacing: -0.02em !important; }
.blog__details--content           { font-size: 17px !important; font-weight: 400 !important; line-height: 1.9 !important; }
.blog__details--content h2        { font-size: 25px !important; font-weight: 700 !important; }
.blog__details--content h3        { font-size: 21px !important; font-weight: 700 !important; }
.blog__details--content h4        { font-size: 18px !important; font-weight: 700 !important; }
.blog__details--content p         { font-size: 17px !important; font-weight: 400 !important; line-height: 1.9 !important; }
.blog__tags--media__title,
.blog__social--media__title       { font-size: 15px !important; font-weight: 600 !important; }
.widget__title                    { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important; font-size: 15px !important; font-weight: 700 !important; letter-spacing: 0.02em !important; }
.recent__post--title              { font-size: 15px !important; font-weight: 600 !important; }
.recent__post--title a            { font-size: 15px !important; font-weight: 600 !important; }
.reviews__comment--content__title { font-size: 15px !important; font-weight: 700 !important; }
.reviews__comment--content__date  { font-size: 13px !important; font-weight: 500 !important; }
.reviews__comment--content__desc  { font-size: 15px !important; font-weight: 400 !important; }
.reviews__comment--reply__title   { font-size: 15px !important; font-weight: 700 !important; }
.comment__reply--btn              { font-size: 15px !important; font-weight: 600 !important; }
.reviews__comment--reply__textarea{ font-size: 15px !important; font-weight: 400 !important; }
.widget__search--form input       { font-size: 15px !important; font-weight: 400 !important; }
.widget__tagcloud a               { font-size: 15px !important; font-weight: 500 !important; }


/* ============================================================
   ARTISANAL CARVING SECTION (hac-*) — 3 Card Grid
   ============================================================ */
.hac-section {
  background: #F0F4FA;
  padding: 90px 0 100px;
  font-family: 'Josefin Sans', sans-serif;
}

/* Product grid — 3 columns */
.hac-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hac-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.hac-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.12); border-color: var(--gold-light); }

.hac-card__img-wrap {
  position: relative; overflow: hidden;
  background: #E0E8F4; aspect-ratio: 4/3;
}
.hac-card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease, opacity .3s;
}
.hac-img--primary  { opacity: 1; }
.hac-img--secondary { opacity: 0; }
.hac-card:hover .hac-img--primary  { opacity: 0; transform: scale(1.06); }
.hac-card:hover .hac-img--secondary { opacity: 1; transform: scale(1.06); }
.hac-card__badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: #1E4A7E; color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 4px 10px; border-radius: 20px;
}
.hac-card__actions {
  position: absolute; bottom: 10px; right: 10px;
  display: flex; flex-direction: column; gap: 6px;
  opacity: 0; transform: translateX(8px); transition: all .25s; z-index: 3;
}
.hac-card:hover .hac-card__actions { opacity: 1; transform: translateX(0); }
.hac-act-btn {
  width: 34px; height: 34px; background: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #444; text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.14);
  transition: background .2s, color .2s;
}
.hac-act-btn:hover { background: #1a1209; color: #fff; }

.hac-card__body { padding: 14px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.hac-card__stars { display: flex; gap: 2px; margin-bottom: 8px; }
.hac-card__title {
  font-size: 18px; font-weight: 700; color: #1a1209;
  line-height: 1.3; margin-bottom: 8px;
}
.hac-card__title a { text-decoration: none; color: inherit; transition: color .2s; }
.hac-card__title a:hover { color: var(--gold); }
.hac-card__price-row {
  display: flex; align-items: center; gap: 8px; margin-bottom: 12px; margin-top: auto; padding-top: 8px;
}
.hac-card__price { font-size: 18px; font-weight: 700; color: #1a1209; }
.hac-card__old   { font-size: 14px; color: #bbb; text-decoration: line-through; }
.hac-card__disc  {
  font-size: 12px; font-weight: 700;
  background: #e94444; color: #fff; padding: 3px 8px; border-radius: 10px;
}
.hac-card__btn {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  background: #1a1209; color: #fff;
  font-size: 15px; font-weight: 600;
  padding: 10px; border-radius: 9px;
  text-decoration: none; transition: background .2s;
}
.hac-card__btn:hover { background: var(--gold); }

@media (max-width: 991px) {
  .hac-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .hac-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ============================================================
   DEAL OF THE WEEK — Standalone (dow-*)
   ============================================================ */
.dow-section {
  padding: 90px 0 0;
}
.dow-card {
  display: flex;
  background: linear-gradient(135deg, #0f1724 0%, #162240 50%, #1a2d52 100%);
  border-radius: 24px;
  overflow: hidden;
  min-height: 380px;
}
.dow-card__img-wrap {
  position: relative;
  width: 45%;
  flex-shrink: 0;
  overflow: hidden;
}
.dow-card__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.dow-card:hover .dow-card__img { transform: scale(1.04); }
.dow-card__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 40%, rgba(15,23,36,.95) 100%);
}
.dow-card__content {
  flex: 1;
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dow-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,168,67,.15);
  color: var(--gold);
  border: 1px solid rgba(212,168,67,.25);
  padding: 7px 18px; border-radius: 50px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 20px; align-self: flex-start;
}
.dow-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800; color: #fff; line-height: 1.2;
  margin: 0 0 12px;
}
.dow-desc {
  font-size: 15px; color: rgba(255,255,255,.55);
  line-height: 1.7; margin: 0 0 28px;
  max-width: 440px;
}
.dow-timer {
  display: flex; gap: 12px; margin-bottom: 32px;
}
.dow-timer__block {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
  border-radius: 12px; padding: 14px 18px;
  text-align: center; min-width: 68px;
}
.dow-timer__val {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 30px; font-weight: 800;
  color: var(--gold); line-height: 1;
}
.dow-timer__label {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .08em; margin-top: 6px;
}
.dow-btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--gold); color: #1a1209;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 15px; font-weight: 700;
  padding: 14px 32px; border-radius: 12px;
  text-decoration: none; align-self: flex-start;
  transition: all .3s ease;
}
.dow-btn:hover {
  background: #fff; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,67,.25);
}
.dow-btn svg { transition: transform .3s ease; }
.dow-btn:hover svg { transform: translateX(3px); }

@media (max-width: 991px) {
  .dow-card { flex-direction: column; }
  .dow-card__img-wrap { width: 100%; height: 280px; }
  .dow-card__img-overlay {
    background: linear-gradient(180deg, transparent 40%, rgba(15,23,36,.95) 100%);
  }
}
@media (max-width: 767px) {
  .dow-card__content { padding: 32px 24px; }
  .dow-timer { gap: 8px; }
  .dow-timer__block { padding: 10px 12px; min-width: 56px; }
  .dow-timer__val { font-size: 24px; }
}

/* ============================================================
   HOME BLOG SECTION v2 (hb2-*)
   ============================================================ */
/* ============================================================
   HOME — Blog Section (hb2-*)
   Fully redesigned with animations, hover effects
   ============================================================ */
/* ══════════════════════════════════════
   BLOG SECTION — Modern Cards (hb3)
   ══════════════════════════════════════ */
.hb3-section {
  background: linear-gradient(180deg, #F0F4FA 0%, #fff 50%, #F0F4FA 100%);
  padding: 90px 0 100px;
  position: relative;
}
.hb3-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-bottom: 32px;
}
.hb3-overline {
  font-size: 12px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 6px;
}
.hb3-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900; color: #1a1209; line-height: 1.15; margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
}
.hb3-title em { font-style: normal; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hb3-all {
  display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0;
  color: #1a1209; text-decoration: none;
  font-size: 13px; font-weight: 700; letter-spacing: .03em;
  padding: 8px 18px; border-radius: 50px;
  border: 1.5px solid #1a1209;
  transition: all .3s ease;
}
.hb3-all:hover { background: #1a1209; color: #fff; gap: 10px; }
.hb3-all svg { transition: transform .3s ease; }
.hb3-all:hover svg { transform: translateX(3px); }

/* Grid: 3 equal columns */
.hb3-grid {
  display: grid;
  contain: layout style;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card */
.hb3-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: transform .4s cubic-bezier(.25,.46,.45,.94), box-shadow .4s ease, border-color .4s ease;
  border: 1px solid rgba(0,0,0,.04);
  will-change: transform;
}
.hb3-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.08);
  border-color: var(--gold-light);
}
.hb3-card__img-wrap {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 16/10; background: #E0E8F4;
}
.hb3-card__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}
.hb3-card:hover .hb3-card__img { transform: scale(1.06); }

/* Tag pill */
.hb3-tag {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a1209;
  font-size: 11px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px;
}

/* Card body */
.hb3-card__body {
  padding: 14px 16px 16px;
  display: flex; flex-direction: column;
}
.hb3-meta {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 8px;
  font-size: 12px; color: #999;
}
.hb3-dot { color: #ccc; font-size: 12px; }
.hb3-card__title {
  font-size: 14px; font-weight: 700; color: #1a1209;
  line-height: 1.35; margin-bottom: 10px;
  font-family: 'Playfair Display', Georgia, serif;
}
.hb3-card__title a { text-decoration: none; color: inherit; transition: color .2s; }
.hb3-card__title a:hover { color: var(--gold); }
.hb3-read {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 700; color: var(--gold);
  text-decoration: none; transition: all .2s ease;
  letter-spacing: .03em;
}
.hb3-read:hover { gap: 8px; color: #1a1209; }
.hb3-read svg { transition: transform .2s ease; }
.hb3-read:hover svg { transform: translateX(2px); }

/* Responsive */
@media (max-width: 991px) {
  .hb3-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hb3-grid { grid-template-columns: 1fr; }
  .hb3-header { flex-direction: column; align-items: flex-start; }
}

/* Entry reveal animations — sections fade up */
.hts-reveal, .hn2-reveal, .hfc2-reveal, .hb3-reveal, .hig2-reveal,
.hcat2-reveal, .hpop-reveal, .hac-reveal, .sc-reveal, .hig3-section, .dow-reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
  will-change: transform, opacity;
}
.hts-reveal.is-visible, .hn2-reveal.is-visible, .sc-reveal.is-visible, .hfc2-reveal.is-visible, .hb3-reveal.is-visible, .hig2-reveal.is-visible, .hig3-section.is-visible, .dow-reveal.is-visible,
.hcat2-reveal.is-visible, .hpop-reveal.is-visible, .hac-reveal.is-visible {
  opacity: 1; transform: translateY(0);
  will-change: auto;
}

/* Cards slide from left/right on scroll */
.hts-reveal--left, .hts-reveal--right,
.hb3-reveal--left, .hb3-reveal--right,
.hfc2-reveal--left, .hfc2-reveal--right,
.hcat2-reveal--left, .hcat2-reveal--right,
.hpop-reveal--left, .hpop-reveal--right,
.hac-reveal--left, .hac-reveal--right,
.hig2-reveal--left, .hig2-reveal--right {
  opacity: 0;
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
  will-change: transform, opacity;
}
.hts-reveal--left, .hb3-reveal--left,
.hfc2-reveal--left, .hcat2-reveal--left,
.hpop-reveal--left, .hac-reveal--left,
.hig2-reveal--left {
  transform: translateX(-40px);
}
.hts-reveal--right, .hb3-reveal--right,
.hfc2-reveal--right, .hcat2-reveal--right,
.hpop-reveal--right, .hac-reveal--right,
.hig2-reveal--right {
  transform: translateX(40px);
}
.hts-reveal--left.is-visible, .hts-reveal--right.is-visible,
.hb3-reveal--left.is-visible, .hb3-reveal--right.is-visible,
.hfc2-reveal--left.is-visible, .hfc2-reveal--right.is-visible,
.hcat2-reveal--left.is-visible, .hcat2-reveal--right.is-visible,
.hpop-reveal--left.is-visible, .hpop-reveal--right.is-visible,
.hac-reveal--left.is-visible, .hac-reveal--right.is-visible,
.hig2-reveal--left.is-visible, .hig2-reveal--right.is-visible {
  opacity: 1; transform: translateX(0);
  will-change: auto;
}
.hts-reveal--left { transition-delay: .05s; }
.hts-reveal--right { transition-delay: .15s; }
.hb3-reveal--left { transition-delay: .05s; }
.hb3-reveal--right { transition-delay: .15s; }
.hfc2-reveal--left { transition-delay: .04s; }
.hfc2-reveal--right { transition-delay: .12s; }
.hcat2-reveal--left { transition-delay: .05s; }
.hcat2-reveal--right { transition-delay: .15s; }
.hpop-reveal--left { transition-delay: .05s; }
.hpop-reveal--right { transition-delay: .15s; }
.hac-reveal--left { transition-delay: .05s; }
.hac-reveal--right { transition-delay: .15s; }
.hig2-reveal--left { transition-delay: .04s; }
.hig2-reveal--right { transition-delay: .12s; }

/* ── Touch devices: always show hidden action buttons ── */
@media (hover: none) {
  .hfc2-quick { opacity: .85; transform: translateX(-50%) translateY(0); }
  .hpop-card__actions, .hac-card__actions { opacity: 1; transform: translateX(0); }
}
