:root {
    --black: #111111;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --soft: #f7f4ee;
    --muted: #777777;
    --announcement-height: 38px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--black);
    font-family: "Poppins", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.serif-title,
.brand-mark,
h1,
h2,
h3 {
    font-family: "Playfair Display", serif;
}

.luxury-nav {
    background: rgba(17, 17, 17, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.24);
}

.has-announcement-bar .luxury-nav {
    top: var(--announcement-height);
}

.luxury-nav .main-menu {
    letter-spacing: 0;
}

.luxury-nav .main-menu .nav-link {
    font-weight: 600;
}

.luxury-nav .nav-actions .nav-link {
    white-space: nowrap;
}

.brand-mark {
    color: var(--gold) !important;
    font-weight: 700;
    letter-spacing: 0;
    font-size: 1.65rem;
}

.luxury-nav .nav-link {
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0;
    padding: 0.75rem 0.65rem;
}

.luxury-nav .nav-link.active,
.luxury-nav .nav-link:hover {
    color: var(--gold);
}

.nav-icon-btn {
    background: transparent;
    border: 0;
}

.header-search-item {
    display: flex;
    align-items: center;
}

.header-search-form {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.header-search-input {
    width: 0;
    min-height: 38px;
    opacity: 0;
    pointer-events: none;
    border: 1px solid rgba(212, 175, 55, 0.48);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    outline: 0;
    padding: 0;
    transition: width 0.24s ease, opacity 0.18s ease, padding 0.24s ease;
}

.header-search-input::placeholder {
    color: rgba(255, 255, 255, 0.62);
}

.header-search-form.open .header-search-input,
.header-search-input:focus {
    width: min(260px, 34vw);
    opacity: 1;
    pointer-events: auto;
    padding: 0 2.65rem 0 1rem;
}

.header-search-toggle {
    position: relative;
    z-index: 1;
}

.header-search-form.open .header-search-toggle {
    margin-left: -2.45rem;
}

.announcement-bar {
    background: var(--black);
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 800;
    left: 0;
    letter-spacing: 0;
    line-height: 1;
    overflow: hidden;
    padding: 0.68rem 0;
    position: fixed;
    right: 0;
    text-transform: uppercase;
    top: 0;
    z-index: 1040;
}

.announcement-track {
    align-items: center;
    display: inline-flex;
    gap: 4rem;
    min-width: 100%;
    white-space: nowrap;
}

.announcement-scroll .announcement-track {
    animation: announcement-marquee 24s linear infinite;
}

.announcement-flash .announcement-track {
    display: flex;
    justify-content: center;
    text-align: center;
    white-space: normal;
}

.announcement-flash span {
    animation: announcement-flash 1.45s ease-in-out infinite;
}

.announcement-static .announcement-track {
    display: flex;
    justify-content: center;
    padding-inline: 1rem;
    text-align: center;
    white-space: normal;
}

.has-announcement-bar .page-hero {
    padding-top: 11.35rem;
}

.has-announcement-bar .hero-content {
    padding-top: 112px;
}

@keyframes announcement-marquee {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes announcement-flash {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.32;
    }
}

.hero-slide {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 17, 17, 0.78), rgba(17, 17, 17, 0.25));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 680px;
    padding-top: 72px;
}

.hero-content h1 {
    font-size: clamp(3rem, 7vw, 6.8rem);
    line-height: 0.95;
    margin-bottom: 1.25rem;
}

.hero-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.82);
}

.btn-gold,
.btn-outline-gold:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    font-weight: 700;
}

.btn-outline-gold {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    font-weight: 700;
}

.section-pad {
    padding: 5rem 0;
}

.section-kicker {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.section-title {
    font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.benefit-card,
.product-card,
.filter-panel,
.account-panel,
.policy-panel,
.contact-panel {
    border: 1px solid rgba(17, 17, 17, 0.1);
    background: var(--white);
    border-radius: 8px;
}

.policy-panel {
    max-width: 920px;
    margin: 0 auto;
    padding: 2rem;
    color: var(--text);
}

.policy-panel h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.65rem;
    margin: 2rem 0 0.85rem;
}

.policy-panel h2:first-child {
    margin-top: 0;
}

.policy-panel p,
.policy-panel li {
    color: var(--muted);
    line-height: 1.8;
}

.policy-panel ul {
    margin: 0 0 1.25rem;
    padding-left: 1.2rem;
}

.policy-contact {
    border-top: 1px solid rgba(17, 17, 17, 0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    margin-top: 2rem;
    padding-top: 1rem;
}

.benefit-card {
    padding: 1.5rem;
    height: 100%;
}

.benefit-card i {
    color: var(--gold);
    font-size: 2rem;
}

.collection-tile {
    min-height: 280px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center 28%;
    background-repeat: no-repeat;
}

.collection-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.1), rgba(17, 17, 17, 0.75));
}

.collection-tile .tile-content {
    position: absolute;
    inset-inline: 1.25rem;
    bottom: 1.25rem;
    color: var(--white);
}

.product-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(17, 17, 17, 0.12);
}

.product-img-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    background: var(--soft);
    overflow: hidden;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.product-card:hover img {
    transform: scale(1.04);
}

.product-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.35rem;
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.25s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.icon-action {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    background: var(--white);
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 50%;
    color: var(--black);
    flex: 0 0 34px;
    text-decoration: none;
}

.product-info {
    padding: 1rem;
}

.product-info h6 {
    min-height: 2.7em;
    margin-bottom: 0.75rem;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.product-price-wrap {
    min-width: 0;
    display: flex;
    align-items: baseline;
    flex: 1 1 auto;
    gap: 0.4rem;
    line-height: 1.1;
    white-space: nowrap;
}

.price {
    color: var(--gold);
    font-weight: 700;
    white-space: nowrap;
}

.old-price {
    color: var(--muted);
    text-decoration: line-through;
    font-size: 0.82rem;
    white-space: nowrap;
}

.page-hero {
    padding: 9rem 0 4rem;
    background: var(--black);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--white);
}

.filter-panel,
.account-panel,
.contact-panel {
    padding: 1.25rem;
}

.form-control,
.form-select {
    border-radius: 0;
    border-color: rgba(17, 17, 17, 0.16);
    min-height: 46px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.18);
}

.testimonial-card {
    background: var(--black);
    color: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    min-height: 160px;
    height: auto;
    overflow-wrap: anywhere;
}

.product-review-section {
    clear: both;
    overflow: hidden;
    margin-bottom: 1rem;
}

.related-products-section {
    clear: both;
    position: relative;
    z-index: 1;
    padding-top: 5.5rem;
}

.instagram-live-feed {
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 8px;
    min-height: 520px;
    overflow: hidden;
    background: var(--soft);
}

.instagram-live-feed iframe {
    border: 0;
    width: 100%;
    min-height: 520px;
    display: block;
}

.instagram-follow-panel {
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 8px;
    background: var(--soft);
    padding: 3rem 1.5rem;
}

.instagram-follow-panel i {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.newsletter-band {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0;
}

.site-footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.site-footer h6 {
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 1rem;
}

.site-footer a {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0.65rem;
}

.site-footer a:hover {
    color: var(--gold);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 50%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 1.25rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
}

.product-detail-layout {
    align-items: flex-start;
}

.product-zoom-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, 0.16);
    background: var(--soft);
    cursor: zoom-in;
}

.product-detail-image {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    width: 100%;
    transform-origin: center;
    transition: transform 0.18s ease, transform-origin 0.08s ease;
    will-change: transform;
}

.product-zoom-frame.is-zoomed {
    cursor: zoom-out;
}

.product-zoom-frame.is-zoomed .product-detail-image {
    transform: scale(2.15);
}

.product-zoom-button {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(17, 17, 17, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--black);
    display: inline-grid;
    place-items: center;
    z-index: 2;
}

.product-detail-title {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
    margin-bottom: 0.85rem;
}

.product-description {
    line-height: 1.8;
    margin-bottom: 1.35rem;
    max-width: 760px;
}

.product-description h1,
.product-description h2,
.product-description h3,
.product-description h4 {
    color: var(--black);
    font-family: "Playfair Display", serif;
    margin: 0 0 0.75rem;
}

.product-description p,
.product-description ul,
.product-description ol,
.product-description blockquote,
.product-description table {
    margin-bottom: 1rem;
}

.product-description ul,
.product-description ol {
    padding-left: 1.35rem;
}

.product-description blockquote {
    border-left: 3px solid var(--gold);
    color: var(--muted);
    padding-left: 1rem;
}

.product-description a {
    color: var(--gold);
    font-weight: 600;
}

.thumb-image {
    aspect-ratio: 1;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
}

.thumb-image.active {
    border-color: var(--gold);
}

.size-option input {
    display: none;
}

.size-option span {
    position: relative;
    min-width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(17, 17, 17, 0.18);
    cursor: pointer;
}

.size-stock-count {
    align-items: center;
    background: #dc3545;
    border-radius: 999px;
    color: #fff;
    display: none;
    font-size: 0.62rem;
    font-weight: 700;
    justify-content: center;
    line-height: 1;
    min-width: 18px;
    min-height: 18px;
    padding: 3px 5px;
    position: absolute;
    right: -8px;
    top: -8px;
}

.size-option input:checked + span .size-stock-count {
    display: inline-flex;
}

.size-option input:checked + span {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.luxury-modal {
    background: var(--black);
    color: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.35);
}

.scroll-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: 42px;
    height: 42px;
    display: none;
    place-items: center;
    border: 0;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    z-index: 20;
}

.scroll-top.show {
    display: grid;
}

.cart-link {
    position: relative;
}

.cart-count-badge {
    min-width: 20px;
    height: 20px;
    display: inline-grid;
    place-items: center;
    margin-left: 0.35rem;
    padding: 0 0.3rem;
    background: var(--gold);
    color: var(--black);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
}

.mini-cart-dropdown {
    width: min(360px, calc(100vw - 2rem));
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.32);
    box-shadow: 0 18px 50px rgba(17, 17, 17, 0.18);
}

.mini-cart-header,
.mini-cart-total,
.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.mini-cart-header {
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
}

.mini-cart-items {
    display: grid;
    gap: 0.75rem;
    max-height: 260px;
    overflow: auto;
}

.mini-cart-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 0.75rem;
    align-items: center;
}

.mini-cart-item img {
    width: 58px;
    height: 72px;
    object-fit: cover;
    border-radius: 6px;
}

.mini-cart-item strong,
.mini-cart-item small {
    display: block;
}

.mini-cart-total {
    border-top: 1px solid rgba(17, 17, 17, 0.1);
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.cart-table-wrap {
    display: grid;
    gap: 1.1rem;
}

.cart-page-container {
    max-width: 1540px;
}

.cart-page-container .row {
    --bs-gutter-x: 2rem;
}

.cart-line {
    display: grid;
    grid-template-columns: 132px minmax(360px, 1fr) 134px 128px 44px;
    gap: 1.25rem;
    align-items: center;
    border: 1px solid rgba(17, 17, 17, 0.09);
    border-radius: 8px;
    padding: 1.25rem;
    background: var(--white);
    box-shadow: 0 18px 44px rgba(17, 17, 17, 0.06);
}

.cart-page-container .cart-line {
    grid-template-columns: 140px minmax(460px, 1fr) 134px 132px 44px;
}

.cart-page-container .cart-line img {
    width: 140px;
}

.cart-page-container .cart-line-info h5 {
    max-width: none;
}

.cart-line img {
    width: 132px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 6px;
}

.cart-line-info {
    min-width: 0;
}

.cart-line-info h5 {
    font-size: clamp(1.05rem, 1.15vw, 1.3rem);
    line-height: 1.22;
    margin-bottom: 0.45rem !important;
    max-width: 780px;
    overflow-wrap: anywhere;
}

.cart-line-info p {
    line-height: 1.35;
}

.cart-qty {
    display: grid;
    grid-template-columns: 38px 58px 38px;
    border: 1px solid rgba(17, 17, 17, 0.14);
    width: 134px;
    flex: 0 0 134px;
}

.cart-qty button,
.cart-qty input {
    border: 0;
    background: var(--white);
    min-height: 38px;
    text-align: center;
}

.cart-qty button {
    font-weight: 800;
}

.cart-qty input {
    width: 58px;
    appearance: textfield;
}

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

.cart-line-total {
    text-align: right;
    white-space: nowrap;
    font-size: 0.98rem;
}

.cart-line .icon-action {
    justify-self: end;
}

.cart-line .price {
    display: inline-block;
    margin-top: 0.15rem;
}

.applied-coupon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border: 1px solid rgba(212, 175, 55, 0.5);
    background: #fff8e3;
    color: var(--black);
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
}

.applied-coupon button {
    border: 0;
    background: transparent;
    color: #8a5a00;
    font-size: 1.35rem;
    line-height: 1;
}

.available-coupons {
    display: grid;
    gap: 0.65rem;
}

.coupon-tile {
    text-align: left;
    border: 1px dashed rgba(17, 17, 17, 0.22);
    background: var(--white);
    border-radius: 8px;
    padding: 0.75rem;
}

.coupon-tile strong,
.coupon-tile span,
.coupon-tile small {
    display: block;
}

.coupon-tile strong {
    color: var(--gold-dark);
}

.coupon-tile small {
    color: #777;
}

.order-summary-panel,
.checkout-section,
.order-success-panel {
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 8px;
    background: var(--white);
    padding: 1.5rem;
}

.summary-row {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.summary-row.total {
    border-bottom: 0;
    font-size: 1.25rem;
}

.checkout-item {
    display: grid;
    grid-template-columns: 62px 1fr auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.checkout-item img {
    width: 62px;
    height: 78px;
    object-fit: cover;
    border-radius: 6px;
}

.checkout-item small {
    display: block;
    color: var(--muted);
}

.payment-option {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 0.75rem;
    align-items: start;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.8rem;
    cursor: pointer;
}

.payment-option input {
    margin-top: 0.25rem;
    accent-color: var(--gold);
}

.payment-option strong,
.payment-option small {
    display: block;
}

.payment-option small {
    color: var(--muted);
}

.order-success-panel i {
    color: var(--gold);
    font-size: 4rem;
}

.order-success-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.order-success-details div {
    background: var(--soft);
    border-radius: 8px;
    padding: 1rem;
}

.order-success-details span,
.order-success-details strong {
    display: block;
}

.email-preview {
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 8px;
    padding: 1rem;
}

@media (max-width: 1199.98px) {
    .cart-line,
    .cart-page-container .cart-line {
        grid-template-columns: 116px minmax(240px, 1fr) 134px 118px 44px;
        gap: 1rem;
    }

    .cart-line img,
    .cart-page-container .cart-line img {
        width: 116px;
    }
}

@media (max-width: 991.98px) {
    :root {
        --announcement-height: 36px;
    }

    .announcement-bar {
        font-size: 0.74rem;
        padding: 0.64rem 0;
    }

    .has-announcement-bar .page-hero {
        padding-top: 10.75rem;
    }

    .has-announcement-bar .hero-content {
        padding-top: 104px;
    }

    .luxury-nav .navbar-collapse {
        padding: 1rem 0;
    }

    .header-search-item,
    .header-search-form {
        width: 100%;
    }

    .header-search-form .header-search-input,
    .header-search-form.open .header-search-input,
    .header-search-input:focus {
        width: 100%;
        opacity: 1;
        pointer-events: auto;
        padding: 0 2.65rem 0 1rem;
    }

    .header-search-form .header-search-toggle,
    .header-search-form.open .header-search-toggle {
        margin-left: -2.45rem;
    }

    .product-actions {
        opacity: 1;
        transform: none;
    }

    .product-card-footer {
        align-items: center;
        gap: 0.35rem;
    }

    .icon-action {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
        font-size: 0.82rem;
    }

    .product-price-wrap {
        gap: 0.28rem;
    }

    .old-price {
        font-size: 0.76rem;
    }

    .newsletter-form,
    .footer-bottom {
        flex-direction: column;
    }

    .cart-line,
    .cart-page-container .cart-line {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .cart-line img,
    .cart-page-container .cart-line img {
        width: 96px;
    }

    .cart-qty,
    .cart-line-total,
    .cart-line .icon-action {
        grid-column: 2;
    }

    .cart-line-total {
        text-align: left;
    }

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

@media (max-width: 575.98px) {
    .section-pad {
        padding: 3.25rem 0;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .collection-tile {
        min-height: 220px;
    }
}
.tracking-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
    margin: 18px 0;
}

.tracking-step {
    border: 1px solid #e6dccd;
    border-radius: 8px;
    padding: 14px;
    background: #fff;
    color: #6c6258;
}

.tracking-step.completed {
    border-color: #9f6b2f;
    background: #fbf7f1;
    color: #171717;
}

.tracking-step .dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-block;
    background: #ddd;
    margin-right: 8px;
    vertical-align: middle;
}

.tracking-step.completed .dot {
    background: #9f6b2f;
}

.order-card-mobile {
    border: 1px solid #e6dccd;
    border-radius: 8px;
    padding: 16px;
    background: #fff;
}
