/* ===== Site Header (match Jewel template) ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
}

/* ===== Home Full-screen Video Hero (Sabyasachi style) ===== */
.page-home {
  overflow-x: hidden;
}

@media screen and (max-width: 991px) {
  html,
  body {
    overflow-x: clip;
  }

  img,
  video,
  svg {
    max-width: 100%;
    height: auto;
  }
}

.home-video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: visible;
}

.home-video-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.home-video-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-video-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.2) 40%,
    rgba(0, 0, 0, 0.45) 100%
  );
  pointer-events: none;
}

.page-home .site-header--overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: transparent;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.page-home .site-header--overlay .top-navbar {
  background: transparent;
}

.page-home .site-header--overlay .top-navbar-title {
  color: rgba(255, 255, 255, 0.92);
}

.page-home .site-header--overlay .navbar {
  background: transparent !important;
}

.page-home .site-header--overlay .grid-navbar {
  border-bottom-color: rgba(255, 255, 255, 0.22);
}

.page-home .site-header--overlay .nav-link,
.page-home .site-header--overlay .w-nav-link,
.page-home .site-header--overlay .dropdown-toggle .text-black {
  color: #fff !important;
}

.page-home .site-header--overlay .search-icon,
.page-home .site-header--overlay .cart-button img,
.page-home .site-header--overlay .user-button__icon,
.page-home .site-header--overlay .dropdown-icon {
  filter: brightness(0) invert(1);
}

.page-home .site-header--overlay .brand img {
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
}

.page-home .site-header--overlay .search-close-icon {
  filter: none;
}

.page-home .site-header--overlay .cart-quantity {
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
}

.page-home .site-header--overlay.site-header--solid {
  position: fixed;
  background-color: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.page-home .site-header--overlay.site-header--solid .top-navbar-title {
  color: #fff;
}

.page-home .site-header--overlay.site-header--solid .top-navbar {
  background-color: #000;
}

.page-home .site-header--overlay.site-header--solid .navbar {
  background: #fff !important;
}

.page-home .site-header--overlay.site-header--solid .grid-navbar {
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

.page-home .site-header--overlay.site-header--solid .nav-link,
.page-home .site-header--overlay.site-header--solid .w-nav-link,
.page-home .site-header--overlay.site-header--solid .dropdown-toggle .text-black {
  color: #000 !important;
}

.page-home .site-header--overlay.site-header--solid .search-icon,
.page-home .site-header--overlay.site-header--solid .cart-button img,
.page-home .site-header--overlay.site-header--solid .user-button__icon,
.page-home .site-header--overlay.site-header--solid .dropdown-icon {
  filter: none;
}

.page-home .site-header--overlay.site-header--solid .brand img {
  filter: none;
}

.home-video-hero__content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  pointer-events: none;
}

.home-video-hero__content a {
  pointer-events: auto;
}

.home-video-hero__title {
  margin: 0 0 28px;
  color: #fff;
  font-family: Gambarino, sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}

.home-video-hero__content.is-visible .home-video-hero__title {
  opacity: 1;
  transform: translateY(0);
}

.home-video-hero__btn {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid #fff;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.35s ease, color 0.35s ease;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease 0.55s, transform 0.9s ease 0.55s, background-color 0.35s ease, color 0.35s ease;
}

.home-video-hero__content.is-visible .home-video-hero__btn {
  opacity: 1;
  transform: translateY(0);
}

.home-video-hero__btn:hover {
  background-color: #fff;
  color: #000;
}

.home-video-hero__control {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.home-video-hero__control:hover {
  background: rgba(0, 0, 0, 0.45);
  border-color: #fff;
}

.home-video-hero__control-icon {
  display: block;
  width: 10px;
  height: 14px;
  position: relative;
}

.home-video-hero__control-icon--pause::before,
.home-video-hero__control-icon--pause::after {
  content: '';
  position: absolute;
  top: 0;
  width: 3px;
  height: 14px;
  background: #fff;
  border-radius: 1px;
}

.home-video-hero__control-icon--pause::before {
  left: 0;
}

.home-video-hero__control-icon--pause::after {
  right: 0;
}

.home-video-hero__control.is-paused .home-video-hero__control-icon--pause::before {
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #fff;
  background: transparent;
  border-radius: 0;
}

.home-video-hero__control.is-paused .home-video-hero__control-icon--pause::after {
  display: none;
}

body.home-header-solid {
  padding-top: 0;
}

body.home-past-hero .home-page-content {
  padding-top: 0;
}

body.home-past-hero .site-header--overlay.site-header--solid {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

@media screen and (max-width: 991px) {
  .page-home .site-header--overlay .menu-button {
    filter: none;
    background-color: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #fff;
  }

  .page-home .site-header--overlay .menu-button .w-icon-nav-menu {
    color: #fff;
  }

  .page-home .site-header--overlay.site-header--solid .menu-button {
    filter: none;
    background-color: #111;
    border-color: #111;
    color: #fff;
  }

  .home-video-hero__content {
    padding-top: 140px;
  }
}

@media screen and (max-width: 991px) {
  .home-video-hero__control {
    right: 16px;
    bottom: 16px;
    width: 40px;
    height: 40px;
  }

  .page-home .site-header--overlay .top-navbar-title {
    font-size: 11px;
    padding: 0 8px;
  }
}

.top-navbar {
  padding-top: 10px;
  padding-bottom: 10px;
}

.top-navbar-title {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.navbar {
  background-color: #fff !important;
}

.grid-navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.grid-navbar .brand {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  align-self: center;
  padding-left: 0;
  float: none;
}

.grid-navbar .nav-menu {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  align-self: center;
}

.grid-navbar .right-side-nav {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-self: center;
}

.grid-navbar .brand img,
.brand-logo {
  height: 76px;
  width: auto;
  max-width: min(220px, 38vw);
  object-fit: contain;
  display: block;
}

.brand-logo--footer {
  height: 72px;
  max-width: 168px;
}

@media screen and (max-width: 991px) {
  .grid-navbar .brand img,
  .brand-logo:not(.brand-logo--footer) {
    height: clamp(50px, 13vw, 60px);
    width: auto;
    max-width: min(240px, 58vw);
    object-fit: contain;
    display: block;
  }

  .brand-logo--footer {
    height: 60px;
    max-width: 140px;
  }

  /* Mobile header: menu left | logo center | icons right */
  .grid-navbar {
    position: relative;
    display: grid !important;
    grid-template-columns: minmax(42px, 1fr) auto minmax(42px, 1fr) !important;
    align-items: center;
    min-height: clamp(64px, 16vw, 72px);
  }

  .grid-navbar .menu-button {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    display: flex !important;
    z-index: 4;
  }

  .grid-navbar .brand,
  .grid-navbar .brand.w-nav-brand,
  #w-node-_6f03ce70-6359-42c6-1e1c-b55e4a72efe7-4a72efdb {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    align-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0 !important;
    z-index: 2;
    pointer-events: auto;
  }

  .grid-navbar .right-side-nav {
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    z-index: 4;
  }

  .grid-navbar .nav-menu {
    grid-column: unset !important;
    grid-row: unset !important;
  }

  .site-header .right-side-nav .search-link {
    display: inline-flex !important;
  }
}

@media screen and (max-width: 479px) {
  .grid-navbar {
    grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr) !important;
    min-height: clamp(60px, 15vw, 68px);
  }

  .grid-navbar .menu-button {
    width: 40px;
    height: 40px;
  }

  .grid-navbar .brand img,
  .brand-logo:not(.brand-logo--footer) {
    height: clamp(46px, 12vw, 54px);
    max-width: min(220px, 62vw);
  }

  .grid-navbar .right-side-nav {
    gap: 8px;
  }
}

@media screen and (min-width: 992px) {
  .grid-navbar {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center;
  }

  .grid-navbar .brand {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    max-width: none;
  }

  .grid-navbar .nav-menu {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: center !important;
  }

  .grid-navbar .right-side-nav {
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
  }

  .nav-menu.w-nav-menu {
    display: flex !important;
    align-items: center;
    float: none;
    position: static;
  }

  .nav-menu .nav-link,
  .nav-menu .w-nav-link {
    display: inline-flex;
    align-items: center;
    padding: 0;
    margin: 0 22px 0 0;
    font-size: 16px;
    font-weight: 500;
    vertical-align: middle;
  }

  .nav-menu .nav-link.first {
    margin-left: 0;
  }

  .nav-menu .nav-link.w--current {
    text-decoration: none;
  }

  .nav-menu .w-dropdown {
    display: inline-flex;
    align-items: center;
    margin: 0 22px 0 0 !important;
    position: relative;
    z-index: 1200;
    width: auto;
  }

  .nav-menu .w-dropdown .w-dropdown-toggle {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Invisible bridge so cursor can reach menu without losing hover */
  .nav-menu .w-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 14px;
  }

  .site-header,
  .site-header .navbar,
  .site-header .nav-menu.w-nav-menu,
  .site-header .container-full,
  .site-header .grid-navbar {
    overflow: visible;
  }

  .nav-menu .w-dropdown:not(.w-dropdown--mega) .dropdown-list,
  .nav-menu .w-dropdown:not(.w-dropdown--mega) .w-dropdown-list {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: auto !important;
    bottom: auto !important;
    margin-top: 0;
    padding-top: 10px;
    min-width: 220px;
    width: 220px;
    z-index: 1300;
    display: none;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  }

  .nav-menu .w-dropdown:not(.w-dropdown--mega).is-open > .dropdown-list,
  .nav-menu .w-dropdown:not(.w-dropdown--mega).is-open > .w-dropdown-list,
  .nav-menu .w-dropdown:not(.w-dropdown--mega) .dropdown-list.w--open,
  .nav-menu .w-dropdown:not(.w-dropdown--mega) .w-dropdown-list.w--open {
    display: flex !important;
  }

  .nav-menu .dropdown-toggle,
  .nav-menu .w-dropdown-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: flex-start !important;
    gap: 5px;
    width: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    white-space: nowrap;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
  }

  .nav-menu .dropdown-toggle .text-black {
    margin: 0;
    line-height: 1;
  }

  .nav-menu .dropdown-icon {
    height: 11px;
    width: 11px;
    margin: 0;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
  }

  /* Override Webflow tablet rule that breaks dropdown position */
  .dropdown-list {
    inset: unset !important;
  }

  /* Mega menu — Dhaatu-style shop by */
  .nav-menu .w-dropdown--mega::after {
    display: none;
  }

  .nav-menu .w-dropdown--mega .mega-menu {
    position: fixed !important;
    top: var(--mega-menu-top, 100px) !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    width: 100vw !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    background: var(--ghost-white) !important;
    border-radius: 0 !important;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08) !important;
    display: none !important;
    flex-direction: unset !important;
    z-index: 1250;
    max-height: calc(100vh - var(--mega-menu-top, 100px));
    overflow-x: hidden;
    overflow-y: auto;
  }

  .nav-menu .w-dropdown--mega.is-open .mega-menu,
  .nav-menu .w-dropdown--mega.is-open > .dropdown-list,
  .nav-menu .w-dropdown--mega.is-open > .w-dropdown-list {
    display: block !important;
  }

  .mega-menu__inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(32px, 5vw, 72px);
    padding: 36px clamp(20px, 4vw, 40px) 40px;
    max-width: 1240px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100%;
    box-sizing: border-box;
  }

  .mega-menu__inner--desktop {
    display: flex;
  }

  .mega-menu__mobile {
    display: none !important;
  }

  .mega-menu__inner.w-container,
  .mega-menu__inner.container-full {
    max-width: 1240px !important;
    padding-left: clamp(20px, 4vw, 40px) !important;
    padding-right: clamp(20px, 4vw, 40px) !important;
  }

  .mega-menu__columns {
    flex: 0 0 auto;
    order: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 190px));
    gap: 32px 56px;
    justify-content: center;
    text-align: left;
  }

  .mega-menu__cards {
    flex: 0 0 auto;
    order: 2;
    margin-left: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(130px, 160px));
    gap: 16px;
    justify-content: center;
  }

  .mega-menu__parent {
    display: block;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.3;
    color: #111;
    margin: 0 0 12px;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .mega-menu__parent:hover {
    color: #666;
  }

  .mega-menu__children {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
  }

  .mega-menu__children li {
    margin: 0 0 8px;
  }

  .mega-menu__children a {
    color: #666;
    font-size: 14px;
    line-height: 1.45;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .mega-menu__children a:hover {
    color: #111;
  }

  .mega-menu__group:last-child .mega-menu__children {
    margin-bottom: 0;
  }

  .mega-menu__card {
    background: #fff;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .mega-menu__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  }

  .mega-menu__card-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: #eee;
  }

  .mega-menu__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
  }

  .mega-menu__card:hover .mega-menu__card-image img {
    transform: scale(1.04);
  }

  .mega-menu__card-body {
    position: relative;
    padding: 14px 40px 14px 14px;
    min-height: 68px;
  }

  .mega-menu__card-title {
    margin: 0 0 4px;
    font-weight: 600;
    font-size: 14px;
    color: #111;
  }

  .mega-menu__card-sub {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    color: #888;
  }

  .mega-menu__card-arrow {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  @media screen and (max-width: 1200px) {
    .mega-menu__cards {
      grid-template-columns: repeat(3, minmax(120px, 140px));
    }
  }

  @media screen and (max-width: 1050px) {
    .mega-menu__inner {
      flex-wrap: wrap;
      justify-content: center;
    }

    .mega-menu__cards {
      margin-left: 0;
      width: 100%;
      max-width: 720px;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      justify-content: center;
    }

    .mega-menu__columns {
      justify-content: center;
    }
  }

  .menu-button {
    display: none !important;
  }

  .grid-navbar .menu-button {
    display: none !important;
  }
}

/* Shop By dropdown — keep label and icon close together */
.nav-menu .w-dropdown--mega,
.nav-menu .w-dropdown.w-dropdown--mega {
  width: auto;
  margin-right: 22px;
  margin-left: 0;
}

.nav-menu .w-dropdown--mega .dropdown-toggle,
.nav-menu .w-dropdown--mega .w-dropdown-toggle {
  justify-content: flex-start !important;
  gap: 5px;
  width: auto !important;
}

.mega-menu__trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.mega-menu__shop-link {
  display: inline-flex;
  align-items: center;
  padding: 0 !important;
  margin: 0 !important;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
}

.mega-menu__shop-link:hover,
.mega-menu__shop-link:focus {
  color: inherit;
  text-decoration: underline;
}

.mega-menu__dropdown-toggle {
  cursor: pointer;
  padding: 0 !important;
}

@media screen and (max-width: 991px) {
  .mega-menu__inner--desktop {
    display: none !important;
  }

  .mega-menu__mobile {
    display: block !important;
  }

  .nav-menu .w-dropdown--mega,
  .nav-menu .w-dropdown.w-dropdown--mega {
    width: 100% !important;
    margin: 0 !important;
  }

  .nav-menu .w-dropdown.nav-link {
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    background: transparent !important;
  }

  .nav-menu .w-dropdown--mega .dropdown-toggle,
  .nav-menu .w-dropdown--mega .w-dropdown-toggle {
    justify-content: center !important;
    width: auto !important;
    gap: 12px;
  }

  .mega-menu__trigger {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100% !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    cursor: pointer;
  }

  .mega-menu__shop-link {
    flex: 1;
    padding: 16px 24px !important;
    border-bottom: none !important;
  }

  .mega-menu__dropdown-toggle {
    padding: 16px 24px !important;
    border-bottom: none !important;
  }

  .nav-menu .w-dropdown--mega.is-open .mega-menu__trigger {
    background-color: rgba(0, 0, 0, 0.04);
  }

  .nav-menu .w-dropdown--mega .mega-menu,
  .nav-menu .w-dropdown--mega .dropdown-list,
  .nav-menu .w-dropdown--mega .w-dropdown-list {
    position: static !important;
    inset: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    background: var(--ghost-white) !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
  }

  .nav-menu .w-dropdown--mega.is-open .mega-menu,
  .nav-menu .w-dropdown--mega.is-open .dropdown-list,
  .nav-menu .w-dropdown--mega.is-open .w-dropdown-list,
  .nav-menu .w-dropdown--mega.is-open .mega-menu.w--open,
  .nav-menu .w-dropdown--mega.is-open .dropdown-list.w--open {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
  }

  .mega-menu__inner {
    flex-direction: column;
    gap: 24px;
    padding: 8px 0 16px;
  }

  .mega-menu__columns {
    order: 1;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
  }

  .mega-menu__cards {
    order: 2;
    margin-left: 0;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
  }

  /* Mobile Shop By drill-down panels */
  .mega-menu__mobile {
    padding: 0 0 16px;
  }

  .mega-menu__mobile-stack {
    width: 100%;
  }

  .mega-menu__mobile-panel {
    width: 100%;
  }

  .mega-menu__mobile-panel[hidden] {
    display: none !important;
  }

  .mega-menu__mobile-back {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 18px 24px;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: transparent;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #111;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s ease;
  }

  .mega-menu__mobile-back:hover {
    background: rgba(0, 0, 0, 0.04);
  }

  .mega-menu__back-icon {
    flex-shrink: 0;
    opacity: 0.7;
  }

  .mega-menu__back-label {
    line-height: 1;
  }

  .mega-menu__mobile-list {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }

  .mega-menu__mobile-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 16px 24px;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    background: transparent;
    font-family: Inter, sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #111 !important;
    text-decoration: none !important;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .mega-menu__mobile-row:hover {
    background: rgba(0, 0, 0, 0.04);
  }

  .mega-menu__chevron--right {
    flex-shrink: 0;
    opacity: 0.45;
  }

  .mega-menu__mobile-empty {
    margin: 0;
    padding: 16px 24px;
    font-family: Inter, sans-serif;
    font-size: 14px;
    color: rgba(17, 17, 17, 0.55);
  }

  .mega-menu__mobile-child-content {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }

  .mega-menu__mobile-child-group {
    padding: 8px 0 4px;
  }

  .mega-menu__mobile-child-group[hidden] {
    display: none !important;
  }

  .mega-menu__mobile-view-all {
    display: block;
    padding: 14px 24px 10px;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #666 !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: color 0.2s ease;
  }

  .mega-menu__mobile-view-all:hover {
    color: #111 !important;
  }

  .mega-menu__mobile-child-links {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mega-menu__mobile-child-links li {
    margin: 0;
    padding: 0;
  }

  .mega-menu__mobile-child-links a {
    display: block;
    padding: 14px 24px;
    font-family: Inter, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #111 !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .mega-menu__mobile-child-links li:last-child a {
    border-bottom: none;
  }

  .mega-menu__mobile-child-links a:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #111 !important;
  }

  .mega-menu__mobile-featured {
    padding: 18px 0 4px;
    margin-top: 4px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: transparent;
  }

  .mega-menu__mobile-label {
    margin: 0 0 12px;
    padding: 0 20px;
    font-family: Inter, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.45);
  }

  .mega-menu__mobile-cards {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 20px 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .mega-menu__mobile-cards::-webkit-scrollbar {
    display: none;
  }

  .mega-menu__mobile-card {
    flex: 0 0 132px;
    scroll-snap-align: start;
    text-decoration: none !important;
    color: #111;
  }

  .mega-menu__mobile-card-image {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 8px;
  }

  .mega-menu__mobile-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .mega-menu__mobile-card-title {
    display: block;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
    color: #111;
  }
}

@media screen and (max-width: 479px) {
  .mega-menu__columns {
    grid-template-columns: 1fr;
  }

  .mega-menu__cards {
    grid-template-columns: 1fr;
  }
}

body.mega-menu-open {
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  body.mega-menu-open,
  body.mobile-nav-open {
    overflow: hidden;
  }
}

.right-side-nav {
  justify-content: flex-end;
}

.search-link {
  margin-bottom: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.search-icon {
  padding-top: 0;
  width: 22px;
  height: 22px;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.cart-button img {
  width: 22px;
  height: 22px;
}

.user-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  line-height: 0;
  color: #111;
}

.user-button__icon {
  width: 22px;
  height: 22px;
  display: block;
}

.cart-quantity {
  background-color: #cecece;
  color: #000;
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  inset: -8px -10px auto auto;
  padding: 0 4px;
}

.site-header.is-scrolled,
.navbar.is-scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero load animation */
.hero-simple-section .hero-simple-image-wrap {
  opacity: 0;
  transform: translateX(30px);
  animation: heroImageIn 1s ease 0.2s forwards;
}

.hero-simple-section .hero-simple-content {
  opacity: 0;
  transform: translateY(30px);
  animation: heroContentIn 1s ease 0.5s forwards;
}

@keyframes heroImageIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Hero badge float */
.hero-simple-two-image {
  animation: badgeFloat 4s ease-in-out infinite;
}

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

/* Button arrow slide on hover */
.btn-hover .rounded-shape,
.btn-hover-light .white-rounded-shape {
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-hover:hover .rounded-shape,
.btn-hover-light:hover .white-rounded-shape {
  transform: translateX(8px);
}

/* Category & product image zoom */
.category-image,
.product-image {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.category-item:hover .category-image,
.product-items:hover .product-image {
  transform: scale(1.08);
}

/* Home categories — center row when fewer items than columns */
.page-home .category-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.page-home .category-item {
  flex: 0 1 calc((100% - 80px) / 3);
  max-width: 360px;
  min-width: 200px;
}

@media screen and (min-width: 1280px) {
  .page-home .category-item {
    flex: 0 1 calc((100% - 200px) / 6);
    max-width: 280px;
  }
}

@media screen and (max-width: 991px) {
  .page-home .category-list {
    gap: 20px;
  }

  .page-home .category-item {
    flex: 0 1 calc((100% - 20px) / 2);
    max-width: 420px;
  }
}

@media screen and (max-width: 479px) {
  .page-home .category-list {
    gap: 12px;
  }

  .page-home .category-item {
    flex: 0 1 100%;
    max-width: 100%;
  }
}

/* Product card background */
.product-image-wrap {
  background-color: var(--ghost-white);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-wrap .product-image {
  max-height: 220px;
  object-fit: contain;
  width: 100%;
}

/* Hide legacy full-screen search panel */
#search-panel {
  display: none !important;
}

/* ===== Search Drawer (Dhaatu style) ===== */
.search-drawer {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: none;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.search-drawer.is-open {
  display: flex;
  opacity: 1;
}

.search-drawer-panel {
  position: relative;
  z-index: 1;
  pointer-events: auto;
  width: min(420px, 92vw);
  height: 100vh;
  max-height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
}

.search-drawer.is-open .search-drawer-panel {
  transform: translateX(0);
}

body.search-drawer-open {
  overflow: hidden;
}

/* Prevent legacy .search-open styles from breaking body if applied */
body.search-open {
  position: static !important;
  inset: auto !important;
  background: transparent !important;
  display: block !important;
  overflow: hidden;
}

.search-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 16px;
  flex-shrink: 0;
}

.search-drawer-title {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #111;
  letter-spacing: -0.02em;
}

.search-drawer-close {
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
  line-height: 0;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.search-drawer-close:hover {
  opacity: 1;
}

.search-drawer-input-wrap {
  position: relative;
  margin: 0 24px 20px;
  flex-shrink: 0;
}

.search-drawer-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.55;
}

.search-drawer-input {
  width: 100%;
  box-sizing: border-box;
  border: 0;
  border-radius: 999px;
  background: #f2f2f2;
  padding: 14px 72px 14px 44px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  color: #111;
  outline: none;
}

.search-drawer-input::placeholder {
  color: #999;
}

.search-drawer-clear {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  padding: 4px 0;
}

.search-drawer-clear:hover {
  color: #111;
}

.search-drawer-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 0 24px 24px;
}

.search-drawer-section {
  margin-bottom: 28px;
}

.search-drawer-section:last-child {
  margin-bottom: 0;
}

.search-drawer-label {
  margin: 0 0 14px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
}

.search-suggestions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.search-suggestion-tag {
  border: 0;
  background: transparent;
  padding: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #444;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s ease;
}

.search-suggestion-tag:hover {
  color: #111;
  text-decoration: underline;
}

.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.search-result-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.search-result-item:hover {
  opacity: 0.82;
}

.search-result-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  background: #f5f5f5;
}

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

.search-result-title {
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  color: #111;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-result-prices {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.search-result-price-sale {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #c0392b;
}

.search-result-price-compare {
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
}

.search-result-price-regular {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

.search-results-empty {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #888;
}

/* Search panel active state (legacy) */
.search-open.is-active {
  display: none !important;
}

body.search-active .search-icon {
  display: inline;
}

body.search-active .search-close-icon {
  display: none !important;
}

/* Instagram parallax */
.insta-float {
  transition: transform 0.4s ease;
}

.insta-float:hover {
  transform: scale(1.03);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Video cover fix */
.background-video > video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.background-video {
  overflow: hidden;
}

/* Category explore arrow slide */
.category-item .category-button-wrap img {
  transition: transform 0.3s ease;
}

.category-item:hover .category-button-wrap img {
  transform: translateX(4px);
}

/* Product arrow on hover */
.product-items .rounded-shape {
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.product-items:hover .rounded-shape {
  transform: translateX(4px);
  background-color: var(--black);
}

.product-items:hover .rounded-shape img {
  filter: invert(1);
}

/* ===== About Us Page ===== */
@media screen and (min-width: 992px) {
  .grid-about-hero {
    grid-template-columns: 1fr 1fr;
  }
}

.about-content h1 {
  margin-bottom: 20px;
}

.about-content p {
  color: rgba(0, 0, 0, 0.65);
  margin-bottom: 16px;
}

.counter-item h4 {
  margin-bottom: 6px;
}

.counter-item > div {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
}

.about-bg-right {
  width: 100%;
  height: 100%;
  min-height: 600px;
}

.about-bg-right__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  border-radius: 10px;
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-stagger {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-stagger.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.about-item-title {
  margin-bottom: 12px;
}

.about-title-wrap h3 {
  margin-bottom: 0;
}

/* Instagram marquee */
.insta-marquee-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.insta-marquee-wrap.is-ready .insta-marquee-track {
  opacity: 1;
}

.insta-marquee-track {
  display: flex;
  width: max-content;
  opacity: 0;
  transition: opacity 0.3s ease;
  will-change: transform;
}

.insta-marquee {
  display: flex;
  flex: none;
  align-items: center;
  grid-column-gap: 0;
}

.insta-marquee .grid-insta {
  display: grid;
  flex: none;
  width: auto;
}

.insta-marquee-track--css {
  opacity: 1;
  animation: insta-marquee-scroll 45s linear infinite;
}

.insta-marquee-wrap:hover .insta-marquee-track--css {
  animation-play-state: paused;
}

@keyframes insta-marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.insta-image-wrap {
  overflow: hidden;
  display: block;
  width: 220px;
  height: 220px;
}

.insta-image-wrap .insta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insta-image-wrap:hover .insta-image {
  transform: scale(1.06);
}

.insta-image-wrap .insta-content {
  transition: opacity 0.4s ease;
  z-index: 2;
}

.insta-image-wrap:hover .insta-content {
  opacity: 1 !important;
}

@media screen and (min-width: 1280px) {
  .insta-image-wrap {
    width: 260px;
    height: 260px;
  }
}

@media screen and (max-width: 767px) {
  .new-feature-item-wrap {
    flex-direction: column;
    align-items: center;
  }

  .new-feature-item {
    width: 100% !important;
    max-width: 400px;
  }

  .insta-image-wrap {
    width: 180px;
    height: 180px;
  }
}

@media screen and (max-width: 991px) {
  .new-feature-item {
    width: 100%;
    max-width: 360px;
  }

  .new-feature-item-wrap {
    flex-direction: column;
    align-items: center;
  }

  .grid-about {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .about-bg-right,
  .about-image-background {
    height: auto;
    min-height: 280px;
    max-height: 50vh;
  }

  .about-bg-right__image {
    min-height: 280px;
  }
}

/* ===== Shop Page ===== */
button.category-link {
  cursor: pointer;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: inherit;
}

.category-title {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.category-title.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.new-category-list {
  margin-top: 10px;
}

#shop-product-grid {
  opacity: 1;
  transition: opacity 0.28s ease;
}

#shop-product-grid.is-switching {
  opacity: 0;
}

#shop-product-grid .shop-product-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

#shop-product-grid.is-visible .shop-product-item {
  opacity: 1;
  transform: translateY(0);
}

#shop-product-grid .shop-product-item.is-hidden {
  display: none;
}

.shop-products-wrap.is-loading,
#shop-products-results.is-loading {
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.shop-pagination-wrap {
  margin-top: 40px;
}

.shop-pagination-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shop-pagination-item a,
.shop-pagination-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  background: #fff;
}

.shop-pagination-item.is-active span {
  background: #000;
  border-color: #000;
  color: #fff;
}

.shop-pagination-item.is-disabled span {
  color: rgba(0, 0, 0, 0.35);
  background: rgba(0, 0, 0, 0.03);
}

.shop-pagination-item a:hover {
  border-color: #000;
}

.hero-inner .category-title {
  margin-bottom: 24px;
}

/* Shop layout: sidebar + products */
.shop-layout {
  display: grid;
  grid-template-columns: minmax(240px, 280px) 1fr;
  gap: 48px;
  align-items: start;
}

.shop-filters {
  position: sticky;
  top: 120px;
  padding: 24px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.shop-filters-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.shop-filters-title {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.shop-clear-btn {
  background: none;
  border: none;
  padding: 0;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.55);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.shop-clear-btn:hover {
  color: #000;
}

.filter-group {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.filter-group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  text-align: left;
}

.filter-toggle-icon {
  font-size: 18px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.45);
  font-weight: 400;
}

.filter-group.is-collapsed .filter-group-body {
  display: none;
}

.filter-group.is-collapsed .filter-toggle-icon::before {
  content: '+';
}

.filter-group:not(.is-collapsed) .filter-toggle-icon::before {
  content: '−';
}

.filter-group.is-collapsed .filter-toggle-icon {
  font-size: 0;
}

.filter-group.is-collapsed .filter-toggle-icon::before {
  font-size: 18px;
}

.filter-group:not(.is-collapsed) .filter-toggle-icon {
  font-size: 0;
}

.filter-group:not(.is-collapsed) .filter-toggle-icon::before {
  font-size: 18px;
}

.filter-group-body {
  padding-bottom: 20px;
}

.filter-radio-list,
.filter-check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-radio,
.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.4;
}

.filter-radio input,
.filter-check input {
  width: 16px;
  height: 16px;
  margin: 0;
  flex-shrink: 0;
  accent-color: #000;
  cursor: pointer;
}

.filter-check-list.filter-list--truncate:not(.is-expanded) .filter-check:nth-child(n+5) {
  display: none;
}

.filter-show-more {
  margin-top: 10px;
  padding: 0;
  background: none;
  border: none;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.55);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.filter-show-more:hover {
  color: #000;
}

.filter-color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-color-swatch {
  position: relative;
  width: 28px;
  height: 28px;
  margin: 0;
  cursor: pointer;
}

.filter-color-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.filter-color-circle {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.filter-color-swatch:hover .filter-color-circle,
.filter-color-swatch.is-selected .filter-color-circle {
  transform: scale(1.05);
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px #000;
}

/* Price range slider */
.price-slider-wrap {
  position: relative;
  height: 24px;
  margin-bottom: 16px;
}

.price-slider-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(0, 0, 0, 0.12);
  transform: translateY(-50%);
  border-radius: 2px;
}

.price-slider-fill {
  position: absolute;
  top: 0;
  height: 100%;
  background: #000;
  border-radius: 2px;
}

.price-range {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
  transform: translateY(-50%);
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}

.price-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #000;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.price-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #000;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.price-range::-webkit-slider-runnable-track {
  background: transparent;
}

.price-range::-moz-range-track {
  background: transparent;
}

.price-range-max {
  z-index: 2;
}

.price-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-input {
  flex: 1;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  background: #fff;
}

.price-input:focus {
  outline: none;
  border-color: #000;
}

.price-dash {
  color: rgba(0, 0, 0, 0.4);
  font-size: 14px;
}

.shop-products-wrap {
  min-width: 0;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.shop-results-count {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.55);
}

.shop-sort-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.shop-sort-label {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.55);
  white-space: nowrap;
}

.shop-sort-select {
  min-width: 220px;
  padding: 8px 36px 8px 12px;
  border: 1px solid rgba(0, 0, 0, 0.85);
  border-radius: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #000;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23000000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  appearance: none;
  cursor: pointer;
}

.shop-sort-select:focus {
  outline: none;
  border-color: #000;
}

.shop-empty {
  text-align: center;
  padding: 60px 20px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.55);
}

.shop-empty[hidden] {
  display: none;
}

@media screen and (max-width: 991px) {
  .shop-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .shop-filters-mobile-toggle {
    display: inline-flex !important;
  }

  .shop-filters {
    display: none;
    position: static;
    top: auto;
    width: 100%;
    margin: 0 0 8px;
    padding: 16px 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    background: #fff;
  }

  .shop-filters.is-mobile-open {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .shop-layout {
    gap: 24px;
  }

  .shop-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .shop-sort-wrap {
    width: 100%;
    margin-left: 0;
  }

  .shop-sort-select {
    flex: 1;
    width: 100%;
    min-width: 0;
  }

  .filter-group-toggle {
    padding: 14px 0;
  }
}

/* ===== Product Detail Page ===== */
.product-details-section {
  padding-top: 40px;
}

.grid-product-details {
  grid-template-columns: 1fr 1fr;
}

.product-details-image-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-detail-image-item,
.product-image-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.product-gallery-item {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--ghost-white, #f5f5f0);
}

.product-details-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-gallery-item:hover .product-details-image {
  transform: scale(1.06);
}

.product-detail-title {
  opacity: 0;
  transform: translateY(20px);
  animation: productTitleIn 0.8s ease 0.15s forwards;
}

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

.product-details .product-price-compare {
  align-items: baseline;
  gap: 12px;
  margin: 12px 0 0;
}

.product-details .form-select {
  margin-bottom: 20px;
}

.product-attribute-options {
  margin-bottom: 24px;
}

.product-attribute-option + .product-attribute-option {
  margin-top: 20px;
}

.product-attribute-label {
  margin: 0 0 12px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.55);
}

.product-attribute-label strong {
  color: #000;
  font-weight: 600;
}

.product-attribute-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-attribute-swatch {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.product-attribute-swatch:hover,
.product-attribute-swatch.is-selected {
  border-color: #000;
  box-shadow: 0 0 0 1px #000;
}

.product-attribute-swatch.is-selected {
  outline: 1px solid #000;
  outline-offset: 2px;
}

.product-attribute-swatch.is-light {
  background-color: #fff !important;
}

.product-detail-add-to-cart {
  margin-top: 24px;
}

@media screen and (max-width: 991px) {
  .product-detail-add-to-cart {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px;
    padding: 14px 16px;
    grid-column-gap: 0;
    grid-row-gap: 0;
  }

  .product-detail-add-to-cart .quantity-wrap {
    flex: 0 0 auto;
    flex-shrink: 0;
    gap: 10px;
    margin: 0;
  }

  .product-detail-add-to-cart .quantity-wrap label {
    margin: 0;
    white-space: nowrap;
    font-size: 14px;
  }

  .product-detail-add-to-cart .product-quantity,
  .product-detail-add-to-cart .w-commerce-commerceaddtocartquantityinput {
    width: 52px;
    min-width: 52px;
    height: 38px;
    margin: 0;
  }

  .product-detail-add-to-cart .product-cart-button,
  .product-detail-add-to-cart .w-commerce-commerceaddtocartbutton {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 12px 16px;
    font-size: 14px;
    white-space: nowrap;
  }
}

@media screen and (max-width: 479px) {
  .product-detail-add-to-cart {
    gap: 10px;
    padding: 12px 14px;
  }

  .product-detail-add-to-cart .quantity-wrap {
    gap: 8px;
  }

  .product-detail-add-to-cart .quantity-wrap label {
    font-size: 13px;
  }

  .product-detail-add-to-cart .product-cart-button,
  .product-detail-add-to-cart .w-commerce-commerceaddtocartbutton {
    padding: 11px 12px;
    font-size: 13px;
  }
}

.product-tab-pane {
  animation: tabFadeIn 0.35s ease;
}

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

.product-review-item {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-review-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.product-review-empty {
  padding: 24px 0;
  font-family: Inter, sans-serif;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.55);
}

.product-out-of-stock {
  margin: 0 0 16px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #b42318;
}

.product-policy-content h6 {
  margin: 20px 0 8px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.product-policy-content h6:first-child {
  margin-top: 0;
}

.related-product-item {
  opacity: 0;
  transform: translateY(24px);
}

.related-product-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Custom lightbox */
.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.product-lightbox[hidden] {
  display: none !important;
}

body.lightbox-open {
  overflow: hidden;
}

.product-lightbox-image {
  max-width: min(90vw, 900px);
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  animation: lightboxIn 0.35s ease;
}

@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.product-lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
}

.product-lightbox-close:hover {
  opacity: 1;
}

.product-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}

.product-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

.product-lightbox-prev { left: 24px; }
.product-lightbox-next { right: 24px; }

.product-cart-button {
  flex: 1;
  min-width: 160px;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.product-cart-button:hover:not(:disabled) {
  opacity: 0.88;
  transform: translateY(-1px);
}

.product-cart-button:disabled {
  opacity: 0.7;
  cursor: wait;
}

@media screen and (max-width: 991px) {
  .grid-product-details {
    grid-template-columns: 1fr;
  }

  .product-details-section {
    padding-top: 24px;
  }
}

@media screen and (max-width: 767px) {
  .product-detail-image-item,
  .product-image-list {
    gap: 10px;
  }

  .product-lightbox {
    padding: 20px;
  }

  .product-lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .product-lightbox-prev { left: 10px; }
  .product-lightbox-next { right: 10px; }
}

/* ===== Global Cart Drawer ===== */
.cart-drawer {
  display: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.cart-drawer.is-open {
  display: flex;
  opacity: 1;
}

.cart-drawer-panel {
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden !important;
}

.cart-drawer .w-commerce-commercecartcontainer {
  overflow: hidden !important;
}

.cart-drawer .w-commerce-commercecartformwrapper {
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.cart-drawer .w-commerce-commercecartform {
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.cart-drawer .w-commerce-commercecartlist {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  overscroll-behavior: contain;
  scrollbar-gutter: auto;
}

.cart-drawer .w-commerce-commercecartlist:not(:empty) {
  overflow-y: auto;
}

.cart-drawer .w-commerce-commercecartlist::-webkit-scrollbar {
  width: 5px;
}

.cart-drawer .w-commerce-commercecartlist::-webkit-scrollbar-track {
  background: transparent;
}

.cart-drawer .w-commerce-commercecartlist::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 4px;
}

.cart-drawer .w-commerce-commercecartlist:not(:empty):hover::-webkit-scrollbar-thumb,
.cart-drawer .w-commerce-commercecartlist:not(:empty):active::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.32);
}

@supports (scrollbar-width: thin) {
  .cart-drawer .w-commerce-commercecartlist:not(:empty) {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.22) transparent;
  }
}

.cart-drawer .w-commerce-commercecartfooter {
  flex-shrink: 0;
}

.cart-drawer .w-commerce-commercecartemptystate[hidden],
.cart-drawer .w-commerce-commercecartfooter[hidden] {
  display: none !important;
}

.cart-drawer .w-commerce-commercecartemptystate:not([hidden]) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cart-drawer .w-commerce-commercecartemptystate {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  padding: 48px 24px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  color: #666;
  text-align: center;
}

.cart-drawer.is-open .cart-drawer-panel {
  transform: translateX(0);
}

body.cart-open {
  overflow: hidden;
}

.w-commerce-commercecartheading {
  font-family: Gambarino, sans-serif;
  font-size: 22px;
  font-weight: 400;
}

.cart-item-thumb {
  width: 60px !important;
  height: 60px !important;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.cart-remove-link {
  color: var(--black);
  font-size: 14px;
  text-decoration: underline;
  margin-top: 6px;
  display: inline-block;
}

.cart-remove-link:hover {
  opacity: 0.7;
}

.w-commerce-commercecartcheckoutbutton.dark-button {
  text-align: center;
  display: block;
  width: 100%;
  text-decoration: none;
  border-radius: 10px;
  padding: 14px 20px;
}

.w-commerce-commercecartcloselink img {
  width: 16px;
  height: 16px;
}

.w-commerce-commercecartiteminfo > div:nth-child(2) {
  margin-top: 4px;
  font-size: 14px;
}

/* ===== Blog Page ===== */
.blog-page-title {
  opacity: 0;
  transform: translateY(24px);
  animation: blogTitleIn 0.85s ease 0.1s forwards;
}

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

.blog-card {
  opacity: 0;
  transform: translateY(32px);
}

.blog-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.blog-item {
  color: inherit;
  display: block;
  transition: transform 0.35s ease;
}

.blog-item:hover {
  transform: translateY(-4px);
}

.blog-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.blog-item:hover .blog-image {
  transform: scale(1.06);
}

.blog-image-wrap {
  background-color: var(--ghost-white, #f5f5f0);
}

.blog-content h6 {
  transition: color 0.3s ease;
}

.blog-item:hover .blog-content h6 {
  color: rgba(0, 0, 0, 0.65);
}

.blog-date {
  color: rgba(0, 0, 0, 0.55);
  font-size: 14px;
}

@media screen and (max-width: 991px) {
  .blog-lists {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  .blog-lists {
    grid-template-columns: 1fr;
  }
}

/* ===== FAQs Page ===== */
.faq-page-title {
  opacity: 0;
  transform: translateY(24px);
  animation: blogTitleIn 0.85s ease 0.1s forwards;
}

.faq-section .container {
  max-width: 800px;
}

button.accordion-heading {
  background: none;
  border: none;
  width: 100%;
  padding: 0;
  text-align: left;
  font: inherit;
  color: inherit;
}

.accordion-wrap {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.accordion-wrap.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.accordion-wrap.is-open {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.faq-section .accordion-content {
  height: 0;
  transition: height 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.accordion-wrap .accordion-icon-vr,
.accordion-wrap .accordion-icon-hr {
  transition: opacity 0.28s ease;
}

.accordion-wrap:not(.is-open) .accordion-icon-vr {
  opacity: 1;
}

.accordion-wrap:not(.is-open) .accordion-icon-hr {
  opacity: 0;
}

.accordion-wrap.is-open .accordion-icon-vr {
  opacity: 0;
}

.accordion-wrap.is-open .accordion-icon-hr {
  opacity: 1;
}

.according-icon-wrap {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
}

.according-icon-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-wrap.reveal-stagger {
  transition-delay: 0.1s;
}

.faq-wrap.last.reveal-stagger {
  transition-delay: 0.2s;
}

/* ===== Checkout Page ===== */
.checkout-page-title {
  margin: 0 0 8px;
  font-family: Gambarino, sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  line-height: 1.1;
}

.checkout-page-sub {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 15px;
  color: #666;
}

.checkout-section {
  padding-top: 8px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.checkout-block {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.checkout-block:last-of-type {
  border-bottom: none;
  margin-bottom: 24px;
  padding-bottom: 0;
}

.checkout-block-title {
  margin: 0 0 20px;
  font-family: Gambarino, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}

.checkout-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.checkout-grid:last-child {
  margin-bottom: 0;
}

.checkout-grid--2 {
  grid-template-columns: 1fr 1fr;
}

.checkout-field label {
  display: block;
  margin-bottom: 8px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #333;
}

.checkout-field .req {
  color: #c0392b;
}

.checkout-input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px !important;
  border: 1px solid rgba(0, 0, 0, 0.14) !important;
  border-radius: 8px !important;
  font-family: Inter, sans-serif;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-input:focus {
  border-color: #111 !important;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
  outline: none;
}

.checkout-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkout-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-option:hover {
  border-color: rgba(0, 0, 0, 0.22);
  background: #fafafa;
}

.checkout-option:has(input:checked) {
  border-color: #111;
  background: #f7f5f2;
  box-shadow: 0 0 0 1px #111;
}

.checkout-option input[type="radio"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #111;
  cursor: pointer;
}

.checkout-option-body {
  flex: 1;
  min-width: 0;
}

.checkout-option-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.checkout-option-label {
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #111;
}

.checkout-option-price {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

.checkout-option-badge {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #666;
  background: rgba(0, 0, 0, 0.06);
  padding: 3px 8px;
  border-radius: 4px;
}

.checkout-option-note {
  display: block;
  margin-top: 4px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

.checkout-submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px 24px !important;
  font-size: 15px !important;
  border-radius: 10px !important;
}

.checkout-sidebar {
  position: sticky;
  top: 24px;
}

.checkout-summary {
  padding: 24px;
  background: #f7f5f2;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}

.checkout-summary-title {
  margin: 0 0 20px;
  font-family: Gambarino, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.checkout-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  max-height: 320px;
  overflow-y: auto;
}

.checkout-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkout-item-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  background: #fff;
}

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

.checkout-item-name {
  margin: 0 0 4px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  color: #111;
}

.checkout-item-meta,
.checkout-item-qty {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

.checkout-item-price {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  white-space: nowrap;
}

.checkout-totals {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #444;
}

.checkout-total-row--grand {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 17px;
  font-weight: 600;
  color: #111;
}

.checkout-empty,
.checkout-success {
  text-align: center;
  padding: 64px 24px;
}

.checkout-empty p,
.checkout-success p {
  font-family: Inter, sans-serif;
  font-size: 16px;
  color: #555;
  margin: 0 0 24px;
}

.checkout-success-card {
  max-width: 480px;
  margin: 0 auto;
  padding: 48px 32px;
  background: #f7f5f2;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.checkout-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 28px;
  line-height: 56px;
  font-weight: 600;
}

.checkout-success-card h2 {
  margin: 0 0 12px;
  font-family: Gambarino, sans-serif;
  font-size: 28px;
  font-weight: 400;
}

.checkout-order-id {
  font-size: 15px !important;
}

.checkout-success-note {
  font-size: 14px !important;
  color: #777 !important;
}

/* Order success page */
.order-success-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 48px;
  padding-bottom: 80px;
}

.order-success-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 56px 40px;
  background: #f7f5f2;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
}

.order-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 28px;
  line-height: 56px;
  font-weight: 600;
}

.order-success-title {
  margin: 0 0 12px;
  font-family: Gambarino, sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #111;
  line-height: 1.2;
}

.order-success-message {
  font-family: Inter, sans-serif;
  font-size: 16px;
  color: #555;
  margin: 0 0 16px;
}

.order-success-order-id {
  font-family: Inter, sans-serif;
  font-size: 15px;
  color: #555;
  margin: 0 0 12px;
}

.order-success-order-id strong {
  color: #111;
  font-weight: 600;
}

.order-success-note {
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #777;
  margin: 0 0 28px;
}

.order-success-btn {
  display: inline-block;
  min-width: 200px;
}

@media screen and (max-width: 767px) {
  .order-success-card {
    padding: 40px 24px;
  }

  .order-success-title {
    font-size: 26px;
  }
}

@media screen and (max-width: 991px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-sidebar {
    position: static;
    order: -1;
  }

  .checkout-grid--2 {
    grid-template-columns: 1fr;
  }
}

/* Contact page */
.contact-page-title {
  margin: 0;
  text-align: center;
  font-family: Gambarino, sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
}

.contact-page-lead {
  max-width: 560px;
  margin: 16px auto 0;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #666;
}

/* Privacy policy page */
.policy-section {
  padding-top: 0;
}

.policy-content-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 44px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.policy-page-content {
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #444;
}

.policy-page-content h6 {
  margin: 28px 0 10px;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

.policy-page-content h6:first-child {
  margin-top: 0;
}

.policy-page-content p {
  margin: 0 0 16px;
}

.policy-page-content a {
  color: #111;
  text-decoration: underline;
}

.policy-page-empty {
  margin: 0;
  text-align: center;
  color: #666;
}

@media (max-width: 767px) {
  .policy-content-card {
    padding: 28px 22px;
  }
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: stretch;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  background: #111;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.contact-aside__visual {
  min-height: 220px;
  background-image: url("/assets/img/63f365e82d342c7b94198784_about-01.jpg");
  background-size: cover;
  background-position: center;
}

.contact-aside__body {
  flex: 1;
  padding: 32px 36px 36px;
  color: #fff;
}

.contact-aside__eyebrow {
  margin: 0 0 8px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.contact-aside__heading {
  margin: 0 0 28px;
  color: #fff !important;
  font-family: Gambarino, sans-serif;
  font-size: 28px !important;
  font-weight: 400;
  line-height: 1.2 !important;
}

.contact-aside .contact-info-item p {
  color: #fff;
}

.contact-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.contact-info-icon img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.contact-info-icon--clock {
  color: #fff;
}

.contact-info-item strong {
  display: block;
  margin-bottom: 4px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.contact-info-item p {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

.contact-info-item a {
  color: #fff;
  text-decoration: none;
}

.contact-info-item a:hover {
  text-decoration: underline;
}

.contact-aside__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.contact-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.contact-action-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.contact-action-btn--whatsapp {
  background: #fff;
  border-color: #fff;
  color: #111;
}

.contact-action-btn--whatsapp:hover {
  background: #f2f2f2;
}

.contact-form-panel {
  padding: 40px 44px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.contact-form-panel__title {
  margin: 0 0 8px;
  font-family: Gambarino, sans-serif;
  font-size: 32px !important;
  font-weight: 400;
  line-height: 1.2 !important;
  color: #111;
}

.contact-form-panel__subtitle {
  margin: 0 0 28px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.contact-form {
  width: 100%;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.contact-form-panel .contact-field,
.contact-form-panel .checkout-field {
  margin-bottom: 18px;
}

.contact-form__grid .contact-field,
.contact-form__grid .checkout-field {
  margin-bottom: 0;
}

.contact-form-panel .contact-field label,
.contact-form-panel .checkout-field label {
  display: block;
  margin-bottom: 8px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #333;
}

.contact-field .req,
.contact-form-panel .checkout-field .req {
  color: #c0392b;
}

.contact-form-panel .form-input,
.contact-form-panel .form-select,
.contact-form-panel .w-input,
.contact-form-panel .w-select,
.contact-form-panel .contact-input,
.contact-form-panel .checkout-input {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 0 !important;
  height: auto !important;
  min-height: 48px;
  padding: 12px 16px !important;
  border: 1px solid rgba(0, 0, 0, 0.14) !important;
  border-radius: 8px !important;
  background-color: #fff !important;
  color: #111 !important;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-panel .form-input::placeholder,
.contact-form-panel .w-input::placeholder,
.contact-form-panel textarea::placeholder {
  color: #999 !important;
  font-size: 14px;
}

.contact-form-panel .contact-select,
.contact-form-panel select.w-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  padding-right: 40px !important;
}

.contact-form-panel .contact-textarea,
.contact-form-panel textarea.w-input {
  min-height: 140px;
  height: auto !important;
  padding-top: 14px !important;
  padding-bottom: 14px !important;
  border-radius: 10px !important;
  resize: vertical;
}

.contact-form-panel .form-input:focus,
.contact-form-panel .form-select:focus,
.contact-form-panel .w-input:focus,
.contact-form-panel .w-select:focus,
.contact-form-panel .contact-input:focus,
.contact-form-panel .checkout-input:focus {
  border-color: #111 !important;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
  outline: none;
}

.contact-form-panel .contact-submit.dark-button {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 14px 24px !important;
  border: none;
  border-radius: 10px !important;
  background-color: #111 !important;
  color: #fff !important;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.contact-form-panel .contact-submit.dark-button:hover {
  transform: none;
  background-color: #333 !important;
}

.contact-form__success {
  margin: 16px 0 0;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #2d6a4f;
}

.contact-form__success[hidden] {
  display: none !important;
}

.subscribe-form__success {
  margin: 12px 0 0;
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: #2d6a4f;
}

.subscribe-form__success[hidden] {
  display: none !important;
}

.subscribe-form__error {
  margin: 12px 0 0;
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: #c0392b;
}

.subscribe-form__error[hidden] {
  display: none !important;
}

.contact-float-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-float-whatsapp:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@media screen and (max-width: 991px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-aside__visual {
    min-height: 180px;
  }

  .contact-aside__body,
  .contact-form-panel {
    padding: 28px 24px 32px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Auth Modal ===== */
body.auth-modal-open {
  overflow: hidden;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.auth-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.auth-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.auth-modal__panel {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: #fff;
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  z-index: 1;
}

.auth-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.auth-modal__close img {
  width: 18px;
  height: 18px;
}

.auth-modal__alert {
  margin-bottom: 16px;
  padding: 12px 14px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  border-radius: 4px;
}

.auth-modal__alert--error {
  background: #fdecea;
  color: #c0392b;
  border: 1px solid #f5c6cb;
}

.auth-modal__alert--success {
  background: #edf7ed;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.auth-panel {
  display: none;
}

.auth-panel.is-active {
  display: block;
}

.auth-panel__title {
  margin: 0 0 8px;
  font-family: Gambarino, sans-serif;
  font-size: clamp(26px, 4vw, 32px);
  font-weight: 400;
  line-height: 1.1;
}

.auth-panel__subtitle {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 15px;
  color: #666;
}

.auth-panel__header {
  margin-bottom: 22px;
  padding-right: 28px;
}

.auth-form .auth-field {
  margin-bottom: 14px;
}

.auth-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}

.auth-grid--2 {
  grid-template-columns: 1fr 1fr;
}

.auth-form__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.auth-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.auth-link {
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #111;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-link:hover {
  opacity: 0.75;
}

.auth-submit {
  width: 100%;
}

.auth-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.auth-switch {
  margin: 20px 0 0;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #666;
}

.auth-field-error {
  margin: 6px 0 0;
  font-family: Inter, sans-serif;
  font-size: 12px;
  color: #c0392b;
}

.checkout-input.is-invalid {
  border-color: #c0392b;
}

.auth-account-info {
  margin-bottom: 20px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

.auth-account-info p {
  margin: 0 0 8px;
}

.auth-section {
  padding: clamp(48px, 8vw, 96px) 0;
}

.auth-card {
  max-width: 480px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 40px);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.auth-card__title {
  margin: 0 0 8px;
  font-family: Gambarino, sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 400;
}

.auth-card__subtitle {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 15px;
  color: #666;
}

.auth-card__header {
  margin-bottom: 24px;
}

.auth-alert {
  margin-bottom: 20px;
  padding: 12px 16px;
  border-radius: 4px;
  font-family: Inter, sans-serif;
  font-size: 14px;
}

.auth-alert--error {
  background: #fdecea;
  color: #c0392b;
  border: 1px solid #f5c6cb;
}

@media (max-width: 767px) {
  .auth-modal__panel {
    padding: 24px 20px;
  }
}

/* ===== Account Page ===== */
.page-account .site-header--overlay {
  position: relative;
}

.account-section {
  padding-top: 8px;
}

.account-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

.account-sidebar {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 12px;
}

.account-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.account-nav__link {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: none;
  background: transparent;
  text-align: left;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.account-nav__link:hover,
.account-nav__link.is-active {
  background: #f5f5f5;
  color: #000;
}

.account-nav__link--logout {
  color: #c0392b;
}

.account-nav__logout-form {
  margin: 0;
}

.account-content {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: clamp(24px, 4vw, 36px);
}

.account-panel__header {
  margin-bottom: 24px;
}

.account-panel__header--row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.account-panel__title {
  margin: 0 0 8px;
  font-family: Gambarino, sans-serif;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 400;
}

.account-panel__subtitle {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 15px;
  color: #666;
}

.account-form__submit {
  min-width: 160px;
}

.account-form__submit--inline {
  width: auto;
}

.account-form__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.account-textarea {
  min-height: 96px;
  resize: vertical;
}

.account-default-check {
  margin: 8px 0 20px;
}

.account-orders {
  display: grid;
  gap: 20px;
}

.account-order-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px;
}

.account-order-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.account-order-card__id {
  margin: 0 0 4px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #111;
}

.account-order-card__date {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: #666;
}

.account-order-card__status {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.account-order-card__status--delivered {
  background: #edf7ed;
  color: #2e7d32;
}

.account-order-card__status--processing {
  background: #fff8e6;
  color: #9a6700;
}

.account-order-card__status--pending {
  background: #f3f4f6;
  color: #555;
}

.account-order-card__status--shipped {
  background: #e8f4fd;
  color: #1565c0;
}

.account-order-card__status--cancelled {
  background: #fdecea;
  color: #c62828;
}

.account-order-card__items {
  display: grid;
  gap: 14px;
}

.account-order-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.account-order-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  background: #f5f5f5;
}

.account-order-item__info h4 {
  margin: 0 0 4px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.account-order-item__info p {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: #666;
}

.account-order-item__price {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.account-order-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-family: Inter, sans-serif;
  font-size: 14px;
}

.account-panel__header--row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.account-order-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
  gap: 24px;
  margin-top: 8px;
}

.account-order-detail-block h3 {
  margin: 0 0 12px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #111;
}

.account-order-detail-side {
  display: grid;
  gap: 20px;
  align-content: start;
}

.account-order-summary-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.account-order-summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #555;
}

.account-order-summary-list li.is-total {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 600;
  color: #111;
}

.account-order-address,
.account-order-meta {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.account-order-detail-actions {
  margin-top: 24px;
}

.account-link-btn {
  border: none;
  background: none;
  padding: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.account-link-btn--danger {
  color: #c0392b;
}

.account-address-list {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.account-address-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 18px;
}

.account-address-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.account-address-card__name {
  margin: 0 0 6px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.account-address-card__badge {
  display: inline-flex;
  padding: 4px 8px;
  background: #111;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.account-address-card__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.account-address-card__line {
  margin: 0 0 4px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.account-address-form-wrap {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.account-address-form__title {
  margin: 0 0 18px;
  font-family: Gambarino, sans-serif;
  font-size: 22px;
  font-weight: 400;
}

.account-empty {
  padding: 24px;
  background: #fafafa;
  border: 1px dashed rgba(0, 0, 0, 0.12);
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #666;
}

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

  .account-nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .auth-grid--2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .account-nav {
    grid-template-columns: 1fr;
  }

  .account-order-detail-grid {
    grid-template-columns: 1fr;
  }

  .account-panel__header--row {
    flex-direction: column;
  }

  .account-order-item {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .account-order-item__price {
    grid-column: 2;
  }
}

/* Toast notifications — Alakh Jewellery theme */
#toast-container {
  pointer-events: none;
  z-index: 1000000;
}

#toast-container.toast-bottom-right {
  right: 24px;
  bottom: 24px;
}

#toast-container.toast-top-right {
  top: 24px;
  right: 24px;
}

#toast-container > div {
  position: relative;
  width: min(380px, calc(100vw - 32px));
  padding: 16px 44px 16px 56px;
  margin: 0 0 12px;
  border-radius: 12px;
  opacity: 1;
  color: var(--black, #111);
  background-color: var(--white, #fff) !important;
  background-image: none !important;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  font-family: Inter, sans-serif;
  overflow: hidden;
  pointer-events: auto;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#toast-container > div:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.14);
  cursor: default;
}

#toast-container > div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--black, #000);
}

#toast-container > .toast-success::before {
  background: #2d6a4f;
}

#toast-container > .toast-error::before {
  background: #b42318;
}

#toast-container > .toast-warning::before {
  background: #b8860b;
}

#toast-container > .toast-info::before {
  background: var(--black, #000);
}

#toast-container > div::after {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
}

#toast-container > .toast-success::after {
  content: "✓";
  background: #edf7f1;
  color: #2d6a4f;
}

#toast-container > .toast-error::after {
  content: "!";
  background: #fdecec;
  color: #b42318;
}

#toast-container > .toast-warning::after {
  content: "!";
  background: #fff8e8;
  color: #b8860b;
}

#toast-container > .toast-info::after {
  content: "i";
  background: var(--ghost-white, #f4f5f9);
  color: var(--black, #111);
  font-style: italic;
  font-family: Gambarino, Georgia, serif;
}

#toast-container .toast-title {
  font-family: Gambarino, Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--black, #111);
  margin-bottom: 4px;
}

#toast-container .toast-message {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.72);
  word-break: break-word;
}

#toast-container .toast-message a,
#toast-container .toast-message label {
  color: var(--black, #111);
  text-decoration: underline;
}

#toast-container > .toast-close-button {
  position: absolute;
  top: 10px;
  right: 12px;
  float: none;
  width: 24px;
  height: 24px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(0, 0, 0, 0.35);
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  opacity: 1;
  text-shadow: none;
}

#toast-container > .toast-close-button:hover {
  color: var(--black, #111);
}

#toast-container > div .toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  opacity: 0.35;
  background: var(--black, #000);
}

#toast-container > .toast-success .toast-progress {
  background: #2d6a4f;
}

#toast-container > .toast-error .toast-progress {
  background: #b42318;
}

#toast-container > .toast-warning .toast-progress {
  background: #b8860b;
}

@media (max-width: 767px) {
  #toast-container.toast-bottom-right,
  #toast-container.toast-top-right {
    right: 12px;
    left: 12px;
    width: auto;
  }

  #toast-container > div {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== Site-wide Responsive Fixes (mobile/tablet only) ===== */
@media screen and (max-width: 991px) {
  .container-full.w-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1,
  .heading-h1,
  .about-content h1,
  .contact-page-title,
  .checkout-page-title {
    font-size: clamp(32px, 7vw, 48px) !important;
    line-height: 1.15 !important;
  }

  h2,
  .heading-h2,
  .testimonial-description,
  .section-title h2 {
    font-size: clamp(24px, 5.5vw, 36px) !important;
    line-height: 1.2 !important;
  }

  h3,
  .heading-h3,
  .product-details-section .heading-h3 {
    font-size: clamp(22px, 5vw, 32px) !important;
    line-height: 1.25 !important;
  }

  .grid-product-feature {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px 16px;
  }

  .grid-feature,
  .feature-product-info {
    height: auto !important;
    min-height: 0;
  }

  .product-image-wrap {
    padding: 20px;
  }

  .subscribe-input-group {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .subscribe-input-group .subscribe-input,
  .subscribe-input-group .form-input {
    width: 100%;
    border-radius: 5px;
  }

  .subscribe-input-group .subscribe-button,
  .subscribe-input-group .w-button {
    width: 100%;
    border-radius: 5px;
  }

  .site-header .right-side-nav .search-link {
    display: inline-flex !important;
  }

  .insta-marquee-wrap,
  .insta-section {
    max-width: 100%;
    overflow: hidden;
  }

  body.cart-open .contact-float-whatsapp,
  body.search-drawer-open .contact-float-whatsapp,
  body.auth-modal-open .contact-float-whatsapp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .product-tab-menu {
    flex-wrap: wrap;
    gap: 8px;
  }

  .product-tab-link {
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
  }

  .product-image-wrap {
    padding: 16px;
  }

  .product-image-wrap .product-image {
    max-height: 180px;
  }

  .checkout-item {
    flex-wrap: wrap;
    gap: 8px;
  }

  .checkout-item-price {
    white-space: normal;
    margin-left: auto;
  }

  .search-drawer-header,
  .search-drawer-body {
    padding-left: 16px;
    padding-right: 16px;
  }

  .search-drawer-input-wrap {
    margin: 0 16px 16px;
    padding: 0;
  }

  .search-drawer-input-icon {
    left: 20px;
  }

  .search-drawer-input {
    padding: 14px 88px 14px 50px;
    font-size: 16px;
  }

  .search-drawer-clear {
    right: 18px;
    padding: 6px 10px;
  }

  .search-drawer-title {
    font-size: 24px;
  }

  .contact-float-whatsapp {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    width: 48px;
    height: 48px;
  }

  .checkout-layout {
    gap: 24px;
  }

  .checkout-grid--2 {
    grid-template-columns: 1fr;
  }

  .shop-layout {
    gap: 20px;
  }

  .shop-filters {
    width: 100%;
  }

  .grid-product-details {
    grid-template-columns: 1fr !important;
  }

  .product-gallery-item {
    min-width: 0;
  }

  .related-product-item {
    min-width: 0;
  }

  .account-panel,
  .account-sidebar {
    min-width: 0;
  }

  .policy-content-card {
    padding: 28px 22px;
  }

  .order-success-card,
  .checkout-summary {
    min-width: 0;
  }
}

@media screen and (max-width: 479px) {
  .container-full.w-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  h4,
  .heading-h4 {
    font-size: clamp(18px, 4.5vw, 24px) !important;
  }

  h5,
  .heading-h5 {
    font-size: clamp(16px, 4vw, 20px) !important;
  }

  .grid-product-feature {
    grid-template-columns: 1fr !important;
  }

  .cart-drawer .w-commerce-commercecartcontainer,
  .cart-drawer-panel {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
  }

  .site-header .right-side-nav .search-link {
    display: inline-flex !important;
  }

  .product-detail-add-to-cart .product-cart-button,
  .product-detail-add-to-cart .w-commerce-commerceaddtocartbutton {
    font-size: 12px;
    padding: 10px 10px;
  }

  .home-video-hero__title {
    font-size: clamp(28px, 8vw, 40px);
  }

  .mega-menu__mobile-cards {
    grid-template-columns: 1fr;
  }

  .search-drawer-input-wrap {
    margin: 0 12px 14px;
  }

  .search-drawer-input-icon {
    left: 18px;
  }

  .search-drawer-input {
    padding: 13px 82px 13px 46px;
    font-size: 16px;
  }

  .search-drawer-clear {
    right: 16px;
    padding: 6px 8px;
    font-size: 13px;
  }
}

/* Featured products left banner — image handled in HTML */
.feature-item {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.feature-item__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.feature-item__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.feature-item .feature-product-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .feature-item {
    min-height: 420px;
  }
}

@media screen and (max-width: 767px) {
  .feature-item {
    min-height: 360px;
  }
}

@media screen and (max-width: 479px) {
  .feature-item {
    min-height: 400px;
  }
}

.product-breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}

.product-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.product-breadcrumb a:hover {
  color: #111;
  text-decoration: underline;
}

.product-breadcrumb [aria-current="page"] {
  color: #111;
}
