:root {
    --cream: #fffaf2;
    --soft-pink: #f8dfe2;
    --blush: #f3c9cf;
    --gold: #c99845;
    --dark: #1f1b18;
    --muted: #7b6f68;
    --white: #fff;
    --collections-bg: #fff3ee;
    --shadow: 0 20px 60px rgba(70, 45, 25, 0.12);
    --radius: 28px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background: var(--cream);
    color: var(--dark);
    line-height: 1.6;
}
img {
    max-width: 100%;
    display: block;
    height:auto;
}
a {
    text-decoration: none;
    color: inherit;
}
.container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
}
.section {
    padding: 104px 0;
}
.deal-section {
    padding: 104px 0;
}
button{
  background: var(--dark);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.scroll-reveal {
    opacity: 0;
    transform: translateY(34px);
    transition:
        opacity 0.75s ease var(--reveal-delay, 0ms),
        transform 0.75s ease var(--reveal-delay, 0ms);
}
.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .scroll-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
.shape-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}
.shape-section > .container {
    position: relative;
    z-index: 2;
}
.shape-section::before,
.shape-section::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 1;
}
.shape-section::before {
    display: none;
}
.shape-hero,
.shape-trust,
.shape-categories,
.shape-deal {
    background: var(--cream);
}
.shape-hero,
.shape-products.curve-bg {
    border-radius: 0;
}
.shape-products.curve-bg {
    background: #fff;
}
.shape-products {
    background: #fff;
}
.shape-hero::after {
    bottom: -1px;
    height: 82px;
    background: var(--cream);
    clip-path: ellipse(72% 72% at 50% 100%);
}
.shape-trust::after {
    bottom: -1px;
    height: 68px;
    background: var(--collections-bg);
    clip-path: ellipse(86% 70% at 46% 100%);
}
.shape-categories::after {
    bottom: -1px;
    height: 86px;
    background: var(--cream);
    clip-path: ellipse(80% 74% at 58% 100%);
}
.shape-products::after {
    bottom: -1px;
    height: 82px;
    background: var(--cream);
    clip-path: polygon(0 72%, 18% 58%, 42% 74%, 68% 52%, 100% 68%, 100% 100%, 0 100%);
}
.shape-deal::after {
    bottom: -1px;
    height: 70px;
    background: var(--dark);
    clip-path: ellipse(78% 72% at 52% 100%);
    opacity: 0.04;
}
.section-title {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 45px;
}
.section-title span,
.collection-hero span {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 900;
}
.section-title h2 {
    font-family: Georgia, serif;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.15;
    margin: 12px 0;
}
.section-title p,
.collection-hero p {
    color: var(--muted);
    font-size: 17px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    transition: 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
}
.btn-dark {
    background: var(--dark);
    color: var(--white);
}
.btn-dark:hover {
    background: var(--gold);
    transform: translateY(-3px);
}
.btn-light {
    background: var(--white);
    color: var(--dark);
    border-color: rgba(0, 0, 0, 0.08);
}
.header {
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(255, 250, 242, 0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.nav {
    height: 86px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 28px;
    align-items: center;
}
.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    place-items: center;
    padding: 12px 11px;
    cursor: pointer;
}
.mobile-menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: var(--dark);
}
.logo {
    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: 500;
    white-space: nowrap;
    justify-self: center;
}
.logo span {
    color: var(--gold);
}
.menu {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
    color: #4d4039;
    font-weight: 600;
    font-size: 15px;
}
.menu li {
    list-style: none;
}
.menu a {
    display: inline-flex;
    align-items: center;
}
.menu > li > a {
    min-height: 86px;
}
.menu-left {
    justify-content: flex-start;
}
.menu-right-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 22px;
}
.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}
.header-search {
    position: relative;
    display: flex;
    align-items: center;
}
.header-search input {
    position: absolute;
    right: 0;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: var(--white);
    color: var(--dark);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    opacity: 0;
    padding: 0 44px 0 16px;
    font-size: 14px;
    outline: none;
    transition: 0.3s ease;
}
.header-search:hover input,
.header-search:focus-within input,
.header-search.is-search-open input {
    width: 210px;
    opacity: 1;
}
.header-search input::placeholder {
    color: var(--muted);
}
.header-search .search-btn {
    border: 0;
    padding: 0;
    color: var(--dark);
    cursor: pointer;
    z-index: 2;
}
.search-btn svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.icon-btn {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white);
    display: grid;
    place-items: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}
.header-search:focus-within .search-btn,
.icon-btn:hover {
    background: var(--dark);
    color: #fff;
    transform: translateY(-2px);
}
.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 800;
}
@media (min-width: 992px) {
    .menu > li.menu-item-has-children > a::after,
    .menu > li.page_item_has_children > a::after {
        content: "";
        width: 7px;
        height: 7px;
        margin-left: 8px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg) translateY(-2px);
        opacity: 0.72;
    }
    .menu > li > .sub-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 120;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 34px;
        list-style: none;
        padding: 32px max(32px, calc((100vw - 1200px) / 2)) 36px;
        background: rgba(255, 250, 242, 0.98);
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 28px 70px rgba(31, 27, 24, 0.14);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(10px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }
    .menu > li:hover > .sub-menu,
    .menu > li:focus-within > .sub-menu,
    .menu > li.is-mega-open > .sub-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
    .menu > li > .sub-menu > li {
        min-width: 0;
    }
    .menu > li > .sub-menu > li > a {
        color: var(--dark);
        font-family: Georgia, serif;
        font-size: 20px;
        font-weight: 700;
        line-height: 1.25;
        margin-bottom: 13px;
    }
    .menu > li > .sub-menu .sub-menu {
        display: grid;
        gap: 10px;
        list-style: none;
    }
    .menu > li > .sub-menu .sub-menu a {
        color: var(--muted);
        font-size: 14px;
        font-weight: 600;
        line-height: 1.35;
    }
    .menu > li > .sub-menu a:hover,
    .menu > li > .sub-menu a:focus {
        color: var(--gold);
    }
    .menu > li > .sub-menu > li > .sub-menu .sub-menu {
        padding: 8px 0 2px 14px;
    }
    .menu > li > .sub-menu > li > .sub-menu .sub-menu a {
        font-size: 13px;
        font-weight: 500;
    }
}
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 140;
    background: rgba(31, 27, 24, 0.42);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.mobile-menu-drawer {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 150;
    width: min(86vw, 360px);
    background: var(--cream);
    box-shadow: 24px 0 70px rgba(31, 27, 24, 0.2);
    transform: translateX(-100%);
    transition: transform 0.28s ease;
    display: flex;
    flex-direction: column;
}
.mobile-menu-overlay.is-open {
    opacity: 1;
}
.mobile-menu-drawer.is-open {
    transform: translateX(0);
}
.mobile-menu-open {
    overflow: hidden;
}
.mobile-menu-head {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--dark);
    font-family: Georgia, serif;
    font-size: 24px;
}
.mobile-menu-close {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: var(--white);
    color: var(--dark);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    padding:0;
}
.mobile-menu-body {
    overflow-y: auto;
    padding: 12px 20px 28px;
}
.mobile-nav-menu,
.mobile-nav-list,
.mobile-nav-list .sub-menu {
    list-style: none;
}
.mobile-nav-menu ul:nth-child(2) {
    margin-top: 0;
    border:1px solid transparent;
}
.mobile-nav-list + .mobile-nav-list {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.mobile-nav-list li {
    list-style: none;
}
.mobile-nav-list > li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding:12px 0;
}
.mobile-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.mobile-nav-row > a,
.mobile-nav-list > li > a {
    color: var(--dark);
    font-weight: 700;
    flex: 1 1 auto;
}
.mobile-nav-list .sub-menu {
    display: none;
    padding: 0 0 0px 16px;
}
.mobile-nav-list .sub-menu.is-open {
    display: block;
}
.mobile-nav-list .sub-menu li {
    padding:5px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.mobile-nav-list .sub-menu li:last-child{
    padding-bottom: 0;
}
.mobile-nav-list .sub-menu .mobile-nav-row {
    /* min-height: 48px; */
}
.mobile-nav-list .sub-menu a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}
.mobile-nav-list .sub-menu .sub-menu {
    padding-left: 14px;
}
.mobile-submenu-toggle {
    position: relative;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: var(--white);
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    padding:0;
}
.mobile-submenu-toggle::before,
.mobile-submenu-toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 13px;
    height: 2px;
    border-radius: 999px;
    background: var(--dark);
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}
.mobile-submenu-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.mobile-submenu-toggle[aria-expanded="true"]::after {
    transform: translate(-50%, -50%) rotate(0deg);
}
.hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 120px;
    background:
        radial-gradient(circle at 20% 20%, rgba(248, 202, 207, 0.75), transparent 30%),
        radial-gradient(circle at 90% 10%, rgba(201, 152, 69, 0.18), transparent 28%),
        linear-gradient(135deg, #fffaf2 0%, #fdecef 100%);
    border-bottom-left-radius: 70px;
    border-bottom-right-radius: 70px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}
.tagline {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero h1 {
    font-family: Georgia, serif;
    font-size: clamp(44px, 6vw, 46px);
    line-height: 1.4;
    margin-bottom: 22px;
}
.hero p {
    font-size: 18px;
    color: var(--muted);
    max-width: 560px;
    margin-bottom: 32px;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-card {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 42px;
    padding: 22px;
    box-shadow: var(--shadow);
    transform: rotate(2deg);
}
.hero-card img {
    border-radius: 32px;
    /* aspect-ratio: 4/5;
    object-fit: cover; */
    width:100%;
}
.hero-image {
    position: relative;
}
.floating-note {
    position: absolute;
    left: -25px;
    bottom: 40px;
    background: #fff;
    padding: 18px 22px;
    border-radius: 22px;
    box-shadow: var(--shadow);
    font-weight: 700;
}
.floating-note small {
    display: block;
    color: var(--gold);
    margin-bottom: 4px;
}
.trust-strip {
    margin-top: -45px;
    padding-bottom: 96px;
    position: relative;
    z-index: 5;
}
.trust-box {
    background: #fff;
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.trust-item {
    text-align: center;
    font-weight: 800;
}
.trust-item span {
    display: block;
    color: var(--gold);
    font-size: 26px;
    margin-bottom: 6px;
}
.trust-item p {
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    min-height: 310px;
    box-shadow: var(--shadow);
    background: #fff;
}
.category-card img {
    width: 100%;
    height: 100%;
    min-height: 310px;
    object-fit: cover;
    transition: 0.5s ease;
}
.category-card:hover img {
    transform: scale(1.08);
}
.category-overlay {
    position: absolute;
    inset: auto 18px 18px;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 18px;
}
.category-overlay h3 {
    font-family: Georgia, serif;
    font-size: 16px;
}
.category-overlay p {
    color: var(--muted);
    font-size: 14px;
}
.collections-section {
    background: var(--collections-bg);
    padding-top: 0px;
}
.collections-title {
    margin-bottom: 54px;
}
.collections-title h2 {
    font-family: Arial, sans-serif;
    font-size: clamp(32px, 3vw, 44px);
    font-weight: 900;
    letter-spacing: 0;
}
.collections-row {
    display: flex;
    justify-content: center;
    gap: clamp(28px, 5vw, 72px);
    flex-wrap: wrap;
}
.collection-item {
    width: 158px;
    text-align: center;
    font-weight: 900;
}
.collection-thumb {
    width: 156px;
    height: 156px;
    border-radius: 50%;
    overflow: hidden;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    background: #fff4ed;
    color: #aaa3a0;
    font-size: 38px;
    font-weight: 500;
    box-shadow: 0 18px 42px rgba(70, 45, 25, 0.08);
    transition: 0.3s ease;
}
.collection-item:nth-child(2) .collection-thumb {
    background: #fff4ed;
}
.collection-item:nth-child(3) .collection-thumb {
    background: #eef8ef;
}
.collection-item:nth-child(4) .collection-thumb {
    background: #ffd6df;
}
.collection-item:nth-child(5) .collection-thumb {
    background: #ffd9c8;
}
.collection-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.collection-item strong {
    display: block;
    font-size: 16px;
    line-height: 1.35;
}
.collection-item:hover .collection-thumb {
    transform: translateY(-6px);
    box-shadow: 0 24px 52px rgba(70, 45, 25, 0.14);
}
.featured-collections-section {
    background: var(--cream);
}
.curve-bg {
    background: linear-gradient(135deg, #fff 0%, #fdecef 100%);
    border-radius: 70px;
}
.shape-products.curve-bg {
    background: #fff;
    border-radius: 0;
}
.woocommerce ul.products,
.product-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.plp-content .woocommerce ul.products {
    grid-template-columns: repeat(3, 1fr);
}
.woocommerce ul.products li.product.product-card {
    float: none;
    width: auto;
    margin: 0;
}
.product-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: 0.3s ease;
}
.product-card:hover {
    transform: translateY(-4px);
}
.product-image {
    position: relative;
    overflow: hidden;
    background: #f7eee8;
    aspect-ratio: 1.18/1;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(70, 45, 25, 0.1);
}
.product-image a {
    display: block;
    height: 100%;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}
.product-image .second-img {
    position: absolute;
    inset: 0;
    opacity: 0;
}
.product-card:hover .second-img {
    opacity: 1;
}
.badge,
.onsale {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: #e5a19d;
    color: #fff;
    padding: 7px 13px;
    border-radius: 4px;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
}
.quick-add {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 14px;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.3s ease;
}
.product-card:hover .quick-add {
    opacity: 1;
    transform: translateY(0);
}
.quick-add .button,
.quick-add button {
    width: 100%;
    border: 0;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--dark) !important;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(31, 27, 24, 0.16);
}
.quick-add-icon {
    font-size: 15px;
    line-height: 1;
}
.quick-add .button:hover,
.quick-add button:hover {
    background: #fff;
    color: var(--gold) !important;
}
.best-selling-slider {
    position: relative;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 0 56px;
}
.best-selling-slider-window {
    overflow: hidden;
}
.best-selling-slider .woocommerce ul.products {
    display: flex !important;
    grid-template-columns: none;
    gap: 26px;
    overflow: visible;
    transition: transform 0.35s ease;
    will-change: transform;
}
.best-selling-slider .woocommerce ul.products li.product.product-card {
    flex: 0 0 calc((100% - 104px) / 5);
}
.slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--dark);
    color: #fff;
    font-size: 25px;
    font-weight: normal;
    line-height: 0;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(31, 27, 24, 0.18);
    transform: translateY(-50%);
    transition: 0.25s ease;
    padding:0;
}
.slider-arrow:hover {
    background: var(--gold);
    transform: translateY(-50%) scale(1.04);
}
.slider-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: translateY(-50%);
}
.slider-arrow-prev {
    left: 18px;
}
.slider-arrow-next {
    right: 18px;
}
.product-info {
    padding: 14px 4px 0;
}
.rating {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 8px;
}
.product-info h3 {
    font-size: 15px;
    line-height: 1.35;
    margin-bottom: 6px;
    font-weight: 800;
}
.price {
    font-weight: 900;
    color: var(--dark);
    font-size: 15px;
}
.price .gh-card-discount-text {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(201, 152, 69, 0.14);
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    vertical-align: middle;
}
.price del {
    color: #9d9995;
    font-weight: 500;
    margin-left: 8px;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
    text-decoration-color: #b7b0aa;
}
.price ins {
    text-decoration: none;
}
.deal-section {
    padding: 90px 0;
}
.deal-box {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.8), transparent 30%),
        linear-gradient(135deg, #f4cbd1 0%, #fff4dc 100%);
    border-radius: 60px;
    padding: 55px;
    box-shadow: var(--shadow);
}
.deal-box img {
    border-radius: 40px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}
.deal-content span {
    color: var(--gold);
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 13px;
}
.deal-content h2 {
    font-family: Georgia, serif;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.1;
    margin: 12px 0 18px;
}
.deal-content p {
    color: var(--muted);
    margin-bottom: 25px;
    font-size: 17px;
}
.timer {
    display: flex;
    gap: 14px;
    margin-bottom: 28px;
}
.timer div {
    background: #fff;
    border-radius: 18px;
    padding: 14px 18px;
    text-align: center;
    min-width: 76px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}
.timer strong {
    display: block;
    font-size: 24px;
    background: #000;
    color: #fff;
    border-radius: 8px;
}
.timer small {
    color: var(--muted);
}
.occasion-section {
    position: relative;
    overflow: hidden;
    background: #fff7f2;
    padding-bottom: 134px;
}
.occasion-section::after,
.gift-builder-section::after,
.new-arrivals-section::after,
.mood-section::after,
.reviews-section::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 72px;
    pointer-events: none;
    z-index: 1;
}
.occasion-section > .container,
.gift-builder-section > .container,
.new-arrivals-section > .container,
.mood-section > .container,
.reviews-section > .container {
    position: relative;
    z-index: 2;
}
.occasion-section::after {
    background: var(--cream);
    clip-path: ellipse(82% 76% at 48% 100%);
}
.occasion-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}
.occasion-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    min-height: 220px;
    box-shadow: 0 16px 40px rgba(70, 45, 25, 0.08);
    transition: 0.25s ease;
    display: flex;
    align-items: flex-end;
}
.occasion-card::after,
.mood-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(31, 27, 24, 0.06), rgba(31, 27, 24, 0.68));
    z-index: 1;
}
.occasion-card img,
.mood-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease;
}
.occasion-card div,
.mood-card div {
    position: relative;
    z-index: 2;
    padding: 22px;
}
.occasion-card h3 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 8px;
}
.occasion-card p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}
.occasion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 48px rgba(70, 45, 25, 0.12);
}
.occasion-card:hover img,
.mood-card:hover img {
    transform: scale(1.06);
}
.gift-builder-section {
    position: relative;
    overflow: hidden;
    background: var(--cream);
    padding-bottom: 134px;
    padding-top: 40px;
}
.gift-builder-section::after {
    background: #fff;
    clip-path: polygon(0 70%, 22% 54%, 48% 74%, 76% 52%, 100% 66%, 100% 100%, 0 100%);
}
.gift-builder {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 54px;
    align-items: center;
}
.gift-builder-media img,
.story-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 34px;
    box-shadow: var(--shadow);
}
.gift-builder-content span,
.story-content span {
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.gift-builder-content h2,
.story-content h2 {
    font-family: Georgia, serif;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.1;
    margin: 14px 0 18px;
}
.gift-builder-content p,
.story-content p {
    color: var(--muted);
    font-size: 17px;
    margin-bottom: 26px;
}
.builder-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}
.builder-steps div {
    background: #fff;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 12px 30px rgba(70, 45, 25, 0.08);
}
.builder-steps strong {
    display: block;
    color: var(--gold);
    margin-bottom: 6px;
}
.builder-steps span {
    color: var(--dark);
    font-size: 13px;
    letter-spacing: 0;
    text-transform: none;
}
.new-arrivals-section {
    position: relative;
    overflow: hidden;
    background: #fff;
    padding-bottom: 134px;
}
.new-arrivals-section::after {
    background: var(--cream);
    clip-path: ellipse(84% 70% at 56% 100%);
}
.new-arrivals-section .woocommerce ul.products {
    grid-template-columns: repeat(5, 1fr);
}
.mood-section {
    position: relative;
    overflow: hidden;
    background: #fff3ee;
    padding-bottom: 134px;
}
.mood-section::after {
    background: #fff;
    clip-path: ellipse(78% 76% at 42% 100%);
}
.mood-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.mood-card {
    position: relative;
    min-height: 250px;
    border-radius: 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    color: #fff;
    box-shadow: var(--shadow);
    transition: 0.25s ease;
}
.mood-card h3 {
    font-family: Georgia, serif;
    font-size: 30px;
    margin-bottom: 8px;
}
.mood-card p {
    color: rgba(255, 255, 255, 0.84);
}
.mood-card:hover {
    transform: translateY(-5px);
}
.reviews-section {
    position: relative;
    overflow: hidden;
    background: #fff;
    padding-bottom: 134px;
}
.reviews-section::after {
    background: var(--cream);
    clip-path: polygon(0 64%, 26% 78%, 54% 56%, 78% 72%, 100% 50%, 100% 100%, 0 100%);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review-card {
    background: var(--cream);
    border-radius: 26px;
    padding: 30px;
    box-shadow: 0 16px 40px rgba(70, 45, 25, 0.08);
}
.review-card div {
    color: var(--gold);
    margin-bottom: 14px;
    letter-spacing: 2px;
}
.review-card p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.story-section {
    background: var(--cream);
}
.story-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.collection-hero {
    padding: 85px 0;
    text-align: center;
    background:
        radial-gradient(circle at 20% 20%, rgba(248, 202, 207, 0.85), transparent 30%),
        radial-gradient(circle at 85% 15%, rgba(201, 152, 69, 0.18), transparent 28%),
        linear-gradient(135deg, #fffaf2 0%, #fdecef 100%);
    border-bottom-left-radius: 70px;
    border-bottom-right-radius: 70px;
}
.collection-hero h1 {
    font-family: Georgia, serif;
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.05;
    margin: 14px 0;
}
.collection-hero p {
    max-width: 650px;
    margin: auto;
}
.plp-section {
    padding: 80px 0;
}
.plp-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 34px;
    align-items: flex-start;
}
.filter-sidebar {
    position: sticky;
    top: 110px;
    background: #fff;
    border-radius: 28px;
    padding: 24px;
    box-shadow: var(--shadow);
}
.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}
.filter-header h3 {
    font-family: Georgia, serif;
    font-size: 26px;
}
.filter-header button {
    border: 0;
    background: transparent;
    color: var(--gold);
    font-weight: 800;
    cursor: pointer;
}
.filter-block {
    padding: 22px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.filter-block h4 {
    font-size: 16px;
    margin-bottom: 14px;
}
.filter-block label,
.filter-block li {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--muted);
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 15px;
    list-style: none;
}
.filter-block input {
    accent-color: var(--gold);
}
.plp-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}
.plp-toolbar h2 {
    font-family: Georgia, serif;
    font-size: 34px;
}
.woocommerce-result-count {
    color: var(--muted);
}
.toolbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.orderby,
.mobile-filter-btn {
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 0 18px;
    font-weight: 700;
    color: var(--dark);
}
.mobile-filter-btn {
    display: none;
    cursor: pointer;
}
.pdp-section {
    padding: 80px 0;
}
.pdp-layout {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 60px;
    align-items: start;
}
.pdp-main-image {
    background: #fff;
    border-radius: 36px;
    padding: 18px;
    box-shadow: var(--shadow);
}
.pdp-main-image img {
    width: 100%;
    border-radius: 28px;
}
.pdp-thumbs {
    display: flex;
    gap: 14px;
    margin-top: 16px;
}
.pdp-thumbs img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 16px;
    background: #fff;
    padding: 6px;
}
.pdp-info {
    background: #fff;
    border-radius: 36px;
    padding: 36px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 110px;
}
.pdp-info h1 {
    font-family: Georgia, serif;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.1;
    margin: 12px 0;
}
.pdp-price {
    font-size: 26px;
    font-weight: 900;
    margin: 18px 0;
}
.pdp-short {
    color: var(--muted);
    margin-bottom: 22px;
}
.quantity input {
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 0 12px;
    margin-right: 10px;
}
.gh-quantity-stepper {
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    height: 52px;
    border: 1px solid rgba(31, 27, 24, 0.12);
    border-radius: 999px;
    background: #fff;
}
.gh-quantity-stepper .qty {
    width: 54px;
    height: 50px;
    border: 0;
    border-radius: 0;
    margin: 0;
    padding: 0;
    background: transparent;
    text-align: center;
    font-weight: 900;
    -moz-appearance: textfield;
}
.gh-quantity-stepper .qty::-webkit-outer-spin-button,
.gh-quantity-stepper .qty::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}
.gh-qty-btn {
    width: 44px;
    height: 50px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--dark);
    font-size: 20px;
    font-weight: 900;
    padding: 0;
    box-shadow: none;
}
.gh-qty-btn:hover {
    background: var(--cream);
    color: var(--gold);
}
.cart {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}
.pdp-trust {
    display: grid;
    gap: 10px;
    margin: 26px 0;
}
.pdp-trust div {
    background: var(--cream);
    border-radius: 16px;
    padding: 12px 14px;
    font-weight: 700;
}
details {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 18px 0;
}
summary {
    font-weight: 800;
    cursor: pointer;
}
.footer {
    background: #302f2e;
    color: #aaa6a3;
    padding: 78px 0 15px;
}
.footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(150px, 0.75fr));
    gap: clamp(44px, 7vw, 110px);
    align-items: start;
}
.footer-logo {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background: #fff;
    display: grid;
    place-items: center;
    overflow: hidden;
    margin-bottom: 28px;
}
.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer-logo span {
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 18px;
    text-align: center;
    padding: 10px;
}
.footer-brand p {
    max-width: 460px;
    color: #bcb8b4;
    line-height: 1.75;
    margin-bottom: 26px;
}
.footer-contact {
    list-style: none;
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #bcb8b4;
}
.footer-contact li > span:first-child {
    width: 20px;
    color: #9d9995;
    text-align: center;
    flex: 0 0 20px;
}
.footer-contact i {
    font-size: 15px;
    line-height: 1;
}
.footer-socials {
    display: flex;
    gap: 14px;
}
.footer-socials a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #f2eeee;
    display: grid;
    place-items: center;
    font-weight: 900;
    transition: 0.25s ease;
}
.footer-socials i {
    font-size: 18px;
    line-height: 1;
}
.footer-socials a:hover {
    background: var(--gold);
    transform: translateY(-2px);
}
.footer-col {
    display: grid;
    gap: 17px;
}
.footer-col li {
    list-style: none;
}
.footer-col h3 {
    position: relative;
    color: #f3efec;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
    padding-left: 48px;
}
.footer-col h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 36px;
    height: 2px;
    background: #8d6842;
}
.footer-col a {
    color: #aaa6a3;
    line-height: 1.35;
    transition: 0.25s ease;
}
.footer-col a:hover,
.footer-contact a:hover {
    color: #fff;
}
.footer-credit {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 58px;
    padding-top: 15px;
    text-align: right;
}
.footer-credit p {
    color: #8f8b87;
    font-size: 14px;
}
.footer-credit a {
    color: #f2eeee;
    font-weight: 800;
}
.footer-credit a:hover {
    color: var(--gold);
}
.gh-blog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}
.gh-blog-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.25s ease;
}
.gh-blog-card:hover {
    transform: translateY(-5px);
}
.gh-blog-card-image {
    display: grid;
    place-items: center;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #fffaf2, #fdecef);
    color: var(--gold);
    font-family: Georgia, serif;
    font-weight: 700;
    overflow: hidden;
}
.gh-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s ease;
}
.gh-blog-card:hover .gh-blog-card-image img {
    transform: scale(1.06);
}
.gh-blog-card-content {
    padding: 20px;
}
.gh-blog-card-content time,
.gh-blog-single-head time {
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}
.gh-blog-card-content h2 {
    font-family: Georgia, serif;
    font-size: 22px;
    line-height: 1.18;
    margin: 10px 0;
}
.gh-blog-card-content p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 16px;
}
.gh-blog-read-more {
    color: var(--dark);
    font-size: 14px;
    font-weight: 900;
}
.gh-blog-read-more:hover {
    color: var(--gold);
}
.gh-blog-single-head {
    padding: 70px 0 34px;
    text-align: center;
    background: linear-gradient(135deg, #fffaf2 0%, #fdecef 100%);
}
.gh-blog-single-head .container {
    max-width: 860px;
}
.gh-blog-back {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--muted);
    font-weight: 800;
}
.gh-blog-back:hover {
    color: var(--gold);
}
.gh-blog-single-head h1 {
    font-family: Georgia, serif;
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.08;
    margin: 12px 0;
}
.gh-blog-single-head p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}
.gh-blog-single-image {
    max-width: 980px;
    margin-top: 42px;
}
.gh-blog-single-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow);
}
.gh-blog-single-content {
    max-width: 780px;
    padding: 52px 0 90px;
    color: var(--dark);
}
.gh-blog-single-content > * {
    margin-bottom: 22px;
}
.gh-blog-single-content p,
.gh-blog-single-content li {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.85;
}
.gh-blog-single-content h2,
.gh-blog-single-content h3,
.gh-blog-single-content h4 {
    font-family: Georgia, serif;
    line-height: 1.2;
    margin-top: 36px;
}
@media (max-width: 991px) {
    .nav {
        grid-template-columns: auto 1fr auto;
        gap: 14px;
    }
    .mobile-menu-toggle {
        display: grid;
        justify-self: start;
    }
    .menu-left,
    .menu-right {
        display: none;
    }
    .logo {
        justify-self: start;
        font-size: 25px;
    }
    .hero-grid,
    .deal-box,
    .pdp-layout,
    .gift-builder,
    .story-wrap {
        grid-template-columns: 1fr;
    }
    .plp-layout {
        grid-template-columns: 1fr;
    }
    .filter-sidebar {
        display: none;
    }
    .mobile-filter-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .woocommerce ul.products,
    .product-grid,
    .plp-content .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
    .best-selling-slider .woocommerce ul.products li.product.product-card {
        flex-basis: calc((100% - 26px) / 2);
    }
    .best-selling-slider {
        padding: 0 38px;
    }
    .slider-arrow-prev {
        left: 10px;
    }
    .slider-arrow-next {
        right: 10px;
    }
    .plp-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }
    .trust-box,
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .occasion-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .new-arrivals-section .woocommerce ul.products,
    .mood-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gh-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .builder-steps {
        grid-template-columns: 1fr;
    }
    .collection-item {
        width: 140px;
    }
    .collection-thumb {
        width: 138px;
        height: 138px;
    }
    .pdp-info {
        position: static;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}
@media (max-width: 575px) { 
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .section,
    .deal-section {
        padding: 44px 0;
    }
    .section-title {
        margin-bottom: 24px;
    }
    .section-title span,
    .collection-hero span {
        font-size: 11px;
        letter-spacing: 2px;
    }
    .section-title h2 {
        font-size: 28px;
        margin: 8px 0;
    }
    .section-title p,
    .collection-hero p {
        font-size: 14px;
        line-height: 1.45;
    }
    .trust-strip {
        padding-bottom: 44px;
        padding-top: 18px;
        margin-top: 0;
    }
    .collections-section {
        padding-top: 56px;
    }
    .shape-section::before,
    .shape-section::after {
        height: 32px;
    }
    .occasion-section,
    .gift-builder-section,
    .new-arrivals-section,
    .mood-section,
    .reviews-section {
        padding-bottom: 54px;
    }
    .occasion-section::after,
    .gift-builder-section::after,
    .new-arrivals-section::after,
    .mood-section::after,
    .reviews-section::after {
        height: 32px;
    }
    .nav {
        height: 74px;
        gap: 10px;
    }
    .logo {
        font-size: 22px;
    }
    .logo img {
        max-width: 44px;
        max-height: 44px;
        width: auto;
    }
    .mobile-menu-toggle {
        width: 38px;
        height: 38px;
        padding: 10px;
    }
    .icon-btn {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    .header-search input {
        width: 38px;
        height: 38px;
    }
    .header-search:hover input,
    .header-search:focus-within input {
        width: 170px;
    }
    .search-btn svg {
        width: 17px;
        height: 17px;
    }
    .hero,
    .collection-hero {
        padding: 48px 0;
        border-bottom-left-radius: 42px;
        border-bottom-right-radius: 42px;
    }
    .woocommerce ul.products,
    .product-grid,
    .mood-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .gh-blog-grid {
        grid-template-columns: 1fr;
    }
    .gh-blog-single-head {
        padding: 48px 0 28px;
    }
    .gh-blog-single-content {
        padding: 36px 0 70px;
    }
    .gh-blog-single-content p,
    .gh-blog-single-content li {
        font-size: 16px;
    }
    .plp-content .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 12px;
    }
    .plp-content .product-image {
        border-radius: 10px;
        aspect-ratio: 1/1.08;
    }
    .plp-content .product-info {
        padding: 9px 2px 0;
    }
    .plp-content .product-info h3 {
        font-size: 13px;
        line-height: 1.25;
        margin-bottom: 4px;
    }
    .plp-content .price {
        font-size: 13px;
    }
    .plp-content .badge,
    .plp-content .onsale {
        top: 8px;
        left: 8px;
        padding: 5px 8px;
        font-size: 9px;
    }
    .plp-content .quick-add {
        left: 8px;
        right: 8px;
        bottom: 8px;
    }
    .plp-content .quick-add .button,
    .plp-content .quick-add button {
        min-height: 34px;
        padding: 8px 10px;
        font-size: 12px;
    }
    .trust-box {
        display: flex;
        flex-wrap: nowrap;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin-left: -16px;
        margin-right: -16px;
        padding: 18px 16px;
        border-radius: 0;
        box-shadow: none;
        scrollbar-width: none;
    }
    .trust-box::-webkit-scrollbar {
        display: none;
    }
    .trust-item {
        flex: 0 0 calc((100% - 14px) / 1.5);
        min-height: 118px;
        padding: 18px 14px;
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 12px 30px rgba(70, 45, 25, 0.08);
        scroll-snap-align: start;
    }
    .featured-collections-section .category-grid,
    .occasion-grid,
    .collections-row,
    .reviews-grid {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
        scrollbar-width: none;
    }
    .featured-collections-section .category-grid::-webkit-scrollbar,
    .occasion-grid::-webkit-scrollbar,
    .collections-row::-webkit-scrollbar,
    .reviews-grid::-webkit-scrollbar {
        display: none;
    }
    .collections-row {
        gap: 18px;
    }
    .collection-item {
        flex: 0 0 calc((100% - 36px) / 2.5);
        width: calc((100% - 36px) / 2.5);
        scroll-snap-align: start;
    }
    .collection-thumb {
        width: 94px;
        height: 94px;
        margin-bottom: 10px;
        font-size: 26px;
    }
    .collection-item strong {
        font-size: 12px;
        line-height: 1.25;
    }
    .featured-collections-section .category-card {
        flex: 0 0 calc((100% - 14px) / 1.5);
        min-height: 178px;
        border-radius: 18px;
        scroll-snap-align: start;
    }
    .featured-collections-section .category-card img {
        min-height: 178px;
    }
    .featured-collections-section .category-overlay {
        inset: auto 10px 10px;
        padding: 10px;
        border-radius: 12px;
    }
    .featured-collections-section .category-overlay h3 {
        font-size: 16px;
        line-height: 1.15;
    }
    .featured-collections-section .category-overlay p {
        font-size: 11px;
    }
    .occasion-card {
        flex: 0 0 calc((100% - 28px) / 2.2);
        min-height: 92px;
        height: 92px;
        border-radius: 14px;
        scroll-snap-align: start;
    }
    .occasion-card img {
        height: 100%;
    }
    .occasion-card div {
        inset: auto 10px 8px;
    }
    .occasion-card h3 {
        font-size: 15px;
        line-height: 1.1;
    }
    .occasion-card p {
        display: none;
    }
    .review-card {
        flex: 0 0 calc((100% - 14px) / 1.5);
        padding: 20px;
        border-radius: 18px;
        scroll-snap-align: start;
    }
    .review-card div {
        margin-bottom: 10px;
        font-size: 13px;
    }
    .review-card p {
        font-size: 13px;
        line-height: 1.55;
        margin-bottom: 14px;
    }
    .review-card strong {
        font-size: 13px;
    }
    .mood-card {
        min-height: auto;
    }
    .gift-builder,
    .story-wrap {
        gap: 28px;
    }
    .gift-builder-media {
        order: -1;
    }
    .builder-steps {
        display: flex;
        flex-wrap: nowrap;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin-left: -16px;
        margin-right: -16px;
        padding: 0 16px 4px;
        scrollbar-width: none;
    }
    .builder-steps::-webkit-scrollbar {
        display: none;
    }
    .builder-steps div {
        flex: 0 0 calc((100% - 14px) / 1.5);
        scroll-snap-align: start;
    }
    .best-selling-slider .woocommerce ul.products li.product.product-card {
        flex-basis: 82%;
    }
    .best-selling-slider {
        padding: 0 16px;
        margin-left: 50%;
    }
    .best-selling-slider-window {
        overflow: hidden;
    }
    .best-selling-slider .woocommerce ul.products {
        gap: 14px;
    }
    .product-image {
        border-radius: 10px;
        aspect-ratio: 1/1.05;
    }
    .product-info {
        padding-top: 9px;
    }
    .product-info h3 {
        font-size: 13px;
        line-height: 1.25;
        margin-bottom: 4px;
    }
    .price {
        font-size: 13px;
    }
    .badge,
    .onsale {
        top: 8px;
        left: 8px;
        padding: 5px 8px;
        font-size: 9px;
    }
    .quick-add {
        left: 8px;
        right: 8px;
        bottom: 8px;
    }
    .quick-add .button,
    .quick-add button {
        min-height: 34px;
        padding: 8px 10px;
        font-size: 12px;
    }
    .new-arrivals-section .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 12px;
    }
    .slider-arrow {
        width: 34px;
        height: 34px;
        font-size: 22px;
    }
    .slider-arrow-prev {
        left: 2px;
    }
    .slider-arrow-next {
        right: 2px;
    }
    .plp-section {
        padding: 55px 0;
    }
    .footer {
        padding: 56px 0 64px;
    }
    .footer-grid {
        grid-template-columns: 1fr auto;
        gap: 36px;
    }
    .footer-logo {
        width: 96px;
        height: 96px;
    }
    .toolbar-actions {
        width: 100%;
    }
    .orderby,
    .mobile-filter-btn {
        flex: 1;
        width: 100%;
    }
    .quick-add {
        opacity: 1;
        transform: translateY(0);
    }
    .deal-box {
        padding: 28px;
        border-radius: 38px;
    }
    .cart {
        display: block;
    }
    .single_add_to_cart_button {
        margin-top: 12px;
    }
    .footer-credit {
        text-align: center;
    }
}

/* Required fallback template styles */
.gh-post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.gh-post-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.gh-post-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.gh-post-content {
    padding: 24px;
}
.gh-post-content h2 {
    font-family: Georgia, serif;
    font-size: 26px;
    margin-bottom: 10px;
}
.gh-post-content p {
    color: var(--muted);
    margin-bottom: 18px;
}
.gh-page .section {
    padding: 70px 0;
}
@media (max-width: 991px) {
    .gh-post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .gh-post-grid {
        grid-template-columns: 1fr;
    }
}

/* Premium GlowHouse PDP v4 */
.gh-pdp {
    padding: 0 0 90px;
    background:
        radial-gradient(circle at 12% 8%, rgba(248, 202, 207, 0.55), transparent 24%),
        radial-gradient(circle at 88% 15%, rgba(201, 152, 69, 0.13), transparent 24%), var(--cream);
}
.gh-pdp-breadcrumb {
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 14px;
}
.gh-pdp-breadcrumb a {
    color: var(--muted);
}
.gh-pdp-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: 54px;
    align-items: start;
}
.gh-pdp-gallery,
.gh-pdp-info {
    position: sticky;
    top: 112px;
}
.gh-pdp-gallery-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow);
    border-radius: 42px;
    padding: 18px;
}
.gh-pdp-main-image {
    background: linear-gradient(135deg, #fff, #fff6f0);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: none !important;
    padding: 0 !important;
    aspect-ratio: 1/1.08;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gh-pdp-main-image img {
    width: 100%;
    height: auto;
    max-height: 680px;
    object-fit: contain;
    border-radius: 32px;
}
.gh-pdp-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 14px;
}
.gh-pdp-thumb {
    border: 2px solid transparent;
    background: #fff;
    border-radius: 18px;
    padding: 6px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(70, 45, 25, 0.08);
    transition: 0.25s ease;
}
.gh-pdp-thumb:hover,
.gh-pdp-thumb.is-active {
    border-color: var(--gold);
    transform: translateY(-2px);
}
.gh-pdp-thumb img {
    width: 100%;
    height: 82px;
    object-fit: cover;
    border-radius: 12px;
}
.gh-pdp-info {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 42px;
    padding: 40px;
    box-shadow: var(--shadow);
}
.gh-pdp-badge {
    display: inline-flex;
    padding: 8px 15px;
    border-radius: 999px;
    background: #fff3df;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.gh-pdp-title {
    font-family: Georgia, serif;
    font-size: clamp(36px, 4.5vw, 58px);
    line-height: 1.05;
    margin: 16px 0 12px;
}
.gh-pdp-rating-row {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.gh-pdp-review-note {
    font-size: 14px;
    color: var(--muted);
}
.gh-pdp-price {
    font-size: 30px;
    font-weight: 900;
    margin: 18px 0;
    color: var(--dark);
}
.gh-pdp-price ins {
    text-decoration: none;
    color: var(--gold);
}
.gh-pdp-short {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 22px;
}
.gh-pdp-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 24px 0;
}
.gh-pdp-highlights div {
    background: linear-gradient(135deg, #fffaf2, #fff);
    border: 1px solid rgba(201, 152, 69, 0.18);
    border-radius: 20px;
    padding: 15px;
    text-align: center;
}
.gh-pdp-highlights span {
    display: block;
    font-size: 24px;
    margin-bottom: 6px;
}
.gh-pdp-highlights strong {
    display: block;
    font-size: 14px;
}
.gh-pdp-highlights small {
    display: block;
    color: var(--muted);
    font-size: 12px;
}
.gh-pdp-cart-box {
    background: linear-gradient(135deg, #fff7f2, #fff);
    border: 1px solid rgba(201, 152, 69, 0.22);
    border-radius: 26px;
    padding: 18px;
    margin: 20px 0;
}
.gh-pdp-cart-box form.cart {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
}
.gh-pdp-cart-box .quantity:not(.gh-quantity-stepper) input {
    height: 52px;
    min-width: 86px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    text-align: center;
    font-weight: 800;
}
.gh-pdp-cart-box .single_add_to_cart_button {
    width: auto;
    min-width: 210px;
    height: 52px;
    padding: 0 28px;
    border-radius: 999px;
    background: var(--dark);
    color: #fff !important;
    border: 0;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(31, 27, 24, 0.18);
}
.gh-pdp-cart-box .single_add_to_cart_button:hover {
    background: var(--gold);
}
.gh-pdp-cart-box .variations {
    width: 100%;
    margin-bottom: 14px;
}
.gh-pdp-cart-box .variations th,
.gh-pdp-cart-box .variations td {
    display: block;
    text-align: left;
    padding: 0 0 10px;
}
.gh-pdp-cart-box .variations label {
    font-weight: 900;
}
.gh-pdp-cart-box select {
    width: 100%;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    padding: 0 16px;
    font-weight: 700;
}
.gh-pdp-service-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 22px 0;
}
.gh-pdp-service-box div {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 14px;
}
.gh-pdp-service-box strong {
    display: block;
    font-size: 14px;
}
.gh-pdp-service-box span {
    display: block;
    color: var(--muted);
    font-size: 12px;
}
.gh-pdp-accordions details {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 18px 0;
}
.gh-pdp-accordions summary {
    font-weight: 900;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
}
.gh-pdp-accordions summary:after {
    content: "+";
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--cream);
    display: grid;
    place-items: center;
    color: var(--gold);
}
.gh-pdp-accordions details[open] summary:after {
    content: "–";
}
.gh-pdp-accordion-content {
    color: var(--muted);
    padding-top: 12px;
}
.gh-pdp-reviews {
    padding: 0 0 90px;
}
.gh-pdp-reviews .woocommerce-Reviews {
    display: grid;
    /* grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr); */
    flex-wrap: wrap;
    gap: 30px;
    align-items: start;
}
.gh-pdp-reviews #comments,
.gh-pdp-reviews #review_form_wrapper {
    /* background: rgba(255, 255, 255, 0.88); */
    /* border: 1px solid rgba(201, 152, 69, 0.16); */
    /* border-radius: 34px; */
    /* box-shadow: var(--shadow); */
    /* padding: 30px; */
}
.gh-pdp-reviews .woocommerce-Reviews-title,
.gh-pdp-reviews .comment-reply-title {
    display: block;
    font-family: Georgia, serif;
    font-size: clamp(16px, 3vw, 28px);
    line-height: 1.18;
    color: var(--dark);
    margin-bottom: 22px;
}
.gh-pdp-reviews .woocommerce-Reviews-title span {
    color: var(--gold);
}
.gh-pdp-reviews .commentlist {
    display: grid;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.gh-pdp-reviews .commentlist li {
    list-style: none;
}
.gh-pdp-reviews .comment_container {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    background: linear-gradient(135deg, #fffaf2, #fff);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 22px;
    padding: 18px;
}
.gh-pdp-reviews .avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
}
.gh-pdp-reviews .comment-text {
    min-width: 0;
}
.gh-pdp-reviews .star-rating {
    position: relative;
    width: 112px;
    height: 24px;
    overflow: hidden;
    color: transparent;
    margin-bottom: 8px;
    letter-spacing: 2px;
}
.gh-pdp-reviews .star-rating::before {
    content: "★★★★★";
    position: absolute;
    inset: 0;
    color: #d5c7b8;
    font-size: 20px;
    line-height: 1;
}
.gh-pdp-reviews .star-rating span {
    position: absolute;
    inset: 0;
    overflow: hidden;
    padding-top: 24px;
}
.gh-pdp-reviews .star-rating span::before {
    content: "★★★★★";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--gold);
    font-size: 20px;
    line-height: 1;
}
.gh-rating .star-rating {
    position: relative;
    float: none;
    width: 104px;
    height: 22px;
    overflow: hidden;
    color: transparent;
    margin: 0;
    letter-spacing: 2px;
}
.gh-rating .star-rating::before {
    content: "★★★★★";
    position: absolute;
    inset: 0;
    color: #d5c7b8;
    font-size: 19px;
    line-height: 1;
}
.gh-rating .star-rating span {
    position: absolute;
    inset: 0;
    overflow: hidden;
    padding-top: 22px;
}
.gh-rating .star-rating span::before {
    content: "★★★★★";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--gold);
    font-size: 19px;
    line-height: 1;
}
.gh-pdp-reviews .meta {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 8px;
}
.gh-pdp-reviews .woocommerce-review__author {
    color: var(--dark);
    font-weight: 900;
}
.gh-pdp-reviews .description {
    color: var(--muted);
    line-height: 1.65;
}
.gh-pdp-reviews .woocommerce-noreviews,
.gh-pdp-reviews .woocommerce-verification-required,
.gh-pdp-reviews .must-log-in {
    color: var(--muted);
    background: #fffaf2;
    border-radius: 18px;
    padding: 16px 0;
}
.gh-pdp-reviews .comment-form {
    display: grid;
    gap: 16px;
}
.gh-pdp-reviews .comment-form label {
    display: block;
    color: var(--dark);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 8px;
}
.gh-pdp-reviews .comment-form input,
.gh-pdp-reviews .comment-form select,
.gh-pdp-reviews .comment-form textarea {
    width: 100%;
    border: 1px solid rgba(31, 27, 24, 0.12);
    border-radius: 18px;
    background: #fff;
    color: var(--dark);
    font: inherit;
    padding: 14px 16px;
    outline: none;
    transition: 0.2s ease;
}
.gh-pdp-reviews .comment-form input:focus,
.gh-pdp-reviews .comment-form select:focus,
.gh-pdp-reviews .comment-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 152, 69, 0.14);
}
.gh-pdp-reviews .comment-form textarea {
    min-height: 150px;
    resize: vertical;
}
.gh-pdp-reviews .comment-form-rating {
    margin: 0;
}
.gh-pdp-reviews .comment-form-rating select {
    display: none;
}
.gh-pdp-reviews .comment-form-rating .stars {
    display: inline-flex;
    gap: 6px;
    margin: 2px 0 0;
    vertical-align: middle;
}
.gh-pdp-reviews .comment-form-rating .stars a {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    overflow: hidden;
    color: transparent;
    text-indent: -9999px;
    text-decoration: none;
}
.gh-pdp-reviews .comment-form-rating .stars a::before {
    content: "★";
    position: absolute;
    inset: 0;
    color: #d5c7b8;
    display: grid;
    place-items: center;
    font-size: 28px;
    line-height: 1;
    text-indent: 0;
    transition: 0.18s ease;
}
.gh-pdp-reviews .comment-form-rating .stars:hover a::before,
.gh-pdp-reviews .comment-form-rating .stars.selected a:not(.active)::before,
.gh-pdp-reviews .comment-form-rating .stars.selected a.active::before {
    color: var(--gold);
}
.gh-pdp-reviews .comment-form-rating .stars a:hover ~ a::before,
.gh-pdp-reviews .comment-form-rating .stars.selected a.active ~ a::before {
    color: #d5c7b8;
}
.gh-pdp-reviews .comment-form-rating .stars a:hover::before {
    transform: translateY(-2px) scale(1.08);
}
.gh-pdp-reviews .form-submit {
    margin: 0;
}
.gh-pdp-reviews .form-submit .submit {
    width: auto;
    min-width: 180px;
    border: 0;
    border-radius: 999px;
    background: var(--dark);
    color: #fff;
    cursor: pointer;
    font-weight: 900;
    padding: 15px 28px;
}
.gh-pdp-reviews .form-submit .submit:hover {
    background: var(--gold);
}
.gh-pdp-reviews .woocommerce-pagination {
    margin-top: 20px;
}
.gh-related-products {
    margin-top: 80px;
}
.gh-related-products .related {
    background: linear-gradient(135deg, #fff, #fdecef);
    border-radius: 48px;
    padding: 42px;
}
.gh-related-products h2 {
    font-family: Georgia, serif;
    font-size: 38px;
    text-align: center;
    margin-bottom: 30px;
}
.gh-sticky-atc {
    display: none;
}
@media (max-width: 991px) {
    .gh-pdp-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .gh-pdp-gallery,
    .gh-pdp-info {
        position: static;
    }
    .gh-pdp-info {
        padding: 28px;
    }
    .gh-pdp-reviews .woocommerce-Reviews {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 575px) {
    .gh-pdp {
        padding: 0 0 110px;
    }
    .gh-pdp-breadcrumb {
        display: none;
    }
    .gh-pdp-gallery-card,
    .gh-pdp-info {
        border-radius: 30px;
        padding: 14px;
    }
    .gh-pdp-main-image {
        border-radius: 24px;
        aspect-ratio: 1/1;
        max-height: 60vh;
    }
    .gh-pdp-main-image img {
        border-radius: 24px;
        max-height: 60vh;
        object-fit: contain;
    }
    .gh-pdp-thumbs {
        display: flex;
        overflow-x: auto;
        gap: 10px;
    }
    .gh-pdp-thumb {
        min-width: 78px;
    }
    .gh-pdp-thumb img {
        height: 64px;
    }
    .gh-pdp-title {
        font-size: 34px;
    }
    .gh-pdp-price {
        font-size: 25px;
    }
    .gh-pdp-highlights,
    .gh-pdp-service-box {
        grid-template-columns: 1fr;
    }
    .gh-pdp-cart-box form.cart {
        display: block;
    }
    .gh-pdp-cart-box .quantity {
        margin-bottom: 12px;
    }
    .gh-pdp-cart-box .single_add_to_cart_button {
        width: 100%;
        margin-top: 10px;
    }
    .gh-pdp-reviews {
        padding: 0 0 70px;
    }
    .gh-pdp-reviews #comments,
    .gh-pdp-reviews #review_form_wrapper {
        border-radius: 24px;
        padding: 18px;
    }
    .gh-pdp-reviews .comment_container {
        grid-template-columns: 1fr;
    }
    .gh-sticky-atc {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(14px);
        border: 1px solid rgba(201, 152, 69, 0.22);
        box-shadow: 0 18px 50px rgba(31, 27, 24, 0.22);
        border-radius: 22px;
        padding: 12px;
    }
    .gh-sticky-atc strong {
        display: block;
        font-size: 13px;
        max-width: 180px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .gh-sticky-atc span {
        display: block;
        color: var(--gold);
        font-weight: 900;
        font-size: 13px;
    }
    .gh-sticky-atc-btn {
        background: var(--dark);
        color: #fff !important;
        border-radius: 999px;
        padding: 12px 16px;
        font-size: 13px;
        font-weight: 900;
        white-space: nowrap;
    }
}

.gh-page-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 45px;
}

.gh-page-head span {
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.gh-page-head h1 {
    font-family: Georgia, serif;
    font-size: clamp(38px, 5vw, 64px);
    margin: 10px 0;
}

.gh-page-head p {
    color: var(--muted);
}

.gh-wc-page,
.gh-cart-page,
.gh-checkout-page {
    padding: 40px 0;
    background: linear-gradient(180deg, #fffaf2 0%, #fff 100%);
}

.gh-wc-page > .container {
    max-width: 1200px;
}

.gh-wc-page .gh-cart-page,
.gh-wc-page .gh-checkout-page {
    padding: 0;
    background: transparent;
}

.gh-wc-page .gh-cart-page > .container,
.gh-wc-page .gh-checkout-page > .container {
    max-width: none;
    width: 100%;
}

.gh-cart-layout,
.gh-checkout-layout {
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 34px;
    align-items: flex-start;
}

.gh-cart-items,
.gh-checkout-card,
.gh-cart-totals {
    background: #fff;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.gh-cart-items {
    padding: 24px;
}

.gh-cart-item {
    display: grid;
    grid-template-columns: 110px 1fr 120px 120px 36px;
    gap: 18px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.gh-cart-item:first-child {
    padding-top: 0;
}

.gh-cart-img img {
    width: 110px;
    height: 120px;
    object-fit: cover;
    border-radius: 18px;
}

.gh-cart-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.gh-cart-meta,
.gh-cart-price {
    color: var(--muted);
    font-size: 14px;
}

.gh-cart-qty .quantity:not(.gh-quantity-stepper) input {
    width: 82px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    text-align: center;
    font-weight: 800;
}

.gh-cart-subtotal {
    font-weight: 900;
}

.gh-cart-remove .remove {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff1f1;
    color: #c0392b !important;
    font-size: 22px;
}

.gh-cart-actions {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-top: 24px;
    flex-wrap: wrap;
}

.gh-coupon {
    display: flex;
    gap: 10px;
}

.gh-coupon input {
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 0 18px;
}

.gh-wc-page .button,
.gh-wc-page button.button,
.gh-wc-page input.button,
.gh-wc-page #respond input#submit,
.gh-wc-page a.button,
.gh-coupon button,
.gh-update-cart,
.gh-wc-page .wc-proceed-to-checkout a.checkout-button,
.gh-wc-cart-page .wc-block-cart__submit-button,
.gh-wc-cart-page .wc-block-cart__submit-container .wc-block-components-button,
.gh-wc-page.woocommerce-checkout #payment #place_order,
.gh-wc-page .woocommerce-checkout #payment #place_order {
    border: 0;
    border-radius: 999px;
    background: var(--dark);
    color: #fff !important;
    padding: 14px 24px;
    font-weight: 900;
    text-decoration: none;
    transition: 0.3s ease;
}

.gh-wc-cart-page .wc-block-cart__submit-button {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gh-wc-cart-page .wc-block-components-button__text {
    color: inherit;
}

.gh-wc-page .button:hover,
.gh-wc-page button.button:hover,
.gh-wc-page input.button:hover,
.gh-wc-page #respond input#submit:hover,
.gh-wc-page a.button:hover,
.gh-coupon button:hover,
.gh-update-cart:hover,
.gh-wc-page .wc-proceed-to-checkout a.checkout-button:hover,
.gh-wc-cart-page .wc-block-cart__submit-button:hover,
.gh-wc-cart-page .wc-block-cart__submit-container .wc-block-components-button:hover,
.gh-wc-page.woocommerce-checkout #payment #place_order:hover,
.gh-wc-page .woocommerce-checkout #payment #place_order:hover {
    background: var(--gold);
    color: #fff;
}

.gh-cart-totals {
    padding: 28px;
    position: sticky;
    top: 110px;
}

.gh-cart-totals h2,
.gh-checkout-card h3 {
    font-family: Georgia, serif;
    font-size: 28px;
    margin-bottom: 22px;
}

.gh-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.gh-summary-row span {
    color: var(--muted);
}

.gh-total {
    font-size: 20px;
    border-bottom: 0;
}

.gh-summary-shipping {
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.gh-cart-trust {
    margin-top: 22px;
    display: grid;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
}

.gh-checkout-card {
    padding: 28px;
    margin-bottom: 24px;
}

.gh-wc-page.woocommerce form .form-row input.input-text,
.gh-wc-page.woocommerce form .form-row textarea,
.gh-wc-page.woocommerce form .form-row select,
.gh-wc-page .woocommerce form .form-row input.input-text,
.gh-wc-page .woocommerce form .form-row textarea,
.gh-wc-page .woocommerce form .form-row select,
.gh-wc-page .select2-container--default .select2-selection--single {
    min-height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 10px 14px;
    background: #fff;
}

.gh-wc-page .select2-container--default .select2-selection--single {
    padding-top: 8px;
}

.gh-wc-page.woocommerce form .form-row label,
.gh-wc-page .woocommerce form .form-row label {
    font-weight: 700;
    color: var(--dark);
}

.gh-wc-page .woocommerce-checkout-review-order-table {
    border: 0 !important;
}

.gh-wc-page .woocommerce-checkout-review-order-table th,
.gh-wc-page .woocommerce-checkout-review-order-table td {
    border-color: rgba(0, 0, 0, 0.08) !important;
    padding: 14px 0 !important;
}

.gh-wc-page.woocommerce-checkout #payment,
.gh-wc-page .woocommerce-checkout #payment {
    background: #fffaf2;
    border-radius: 22px;
    margin-top: 20px;
}

.gh-wc-page.woocommerce-checkout #payment div.payment_box,
.gh-wc-page .woocommerce-checkout #payment div.payment_box {
    background: #fff;
    border-radius: 16px;
}

.gh-wc-page.woocommerce-checkout #payment ul.payment_methods,
.gh-wc-page .woocommerce-checkout #payment ul.payment_methods {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.gh-wc-account-page .woocommerce {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    align-items: flex-start;
}

.gh-wc-account-page .woocommerce-MyAccount-navigation,
.gh-wc-account-page .woocommerce-MyAccount-content {
    float: none;
    width: auto;
}

.gh-wc-account-page .woocommerce-MyAccount-navigation {
    background: #fff;
    border-radius: 26px;
    box-shadow: var(--shadow);
    padding: 18px;
    position: sticky;
    top: 110px;
}

.gh-wc-account-page .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.gh-wc-account-page .woocommerce-MyAccount-navigation a {
    display: block;
    border-radius: 14px;
    padding: 13px 15px;
    color: var(--dark);
    font-weight: 800;
}

.gh-wc-account-page .woocommerce-MyAccount-navigation .is-active a,
.gh-wc-account-page .woocommerce-MyAccount-navigation a:hover {
    background: var(--dark);
    color: #fff;
}

.gh-wc-account-page .woocommerce-MyAccount-content {
    background: #fff;
    border-radius: 26px;
    box-shadow: var(--shadow);
    padding: 30px;
    min-height: 360px;
}

.gh-wc-account-page .woocommerce-MyAccount-content p:first-child {
    margin-top: 0;
}

.gh-wc-account-page .woocommerce-MyAccount-content form {
    margin: 0;
}

.gh-wc-account-page .woocommerce-MyAccount-content .form-row {
    margin: 0 0 18px;
    padding: 0;
}

.gh-wc-account-page .woocommerce-MyAccount-content .form-row-first,
.gh-wc-account-page .woocommerce-MyAccount-content .form-row-last {
    width: calc(50% - 10px);
}

.gh-wc-account-page .woocommerce-MyAccount-content .form-row-first {
    float: left;
}

.gh-wc-account-page .woocommerce-MyAccount-content .form-row-last {
    float: right;
}

.gh-wc-account-page .woocommerce-MyAccount-content .form-row-wide,
.gh-wc-account-page .woocommerce-MyAccount-content .clear {
    clear: both;
}

.gh-wc-account-page .woocommerce-MyAccount-content input.input-text,
.gh-wc-account-page .woocommerce-MyAccount-content input[type="email"],
.gh-wc-account-page .woocommerce-MyAccount-content input[type="password"],
.gh-wc-account-page .woocommerce-MyAccount-content input[type="tel"],
.gh-wc-account-page .woocommerce-MyAccount-content input[type="text"],
.gh-wc-account-page .woocommerce-MyAccount-content select,
.gh-wc-account-page .woocommerce-MyAccount-content textarea,
.gh-wc-account-page .woocommerce-MyAccount-content .select2-container--default .select2-selection--single {
    width: 100%;
    min-height: 50px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    padding: 11px 14px;
    color: var(--dark);
}

.gh-wc-account-page .woocommerce-MyAccount-content .select2-container {
    width: 100% !important;
}

.gh-wc-account-page .woocommerce-MyAccount-content .select2-container--default .select2-selection--single {
    display: flex;
    align-items: center;
}

.gh-wc-account-page .woocommerce-MyAccount-content label {
    display: block;
    margin-bottom: 7px;
    color: var(--dark);
    font-weight: 800;
}

.gh-wc-account-page .woocommerce-MyAccount-content fieldset {
    border: 1px solid rgba(201, 152, 69, 0.18);
    border-radius: 22px;
    padding: 22px;
    margin: 26px 0;
    background: #fffaf2;
}

.gh-wc-account-page .woocommerce-MyAccount-content legend {
    padding: 0 10px;
    color: var(--gold);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

.gh-wc-account-page .woocommerce-MyAccount-content em {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-top: 6px;
}

.gh-wc-account-page .woocommerce-Address {
    background: #fffaf2;
    border: 1px solid rgba(201, 152, 69, 0.16);
    border-radius: 22px;
    padding: 22px;
    margin-bottom: 20px;
}

.gh-wc-account-page .woocommerce-Address-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.gh-wc-account-page .woocommerce-Address-title h2 {
    font-family: Georgia, serif;
    font-size: 25px;
    margin: 0;
}

.gh-wc-account-page .woocommerce-Address-title .edit {
    border-radius: 999px;
    background: var(--dark);
    color: #fff;
    padding: 9px 16px;
    font-weight: 900;
}

.gh-wc-account-page .woocommerce-MyAccount-content address {
    color: var(--muted);
    line-height: 1.75;
}

.gh-wc-account-page .woocommerce-EditAccountForm .button,
.gh-wc-account-page .woocommerce-address-fields .button {
    margin-top: 8px;
    min-width: 170px;
}

@media (max-width: 991px) {
    .gh-cart-layout,
    .gh-checkout-layout,
    .gh-wc-account-page .woocommerce {
        grid-template-columns: 1fr;
    }

    .gh-cart-totals,
    .gh-wc-account-page .woocommerce-MyAccount-navigation {
        position: static;
    }

    .gh-cart-item {
        grid-template-columns: 90px 1fr;
        align-items: flex-start;
    }

    .gh-cart-img img {
        width: 90px;
        height: 100px;
    }

    .gh-cart-qty,
    .gh-cart-subtotal,
    .gh-cart-remove {
        grid-column: 2;
    }

    .gh-cart-actions {
        flex-direction: column;
    }

    .gh-coupon {
        width: 100%;
    }

    .gh-coupon input {
        flex: 1;
    }

    .gh-wc-account-page .woocommerce-MyAccount-content .form-row-first,
    .gh-wc-account-page .woocommerce-MyAccount-content .form-row-last {
        float: none;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .gh-cart-page,
    .gh-checkout-page {
        padding: 50px 0;
    }

    .gh-cart-items,
    .gh-checkout-card,
    .gh-cart-totals {
        border-radius: 22px;
    }

    .gh-cart-items,
    .gh-checkout-card,
    .gh-cart-totals {
        padding: 20px;
    }
}


.woocommerce-form-login{
    display: grid;
    gap: 18px;
}
.woocommerce-form-login input[type="text"],
.woocommerce-form-login input[type="email"],
.woocommerce-form-login input[type="password"],
.woocommerce-form-login input[type="tel"]{
    width:100%;
}
.show-password-input{
    display:none;
}
.gh-wc-page .woocommerce .woocommerce-form-login__submit{
    display:block;
    padding:14px 50px;
    margin-top:10px;
}
.gh-page{
    padding-left:16px;
    padding-right:16px;
}


body:not(.logged-in) .gh-wc-account-page .woocommerce {
  /* login page only styles here */
  display:block;
  max-width:500px;
  margin:0 auto
}
body:not(.logged-in) .gh-wc-account-page .woocommerce h2{
    margin-bottom:16px;
}


/* Wrapper */
.woocommerce-order {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 16px;
}

/* Top Summary */
.woocommerce-order-overview {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 30px 0 !important;
  padding: 0 !important;
}

.woocommerce-order-overview li {
  list-style: none;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 14px;
  font-size: 13px;
  color: #777;
}

.woocommerce-order-overview strong {
  display: block;
  margin-top: 6px;
  font-size: 15px;
  color: #222;
  font-weight: 600;
}

/* Section Cards */
.woocommerce-order-details,
.woocommerce-customer-details {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  margin-top: 24px;
  border: 1px solid #eee;
}

/* Headings */
.woocommerce-order-details h2,
.woocommerce-customer-details h2 {
  font-size: 22px;
  margin-bottom: 16px;
}

/* Table Styling */
.woocommerce-table {
  border: none !important;
}

.woocommerce-table th {
  background: #f9f9f9;
  font-weight: 600;
  padding: 12px !important;
}

.woocommerce-table td {
  padding: 14px 12px !important;
  border-color: #eee !important;
}

.woocommerce-table tfoot tr:last-child td {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

/* Address layout */
.woocommerce-customer-details address {
  line-height: 1.8;
  font-size: 14px;
  color: #555;
}

/* Thank you text */
.woocommerce-order p:first-child {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
/* Make order details container full width */
.woocommerce-order-details {
  width: 100%;
}

/* Force table to take full width */
.woocommerce-order-details .woocommerce-table {
  width: 100% !important;
  table-layout: auto;
}

/* Remove unnecessary max-width constraints */
.woocommerce-order-details table {
  width: 100%;
}

/* Fix column alignment */
.woocommerce-table th:first-child,
.woocommerce-table td:first-child {
  width: 50%;
}

.woocommerce-table th:last-child,
.woocommerce-table td:last-child {
  width: 30%;
  text-align: right;
}

/* Improve spacing */
.woocommerce-table td,
.woocommerce-table th {
  padding: 5px 14px !important;
}

/* Make product row breathe */
.woocommerce-table tbody tr td:first-child {
  font-size: 16px;
}
/* Optional: better hierarchy for totals */
.woocommerce-table tfoot th:first-child {
  text-align: right;
}

/* Optional: better hierarchy for totals */
.woocommerce-table tfoot td:first-child {
  font-weight: 500;
  color: #555;
}

.woocommerce-table tfoot tr:last-child td {
  font-size: 18px;
  font-weight: 600;
}
/* Wrap both address blocks */
.woocommerce-customer-details {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  /* gap: 24px; */
}

/* Each address box */
.woocommerce-customer-details .woocommerce-column {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 20px;
}

/* Headings */
.woocommerce-customer-details h2 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* Address text */
.woocommerce-customer-details address {
  font-style: normal;
  line-height: 1.8;
  color: #555;
  font-size: 14px;
}
.woocommerce-columns--addresses{
    display:flex;
    gap:24px;
}
.woocommerce-column--billing-address,
.woocommerce-column--shipping-address{
    min-width:50%;
}

/* Highlight total */
.woocommerce-table tfoot th {
    background:none;
}
.woocommerce-table tfoot tr:first-child th,
.woocommerce-table tfoot tr:first-child td{
  border-top:1px solid #eee !important;
}
.sticky-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.sticky-contact a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.whatsapp-btn {
  background: #25D366;
}

.call-btn {
  background: #0b192c; /* your theme color */
}

.sticky-contact a:hover {
  transform: scale(1.1);
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .sticky-contact {
    bottom: 15px;
    right: 15px;
  }

  .sticky-contact a {
    width: 45px;
    height: 45px;
  }
}
/* Mobile */
@media (max-width: 768px) {
  .woocommerce-customer-details {
    grid-template-columns: 1fr;
  }
}
/* Mobile */
@media (max-width: 768px) {
  .woocommerce-order-overview {
    grid-template-columns: 1fr;
  }

  .woocommerce-order-details,
  .woocommerce-customer-details {
    padding: 18px;
  }
}
