/* =========================================================
   GOLDEN HOUSE NAVBAR
========================================================= */

:root {
  --gh-white: #ffffff;
  --gh-black: #111111;
  --gh-text: #343434;
  --gh-muted: #6e6e6e;
  --gh-gold: #bd8a34;
  --gh-gold-dark: #93671f;
  --gh-border: #e8e3dc;

  --gh-navbar-height: 104px;
  --gh-announcement-height: 40px;

  --gh-heading-font: "Playfair Display", serif;
  --gh-body-font: "DM Sans", sans-serif;
}


/* =========================================================
   NAVBAR RESET
========================================================= */

.gh-site-header *,
.gh-main-hero * {
  box-sizing: border-box;
}

.gh-site-header a,
.gh-main-hero a {
  color: inherit;
  text-decoration: none;
}

.gh-menu-button {
  margin: 0;
  padding: 0;
  border: 0;

  font: inherit;

  cursor: pointer;
}

body {
  margin: 0;
  padding-top: calc(var(--gh-announcement-height) + var(--gh-navbar-height));
}

body.menu-open {
  overflow: hidden;
}


/* =========================================================
   FIXED HEADER
========================================================= */

.gh-site-header {
  width: 100%;
  height: calc(var(--gh-announcement-height) + var(--gh-navbar-height));

  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;

  display: flex;
  flex-direction: column;

  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);

  font-family: var(--gh-body-font);

  transition:
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.gh-site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);

  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.07);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}


/* =========================================================
   ANNOUNCEMENT BAR
========================================================= */

.gh-announcement-bar {
  width: 100%;
  height: var(--gh-announcement-height);
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: var(--gh-black);
  color: var(--gh-white);
}

.gh-announcement-bar i {
  color: var(--gh-gold);
  font-size: 0.8em;
}

.gh-announcement-bar span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gh-announcement-bar strong {
  color: var(--gh-gold);
  font-weight: 700;
}


/* =========================================================
   DESKTOP NAVBAR
========================================================= */

.gh-navbar {
  width: min(100%, 1500px);
  height: var(--gh-navbar-height);
  flex-shrink: 0;
  margin: 0 auto;
  padding: 0 5vw;

  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  gap: 38px;
}


/* =========================================================
   NAVBAR LOGO
========================================================= */

.gh-nav-logo {
  width: fit-content;

  display: flex;
  flex-direction: column;
  align-items: center;

  color: var(--gh-black);
}

.gh-nav-logo-name {
  font-family: var(--gh-heading-font);
  font-size: clamp(1.85rem, 2.2vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.95;
  white-space: nowrap;
}

.gh-nav-logo-bottom {
  width: 100%;
  margin-top: 11px;

  display: grid;
  grid-template-columns: 37px auto 37px;
  align-items: center;
  column-gap: 13px;
}

.gh-nav-logo-bottom i {
  width: 100%;
  height: 1px;

  display: block;

  background: var(--gh-gold);
}

.gh-nav-logo-bottom span {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  line-height: 1;
  text-indent: 0.42em;
  text-transform: uppercase;
  white-space: nowrap;
}


/* =========================================================
   DESKTOP NAVIGATION LINKS
========================================================= */

.gh-desktop-nav {
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(31px, 3.4vw, 58px);
}

.gh-desktop-nav a {
  height: 100%;

  position: relative;

  color: var(--gh-black);

  display: flex;
  align-items: center;

  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;

  transition: color 0.25s ease;
}

.gh-desktop-nav a:hover,
.gh-desktop-nav a.active {
  color: var(--gh-gold-dark);
}


/* =========================================================
   DESKTOP NAVIGATION ACTIONS
========================================================= */

.gh-nav-actions {
  justify-self: end;

  display: flex;
  align-items: center;
  gap: 10px;
}

.gh-nav-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;

  position: relative;

  color: var(--gh-black);

  display: grid;
  place-items: center;

  font-size: 1.05rem;

  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.gh-nav-icon:hover {
  background: var(--gh-black);
  color: var(--gh-white);
}

.gh-cart-icon {
  width: 1em;
  height: 1em;

  display: block;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gh-nav-cart-count {
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;

  position: absolute;
  top: 0;
  right: -1px;

  background: var(--gh-gold);
  color: var(--gh-white);

  display: grid;
  place-items: center;

  font-size: 0.56rem;
  font-weight: 700;
}


/* =========================================================
   MOBILE ELEMENTS HIDDEN ON DESKTOP
========================================================= */

.gh-menu-button,
.gh-mobile-menu {
  display: none;
}


/* =========================================================
   TABLET AND MOBILE NAVBAR
========================================================= */

@media (max-width: 900px) {
  :root {
    --gh-navbar-height: 86px;
    --gh-announcement-height: 36px;
  }

  .gh-navbar {
    padding: 0 24px;

    grid-template-columns: 50px 1fr 50px;
    gap: 0;
  }


  /* Hamburger */

  .gh-menu-button {
    width: 44px;
    height: 44px;

    position: relative;
    z-index: 20;

    background: transparent;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
  }

  .gh-menu-button span {
    height: 2px;

    display: block;

    background: var(--gh-black);

    transition:
      width 0.35s ease,
      opacity 0.25s ease,
      transform 0.35s ease;
  }

  .gh-menu-button span:nth-child(1) {
    width: 28px;
  }

  .gh-menu-button span:nth-child(2) {
    width: 21px;
  }

  .gh-menu-button span:nth-child(3) {
    width: 28px;
  }

  .gh-menu-button:hover span:nth-child(2) {
    width: 28px;
  }

  .gh-menu-button.active span:nth-child(1) {
    width: 27px;

    transform: translateY(8px) rotate(45deg);
  }

  .gh-menu-button.active span:nth-child(2) {
    opacity: 0;

    transform: translateX(-8px);
  }

  .gh-menu-button.active span:nth-child(3) {
    width: 27px;

    transform: translateY(-8px) rotate(-45deg);
  }


  /* Centred Mobile Logo */

  .gh-nav-logo {
    max-width: calc(100vw - 145px);

    position: relative;
    z-index: 20;

    justify-self: center;
  }

  .gh-nav-logo-name {
    font-size: 1.75rem;
  }

  .gh-nav-logo-bottom {
    margin-top: 8px;

    grid-template-columns: 26px auto 26px;
    column-gap: 9px;
  }

  .gh-nav-logo-bottom span {
    font-size: 0.42rem;
    letter-spacing: 0.34em;
    text-indent: 0.34em;
  }


  /* Hide Desktop Text Links */

  .gh-desktop-nav {
    display: none;
  }


  /* Keep Only The Cart Icon In The Mobile Bar */

  .gh-nav-actions {
    justify-self: end;
  }

  .gh-nav-actions .gh-nav-cart {
    display: none;
  }


  /* Full-Screen Mobile Menu */

  .gh-mobile-menu {
    width: 100%;
    height: calc(100dvh - var(--gh-announcement-height) - var(--gh-navbar-height));

    position: fixed;
    top: calc(var(--gh-announcement-height) + var(--gh-navbar-height));
    left: 0;
    z-index: 4990;

    background: var(--gh-white);

    display: block;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateX(-100%);

    transition:
      transform 0.48s cubic-bezier(0.77, 0, 0.18, 1),
      opacity 0.28s ease,
      visibility 0.48s ease;

    overflow: hidden;
  }

  .gh-mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateX(0);
  }

  .gh-mobile-menu::after {
    content: "";

    width: 240px;
    height: 240px;
    border-radius: 50%;

    position: absolute;
    right: -130px;
    bottom: -110px;

    border: 1px solid rgba(189, 138, 52, 0.25);

    pointer-events: none;
  }

  .gh-mobile-menu-inner {
    width: min(100%, 650px);
    height: 100%;
    margin: 0 auto;
    padding: 36px 28px 22px;

    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
  }

  .gh-mobile-links {
    min-height: 0;

    display: flex;
    flex-direction: column;

    flex: 1;
  }

  .gh-mobile-links a {
    border-bottom: 1px solid var(--gh-border);

    color: var(--gh-black);

    display: flex;
    align-items: center;
    gap: 16px;

    font-family: var(--gh-heading-font);
    font-size: clamp(1.1rem, 4.2vh, 1.85rem);
    font-weight: 500;
    letter-spacing: -0.035em;

    opacity: 0;

    transform: translateX(-25px);

    transition:
      color 0.25s ease,
      opacity 0.42s ease,
      transform 0.42s ease;

    flex: 1;
    min-height: 0;
  }

  .gh-mobile-menu.open .gh-mobile-links a {
    opacity: 1;

    transform: translateX(0);
  }

  .gh-mobile-menu.open .gh-mobile-links a:nth-child(1) {
    transition-delay: 0.08s;
  }

  .gh-mobile-menu.open .gh-mobile-links a:nth-child(2) {
    transition-delay: 0.13s;
  }

  .gh-mobile-menu.open .gh-mobile-links a:nth-child(3) {
    transition-delay: 0.18s;
  }

  .gh-mobile-menu.open .gh-mobile-links a:nth-child(4) {
    transition-delay: 0.23s;
  }

  .gh-mobile-menu.open .gh-mobile-links a:nth-child(5) {
    transition-delay: 0.28s;
  }

  .gh-mobile-menu.open .gh-mobile-links a:nth-child(6) {
    transition-delay: 0.33s;
  }

  .gh-mobile-links a span {
    width: 25px;

    color: var(--gh-gold);

    font-family: var(--gh-body-font);
    font-size: 0.59rem;
    font-weight: 700;
    letter-spacing: 0.1em;
  }

  .gh-mobile-links a:hover,
  .gh-mobile-links a.active {
    color: var(--gh-gold-dark);
  }


  /* Mobile Login and Cart */

  .gh-mobile-account-links {
    margin-top: 18px;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .gh-mobile-account-links a {
    min-height: 50px;
    padding: 0 16px;

    border: 1px solid var(--gh-black);
    color: var(--gh-black);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;

    transition:
      background-color 0.25s ease,
      color 0.25s ease;
  }

  .gh-mobile-account-links a:hover {
    background: var(--gh-black);
    color: var(--gh-white);
  }

  .gh-mobile-account-links strong {
    width: 21px;
    height: 21px;
    border-radius: 50%;

    background: var(--gh-gold);
    color: var(--gh-white);

    display: grid;
    place-items: center;

    font-size: 0.56rem;
  }

  .gh-mobile-menu-message {
    margin-top: 16px;

    color: var(--gh-gold-dark);

    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.19em;
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
  }
}


/* =========================================================
   MOBILE NAVBAR
========================================================= */

@media (max-width: 650px) {
  :root {
    --gh-navbar-height: 78px;
    --gh-announcement-height: 32px;
  }

  .gh-announcement-bar span {
    font-size: 0.6rem;
    letter-spacing: 0.04em;
  }

  .gh-navbar {
    padding: 0 18px;

    grid-template-columns: 45px 1fr 45px;
  }

  .gh-nav-logo-name {
    font-size: 1.48rem;
  }

  .gh-nav-logo-bottom {
    margin-top: 7px;

    grid-template-columns: 21px auto 21px;
    column-gap: 7px;
  }

  .gh-nav-logo-bottom span {
    font-size: 0.35rem;
    letter-spacing: 0.28em;
    text-indent: 0.28em;
  }

  .gh-mobile-menu-inner {
    padding: 28px 20px 18px;
  }

  .gh-mobile-links a {
    font-size: clamp(0.92rem, 3.8vh, 1.6rem);
  }

  .gh-mobile-account-links {
    margin-top: 14px;

    gap: 10px;
  }

  .gh-mobile-account-links a {
    min-height: 46px;
    padding: 0 14px;
  }
}

/* =========================================================
   FIX MOBILE LOGO ALIGNMENT
========================================================= */

@media (max-width: 900px) {

  .gh-nav-logo {
    width: max-content;
    max-width: none;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    justify-self: center;
    text-align: center;
  }

  .gh-nav-logo-name {
    width: max-content;

    display: block;

    font-size: 1.75rem;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
  }

  .gh-nav-logo-bottom {
    width: 100%;
    margin-top: 7px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 9px;
  }

  .gh-nav-logo-bottom::before,
  .gh-nav-logo-bottom::after {
    content: "";

    width: 100%;
    height: 1px;

    display: block;

    background: var(--gh-gold);
  }

  .gh-nav-logo-bottom span {
    margin: 0;
    padding: 0;

    display: block;

    font-size: 0.42rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.32em;
    text-indent: 0.32em;
    white-space: nowrap;
    text-align: center;
  }

  /* Hide any existing line elements inside the logo */
  .gh-nav-logo-bottom i,
  .gh-nav-logo-bottom b {
    display: none;
  }
}


/* =========================================================
   SMALL MOBILE LOGO
========================================================= */

@media (max-width: 650px) {

  .gh-nav-logo-name {
    font-size: 1.48rem;
  }

  .gh-nav-logo-bottom {
    margin-top: 6px;
    column-gap: 7px;
  }

  .gh-nav-logo-bottom span {
    font-size: 0.34rem;
    letter-spacing: 0.28em;
    text-indent: 0.28em;
  }
}

/* =========================================================
   GOLDEN HOUSE SALE SECTION
   FULL RESPONSIVE CSS
========================================================= */

:root {
  --gh-sale-white: #ffffff;
  --gh-sale-cream: #fbf9f5;
  --gh-sale-cream-dark: #f4efe7;
  --gh-sale-placeholder: #f2efea;

  --gh-sale-black: #111111;
  --gh-sale-text: #363636;
  --gh-sale-muted: #777777;

  --gh-sale-gold: #bd8a34;
  --gh-sale-gold-dark: #91651f;

  --gh-sale-border: #e7e2da;
  --gh-sale-success: #397554;

  --gh-sale-heading-font: "Playfair Display", serif;
  --gh-sale-body-font: "DM Sans", sans-serif;
}


/* =========================================================
   1. SALE SECTION RESET
========================================================= */

.gh-sale-section,
.gh-sale-section * {
  box-sizing: border-box;
}

.gh-sale-section {
  width: 100%;

  position: relative;

  background: var(--gh-sale-white);
  color: var(--gh-sale-black);

  font-family: var(--gh-sale-body-font);

  overflow-x: hidden;
}

.gh-sale-section a {
  color: inherit;
  text-decoration: none;
}

.gh-sale-section button,
.gh-sale-section input,
.gh-sale-section select {
  font: inherit;
}

.gh-sale-section button {
  cursor: pointer;
}


/* =========================================================
   2. SALE HEADING
========================================================= */

.gh-sale-heading {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 90px 30px 54px;

  text-align: center;
}

.gh-sale-eyebrow {
  margin: 0;

  color: var(--gh-sale-gold-dark);

  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.27em;
  line-height: 1.5;
  text-transform: uppercase;
}

.gh-sale-heading-divider {
  width: min(100%, 310px);
  margin: 21px auto 24px;

  color: var(--gh-sale-gold);

  display: grid;
  grid-template-columns: 1fr 27px 1fr;
  align-items: center;
  gap: 15px;
}

.gh-sale-heading-divider span {
  width: 100%;
  height: 1px;

  background: var(--gh-sale-gold);
}

.gh-sale-heading-divider svg {
  width: 27px;
  height: 27px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gh-sale-heading h2 {
  margin: 0;

  color: var(--gh-sale-black);

  font-family: var(--gh-sale-heading-font);
  font-size: clamp(3.5rem, 5.7vw, 6.6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-transform: uppercase;
}

.gh-sale-description {
  max-width: 600px;
  margin: 26px auto 0;

  color: var(--gh-sale-text);

  font-size: 0.94rem;
  line-height: 1.8;
}


/* =========================================================
   3. SALE PRODUCT GRID
========================================================= */

.gh-sale-product-grid {
  width: min(calc(100% - 10vw), 1450px);
  margin: 0 auto;
  padding: 10px 0 72px;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 36px 20px;
}


/* =========================================================
   4. SALE PRODUCT CARD
========================================================= */

.gh-sale-product-card {
  min-width: 0;

  position: relative;

  background: var(--gh-sale-white);
}

.gh-sale-product-card[hidden] {
  display: none !important;
}


/* =========================================================
   5. PRODUCT IMAGE WRAPPER
========================================================= */

.gh-sale-image-wrapper {
  width: 100%;
  aspect-ratio: 0.82;

  position: relative;

  background: var(--gh-sale-placeholder);
  border: 1px solid rgba(17, 17, 17, 0.04);

  overflow: hidden;
}

.gh-sale-image-wrapper > img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;
}


/* =========================================================
   6. IMAGE PLACEHOLDER
========================================================= */

.gh-sale-image-placeholder {
  width: 100%;
  height: 100%;
  padding: 20px;

  color: #aaa49b;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;

  text-align: center;
}

.gh-sale-image-placeholder i {
  font-size: 2.3rem;
}

.gh-sale-image-placeholder span {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* =========================================================
   7. DISCOUNT BADGE
========================================================= */

.gh-sale-discount-badge {
  min-height: 27px;
  padding: 0 11px;

  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 4;

  background: var(--gh-sale-black);
  color: var(--gh-sale-white);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* =========================================================
   8. WISHLIST BUTTON
========================================================= */

.gh-sale-wishlist-button {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;

  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 5;

  background: rgba(255, 255, 255, 0.94);
  color: var(--gh-sale-gold-dark);

  display: grid;
  place-items: center;

  font-size: 1rem;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.2s ease;
}

.gh-sale-wishlist-button:hover {
  background: var(--gh-sale-black);
  color: var(--gh-sale-white);
}

.gh-sale-wishlist-button.active,
.gh-sale-wishlist-button[aria-pressed="true"] {
  background: var(--gh-sale-black);
  color: var(--gh-sale-gold);
}

.gh-sale-wishlist-button:active {
  transform: scale(0.94);
}


/* =========================================================
   9. PRODUCT DETAILS
========================================================= */

.gh-sale-product-details {
  padding: 16px 2px 0;
}

.gh-sale-product-category {
  margin: 0 0 6px;

  color: var(--gh-sale-gold-dark);

  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.gh-sale-product-details h3 {
  min-height: 45px;
  margin: 0;

  color: var(--gh-sale-black);

  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.5;
}


/* =========================================================
   10. PRODUCT PRICES
========================================================= */

.gh-sale-prices {
  margin-top: 8px;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}

.gh-sale-old-price {
  color: var(--gh-sale-muted);

  font-size: 0.72rem;
  line-height: 1;

  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.gh-sale-current-price {
  color: var(--gh-sale-gold-dark);

  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
}


/* =========================================================
   11. PRODUCT RATING
========================================================= */

.gh-sale-product-rating {
  margin-top: 9px;

  display: flex;
  align-items: center;
  gap: 7px;
}

.gh-sale-product-rating span {
  color: var(--gh-sale-gold);

  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.gh-sale-product-rating small {
  color: var(--gh-sale-muted);

  font-size: 0.61rem;
}


/* =========================================================
   12. QUICK ADD BUTTON
========================================================= */

.gh-sale-quick-add-button {
  width: 100%;
  min-height: 45px;
  margin-top: 15px;
  padding: 0 14px;
  border: 1px solid var(--gh-sale-black);

  background: var(--gh-sale-white);
  color: var(--gh-sale-black);

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.gh-sale-quick-add-button:hover,
.gh-sale-quick-add-button.added {
  background: var(--gh-sale-black);
  color: var(--gh-sale-white);
}


/* =========================================================
   13. SALE BOTTOM AREA
========================================================= */

.gh-sale-bottom {
  width: min(calc(100% - 10vw), 1160px);
  margin: 0 auto;
  padding: 33px 0 70px;
  border-top: 1px solid var(--gh-sale-border);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.gh-sale-bottom p {
  margin: 0;

  color: var(--gh-sale-muted);

  font-size: 0.75rem;
  line-height: 1.7;
}

.gh-sale-shop-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    width:230px;
    height:58px;

    background:#ffffff !important;
    color:#111111 !important;

    border:1px solid #111111;

    font-size:.7rem;
    font-weight:700;
    letter-spacing:.15em;
    text-transform:uppercase;

    transition:.3s;
}

.gh-sale-shop-link i{
    color:#b88b36;
}

.gh-sale-shop-link:hover{
    background:#111111 !important;
    color:#ffffff !important;
}

.gh-sale-shop-link:hover i{
    color:#b88b36;
}


/* =========================================================
   14. SUCCESS TOAST
========================================================= */

.gh-sale-toast {
  max-width: calc(100% - 40px);
  min-width: 310px;
  min-height: 68px;
  padding: 13px 18px;

  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9500;

  background: var(--gh-sale-black);
  color: var(--gh-sale-white);

  display: flex;
  align-items: center;
  gap: 14px;

  opacity: 0;
  visibility: hidden;

  transform: translateY(22px);

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
}

.gh-sale-toast.show {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}

.gh-sale-toast > i {
  width: 32px;
  height: 32px;
  border-radius: 50%;

  background: rgba(189, 138, 52, 0.18);
  color: var(--gh-sale-gold);

  display: grid;
  place-items: center;

  flex-shrink: 0;
}

.gh-sale-toast > div {
  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: 3px;
}

.gh-sale-toast strong {
  font-size: 0.72rem;
  font-weight: 700;
}

.gh-sale-toast span {
  color: rgba(255, 255, 255, 0.75);

  font-size: 0.66rem;
  line-height: 1.45;
}


/* =========================================================
   21. LAPTOP
========================================================= */

@media (max-width: 1150px) {
  .gh-sale-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gh-sale-product-card:last-child {
    grid-column: 2;
  }
}


/* =========================================================
   22. TABLET
========================================================= */

@media (max-width: 850px) {
  .gh-sale-heading {
    padding-top: 75px;
  }

  .gh-sale-product-grid {
    width: calc(100% - 64px);

    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 18px;
  }

  .gh-sale-product-card:last-child {
    grid-column: auto;
  }

  .gh-sale-bottom {
    width: calc(100% - 64px);

    flex-direction: column;
    justify-content: center;

    text-align: center;
  }

}


/* =========================================================
   23. MOBILE
========================================================= */

@media (max-width: 650px) {
  .gh-sale-heading {
    padding: 65px 20px 42px;
  }

  .gh-sale-eyebrow {
    font-size: 0.56rem;
    letter-spacing: 0.19em;
  }

  .gh-sale-heading-divider {
    width: min(100%, 250px);
    margin: 18px auto 21px;

    grid-template-columns: 1fr 23px 1fr;
    gap: 10px;
  }

  .gh-sale-heading-divider svg {
    width: 22px;
    height: 22px;
  }

  .gh-sale-heading h2 {
    font-size: clamp(3.1rem, 15vw, 4.5rem);
  }

  .gh-sale-description {
    margin-top: 22px;

    font-size: 0.81rem;
    line-height: 1.7;
  }


  /* Products */

  .gh-sale-product-grid {
    width: calc(100% - 40px);
    padding-bottom: 55px;

    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 12px;
  }

  .gh-sale-image-placeholder {
    padding: 12px;
    gap: 9px;
  }

  .gh-sale-image-placeholder i {
    font-size: 1.65rem;
  }

  .gh-sale-image-placeholder span {
    font-size: 0.49rem;
    letter-spacing: 0.08em;
  }

  .gh-sale-discount-badge {
    min-height: 22px;
    padding: 0 7px;

    top: 7px;
    left: 7px;

    font-size: 0.46rem;
  }

  .gh-sale-wishlist-button {
    width: 34px;
    height: 34px;

    top: 5px;
    right: 5px;

    font-size: 0.88rem;
  }

  .gh-sale-product-details {
    padding-top: 11px;
  }

  .gh-sale-product-category {
    margin-bottom: 4px;

    font-size: 0.49rem;
  }

  .gh-sale-product-details h3 {
    min-height: 39px;

    font-size: 0.71rem;
    line-height: 1.45;
  }

  .gh-sale-prices {
    margin-top: 6px;
    gap: 6px;
  }

  .gh-sale-old-price {
    font-size: 0.6rem;
  }

  .gh-sale-current-price {
    font-size: 0.68rem;
  }

  .gh-sale-product-rating {
    margin-top: 6px;
    gap: 5px;
  }

  .gh-sale-product-rating span {
    font-size: 0.58rem;
  }

  .gh-sale-product-rating small {
    font-size: 0.52rem;
  }

  .gh-sale-quick-add-button {
    min-height: 40px;
    margin-top: 11px;
    padding: 0 8px;

    font-size: 0.52rem;
    letter-spacing: 0.07em;
  }


  /* Bottom area */

  .gh-sale-bottom {
    width: calc(100% - 40px);
    padding: 28px 0 55px;
    gap: 20px;
  }

  .gh-sale-bottom p {
    font-size: 0.7rem;
  }

  .gh-sale-shop-link {
    min-height: 49px;
    padding: 0 19px;

    font-size: 0.61rem;
  }


  /* Toast */

  .gh-sale-toast {
    min-width: 0;

    right: 16px;
    bottom: 16px;
    left: 16px;
  }
}


/* =========================================================
   24. EXTRA-SMALL MOBILE
========================================================= */

@media (max-width: 390px) {
  .gh-sale-heading {
    padding-right: 16px;
    padding-left: 16px;
  }

  .gh-sale-product-grid {
    width: calc(100% - 32px);
    gap: 28px 10px;
  }

  .gh-sale-product-details h3 {
    font-size: 0.66rem;
  }

  .gh-sale-current-price {
    font-size: 0.64rem;
  }

  .gh-sale-quick-add-button {
    font-size: 0.48rem;
  }

  .gh-sale-bottom {
    width: calc(100% - 32px);
  }
}


/* =========================================================
   25. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .gh-sale-wishlist-button,
  .gh-sale-quick-add-button,
  .gh-sale-shop-link,
  .gh-sale-shop-link i,
  .gh-sale-toast {
    transition: none;
  }
}