/* =========================================================
   YOTA JEWELRY
   NEW DROP PAGE
   COMPLETE STANDALONE VERSION
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --cream: #f8f3ed;
    --cream-light: #fcfaf7;
    --cream-dark: #eee5db;

    --brown: #8b5728;
    --brown-dark: #70431f;
    --gold: #b4864d;

    --text: #28231f;
    --muted: #6d6259;

    --border: #ddd3c9;

    --white: #ffffff;

    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Montserrat", Arial, sans-serif;

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream-light);
    color: var(--text);
    font-family: var(--sans);
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

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

button {
    font-family: inherit;
}

.container {
    width: min(1140px, calc(100% - 70px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    height: 120px;
    background: rgba(252,250,247,0.97);
    border-bottom: 1px solid #eee8e1;
    position: relative;
    z-index: 20;
}

.header-inner {
    width: min(1140px, calc(100% - 70px));
    height: 120px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}


/* Logo */

.logo {
    position: absolute;
    left: 50%;
    top: 8px;

    transform: translateX(-50%);

    width: 125px;
    height: 105px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 125px;
    height: auto;
    object-fit: contain;
}


/*
   If your logo file has a different name,
   change ONLY this image path in the HTML below.
*/


/* Social icons */

.header-socials {
    position: absolute;
    right: 0;

    display: flex;
    align-items: center;
    gap: 25px;
}

.header-socials a {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #1e1b19;

    transition: transform .2s ease, opacity .2s ease;
}

.header-socials a:hover {
    transform: translateY(-2px);
    opacity: .65;
}

.header-socials svg {
    width: 24px;
    height: 24px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 500px !important;

    position: relative;

    background:
        linear-gradient(
            90deg,
            rgba(249,243,236,0.98) 0%,
            rgba(249,243,236,0.94) 31%,
            rgba(249,243,236,0.55) 49%,
            rgba(249,243,236,0.02) 72%
        ),
        url("../images/hero.jpg") center right / cover no-repeat;

    display: flex;
    align-items: center;
}

.hero-inner {
    width: min(1140px, calc(100% - 70px));
    margin: 0 auto;

    padding: 48px 0 58px;

    position: relative;
    z-index: 2;
}

.hero-content {
    width: 470px;
}

.hero-kicker {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;

    color: var(--brown);

    margin-bottom: 12px;
}

.hero-title {
    font-family: var(--serif);

    font-size: clamp(55px, 5vw, 72px);
    font-weight: 500;
    line-height: .88;

    letter-spacing: -1px;

    color: #28231f;

    margin-bottom: 27px;
}

.hero-divider {
    width: 108px;
    height: 1px;

    background: var(--gold);

    position: relative;

    margin: 0 0 20px 0;
}

.hero-divider::after {
    content: "✦";

    position: absolute;
    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    color: var(--gold);

    background: transparent;

    padding: 0 7px;

    font-size: 16px;
}

.hero-description {
    width: 370px;

    font-family: Georgia, serif;
    font-size: 16px;
    font-style: italic;

    line-height: 1.45;

    color: #38312c;

    margin-bottom: 25px;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 216px;
    height: 43px;

    padding: 0 25px;

    background: var(--brown);
    color: white;

    border-radius: 4px;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: .2px;

    transition: background .2s ease, transform .2s ease;
}

.hero-button:hover {
    background: var(--brown-dark);
    transform: translateY(-2px);
}


/* =========================================================
   FEATURE BAR
========================================================= */

.feature-bar {
    position: relative;
    z-index: 10;

    width: min(900px, calc(100% - 80px));

    margin: -37px auto 0;

    min-height: 70px;

    background: rgba(255,255,255,.97);

    border: 1px solid var(--border);
    border-radius: 9px;

    box-shadow: 0 8px 25px rgba(70,50,30,.05);

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    align-items: center;
}

.feature-item {
    min-height: 42px;

    padding: 5px 23px;

    display: flex;
    align-items: center;
    gap: 14px;

    border-right: 1px solid #dcd3ca;
}

.feature-item:last-child {
    border-right: none;
}

.feature-icon {
    flex: 0 0 30px;

    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    stroke-width: 1.4;
}

.feature-text {
    font-size: 11px;
    line-height: 1.45;
    letter-spacing: .3px;
    text-transform: uppercase;
}


/* =========================================================
   COLLECTION
========================================================= */

.collection {
    padding: 18px 0 0;
    background:
        linear-gradient(
            to bottom,
            #fcfaf7 0%,
            #fbf8f4 100%
        );
}

.collection-heading {
    text-align: center;

    padding-top: 0;
    margin-bottom: 20px;
}

.collection-kicker {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    color: var(--brown);

    font-size: 14px;
    font-weight: 500;

    letter-spacing: 2px;

    margin-bottom: 3px;
}

.collection-kicker::before,
.collection-kicker::after {
    content: "";

    width: 27px;
    height: 1px;

    background: var(--gold);
}

.collection-title {
    font-family: var(--serif);

    font-size: 28px;
    font-weight: 500;

    letter-spacing: .2px;

    color: #2b2622;
}


/* =========================================================
   BRAND PROMISE
========================================================= */

.brand-promise {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 25px;

    text-align: center;
}

.brand-promise-title {
    margin-bottom: 8px;

    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;

    color: var(--brown-dark);
}

.brand-promise-text {
    margin: 0 auto 22px;

    max-width: 600px;

    font-size: 14px;
    line-height: 1.6;

    color: #666;
}

.brand-promise-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;

    flex-wrap: wrap;
}

.brand-promise-feature {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;

    color: var(--brown);
}

.brand-promise-icon {
    font-size: 13px;
    color: var(--gold);
}


/* =========================================================
   BRAND PROMISE — MOBILE
========================================================= */

@media (max-width: 600px) {

    .brand-promise {
        padding: 25px 15px;
    }

    .brand-promise-title {
        font-size: 16px;
        letter-spacing: 2.5px;
    }

    .brand-promise-text {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .brand-promise-features {
        flex-direction: column;
        gap: 12px;
    }

    .brand-promise-feature {
        font-size: 10px;
    }

}

/* =========================================================
   PRODUCTS GRID
========================================================= */

.products-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 16px;

    padding-bottom: 18px;
}

.product-card {
    background: #fff;

    border: 1px solid #e1d8cf;

    border-radius: 7px;

    overflow: hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.product-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 10px 22px rgba(80,55,30,.09);
}

.product-image {
    width: 100%;

    aspect-ratio: 1.28 / 1;

    object-fit: cover;

    background: #eee5db;
}

.product-info {
    padding: 8px 10px 8px;

    text-align: center;
}

.product-name {
    font-family: var(--sans);

    font-size: 12px;
    font-weight: 500;

    color: var(--brown);

    margin-bottom: 2px;
}

.product-price {
    font-size: 12px;
    font-weight: 500;

    margin-bottom: 7px;
}

.buy-button {
    width: 82%;

    height: 24px;

    margin: 0 auto;

    border: none;
    border-radius: 3px;

    background: var(--brown);
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    font-size: 11px;
    font-weight: 600;

    cursor: pointer;

    transition: background .2s ease, transform .2s ease;
}

.buy-button:hover {
    background: var(--brown-dark);
    transform: translateY(-1px);
}

.buy-button svg {
    width: 15px;
    height: 15px;
}



/* =========================================================
   SOLD OUT PRODUCT
========================================================= */

.product-image-wrap {
    position: relative;
    overflow: hidden;
}

.product-image-wrap .product-image {
    display: block;
    width: 100%;
}

/* Subtle faded image */
.product-card.sold .product-image {
    opacity: 0.62;
    filter: saturate(0.7);
}

/* SOLD OUT overlay */
.sold-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(247, 241, 233, 0.28);

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;

    color: var(--brown-dark);
}

/* Sold price */
.sold-price {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--brown);
}

/* Don't allow sold cards to look clickable */
.product-card.sold {
    cursor: default;
}


/* =========================================================
   ORDER + PAYMENT
========================================================= */

.order-section {
    width: min(1140px, calc(100% - 70px));

    margin: 0 auto 15px;

    min-height: 126px;

    padding: 18px 34px;

    background: linear-gradient(
        100deg,
        #fcfaf7,
        #f8f3ed
    );

    border: 1px solid #e0d7ce;

    border-radius: 8px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;
}

.whatsapp-area {
    display: flex;
    align-items: center;

    gap: 20px;

    padding-right: 35px;

    border-right: 1px solid #d8cec4;
}

.whatsapp-logo {
    width: 65px;
    height: 65px;

    flex: 0 0 65px;

    border-radius: 50%;

    background: #25D366;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    box-shadow:
        0 0 0 6px white,
        0 2px 7px rgba(0,0,0,.12);
}

.whatsapp-logo svg {
    width: 43px;
    height: 43px;
}

.order-title {
    font-family: var(--serif);

    font-size: 17px;
    font-weight: 600;

    margin-bottom: 5px;
}

.order-text {
    font-size: 10.5px;

    line-height: 1.55;

    max-width: 335px;
}

.order-bold {
    font-size: 11px;
    font-weight: 700;

    margin-top: 3px;
}


/* Payment */

.payment-area {
    padding-left: 35px;

    text-align: center;
}

.payment-title {
    font-family: var(--serif);

    font-size: 17px;
    font-weight: 600;

    margin-bottom: 2px;
}

.payment-text {
    font-size: 10px;

    margin-bottom: 11px;
}

.payment-buttons {
    display: flex;
    justify-content: center;

    gap: 34px;
}

.payment-button {
    width: 145px;
    height: 48px;

    border: 1px solid #d6cdc4;

    border-radius: 7px;

    background: rgba(255,255,255,.5);

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    font-size: 11px;
    font-weight: 500;
}

.paypal-logo {
    font-size: 20px;
    font-weight: 800;

    color: #1479b8;
}

.bank-icon svg {
    width: 23px;
    height: 23px;
}


/* =========================================================
   BENEFITS
========================================================= */

.benefits {
    width: min(1140px, calc(100% - 70px));

    margin: 0 auto 18px;

    min-height: 87px;

    padding: 13px 28px;

    background: #f1e9e1;

    border-radius: 8px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    align-items: center;
}

.benefit {
    display: flex;
    align-items: center;

    gap: 17px;

    padding: 0 18px;

    border-right: 1px solid #ded2c7;
}

.benefit:last-child {
    border-right: none;
}

.benefit-icon {
    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    color: #c4955b;
}

.benefit-icon svg {
    width: 44px;
    height: 44px;

    stroke-width: 1.1;
}

.benefit-title {
    font-size: 11px;
    font-weight: 600;

    margin-bottom: 2px;
}

.benefit-text {
    font-size: 9.5px;
    line-height: 1.4;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    min-height: 72px;

    background: #f7f1eb;

    border-top: 1px solid #e7ddd4;

    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    align-items: center;

    padding: 9px 46px;
}

.footer-social {
    display: flex;
    align-items: center;

    gap: 20px;
}

.footer-follow {
    font-size: 8px;
    text-transform: uppercase;

    letter-spacing: .6px;

    position: absolute;

    transform: translateY(-17px);
}

.footer-social a {
    display: flex;
    align-items: center;

    gap: 7px;

    font-size: 8px;
    text-transform: uppercase;
}

.footer-social svg {
    width: 17px;
    height: 17px;
}

.footer-thanks {
    text-align: center;

    font-family: "Brush Script MT", "Segoe Script", cursive;

    font-size: 20px;
    font-style: italic;

    color: #29231f;

    line-height: 1;
}

.footer-heart {
    display: block;

    color: var(--brown);

    font-family: Georgia, serif;

    font-size: 27px;

    margin-top: 2px;
}

.footer-copy {
    text-align: right;

    font-size: 9px;

    white-space: nowrap;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits {
        grid-template-columns: repeat(2, 1fr);

        gap: 15px;
    }

    .benefit:nth-child(2) {
        border-right: none;
    }

    .benefit {
        min-height: 55px;
    }

    .order-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .whatsapp-area {
        border-right: none;
        border-bottom: 1px solid #d8cec4;

        padding-right: 0;
        padding-bottom: 18px;
    }

    .payment-area {
        padding-left: 0;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 760px) {

    .container,
    .hero-inner,
    .header-inner {
        width: calc(100% - 34px);
    }

    .site-header {
        height: 92px;
    }

    .header-inner {
        height: 92px;
    }

    .logo {
        width: 95px;
        height: 86px;
        top: 3px;
    }

    .logo img {
        width: 95px;
    }

    .header-socials {
        right: 0;
        gap: 13px;
    }

    .header-socials a,
    .header-socials svg {
        width: 20px;
        height: 21px;
    }


    .hero {
        min-height: 377px;

        background:
           /* linear-gradient(
                90deg,
                rgba(249,243,236,.98),
                rgba(249,243,236,.82)
            ),*/
            url("../images/hero-mobile.jpg") center / cover no-repeat;
    }

    .hero-content {
        width: 100%;
        max-width: 450px;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-description {
        width: 330px;
    }


    .feature-bar {
        width: calc(100% - 30px);

        margin-top: -28px;

        grid-template-columns: repeat(2, 1fr);
    }

    .feature-item {
        border-bottom: 1px solid #dcd3ca;
    }

    .feature-item:nth-child(2) {
        border-right: none;
    }

    .feature-item:nth-child(3),
    .feature-item:nth-child(4) {
        border-bottom: none;
    }

    .feature-item:nth-child(4) {
        border-right: none;
    }


    .products-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 13px;
    }


    .benefits {
        width: calc(100% - 30px);

        padding: 15px;

        grid-template-columns: 1fr;
    }

    .benefit,
    .benefit:nth-child(2) {
        border-right: none;
        border-bottom: 1px solid #ded2c7;

        padding: 8px 10px;
    }

    .benefit:last-child {
        border-bottom: none;
    }


    .order-section {
        width: calc(100% - 30px);

        padding: 20px;
    }


    .site-footer {
        grid-template-columns: 1fr;

        gap: 15px;

        padding: 18px;

        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-follow {
        position: static;
        transform: none;

        margin-right: 8px;
    }

    .footer-copy {
        text-align: center;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 520px) {

    .hero {
        min-height: 356px;
    }

    .hero-inner {
        padding-top: 55px;
        padding-bottom: 75px;
    }

    .hero-title {
        font-size: 49px;
        line-height: .9;
    }

    .hero-kicker {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .hero-description {
        width: 290px;
        font-size: 14px;
    }

    .hero-button {
        min-width: 205px;
    }


    .feature-bar {
        grid-template-columns: 1fr 1fr;

        width: calc(100% - 20px);
    }

    .feature-item {
        padding: 8px 10px;

        gap: 8px;
    }

    .feature-icon,
    .feature-icon svg {
        width: 25px;
        height: 25px;
    }

    .feature-text {
        font-size: 8px;
    }


    .collection {
        padding-top: 16px;
    }

    .collection-title {
        font-size: 23px;
    }

    .collection-kicker {
        font-size: 11px;
    }


    .countdown-box {
        min-width: 68px;
        padding: 0 8px;
    }

    .countdown-number {
        font-size: 29px;
    }

    .countdown-label {
        font-size: 7px;
    }


    .products-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 9px;
    }

    .product-name {
        font-size: 9px;
    }

    .product-price {
        font-size: 10px;
    }

    .buy-button {
        width: 90%;

        height: 25px;

        font-size: 9px;
    }


    .whatsapp-area {
        flex-direction: column;

        text-align: center;
    }

    .order-text {
        margin: 0 auto;
    }

    .payment-buttons {
        flex-direction: column;
        align-items: center;

        gap: 9px;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 370px) {

    .hero-title {
        font-size: 43px;
    }

    .countdown-box {
        min-width: 61px;
        padding: 0 4px;
    }

    .countdown-number {
        font-size: 25px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

:focus-visible {
    outline: 2px solid var(--brown);
    outline-offset: 3px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
    }

}


/* =========================================================
   PAYMENT METHODS
========================================================= */

.payment-methods {
    width: 100%;
    padding: 90px 20px;
    background: var(--cream-light);
    border-top: 1px solid rgba(139, 87, 40, 0.12);
}

.payment-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.payment-methods .section-eyebrow {
    margin: 0 0 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--brown);
}

.payment-methods h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--brown-dark);
}

.payment-intro {
    margin: 14px auto 42px;
    font-size: 14px;
    color: #6f6258;
}

.payment-options {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 22px;
    flex-wrap: wrap;
}

.payment-option {
    width: 210px;
    min-height: 145px;
    padding: 25px 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;

    background: #ffffff;
    border: 1px solid rgba(139, 87, 40, 0.12);
    border-radius: 4px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.payment-option:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 87, 40, 0.28);
    box-shadow: 0 12px 30px rgba(70, 45, 25, 0.08);
}

.payment-option > span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brown-dark);
}


/* ---------------------------------------------------------
   PAYMENT LOGOS
--------------------------------------------------------- */

.payment-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
}


/* PayPal */

.paypal-logo {
    font-size: 27px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: -0.05em;
    color: #003087;
}


/* MB WAY */

.mbway-logo {
    width: 105px;
    height: auto;
    max-height: 48px;
    object-fit: contain;
}


/* Bank */

.bank-logo {
    width: 48px;
    height: 48px;
}

.bank-logo svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: var(--brown);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ---------------------------------------------------------
   PAYMENT NOTE
--------------------------------------------------------- */

.payment-note {
    max-width: 620px;
    margin: 35px auto 0;

    font-size: 12px;
    line-height: 1.7;
    color: #887a6d;
}


/* =========================================================
   PAYMENT METHODS — MOBILE
========================================================= */

@media (max-width: 700px) {

    .payment-methods {
        padding: 65px 18px;
    }

    .payment-options {
        gap: 12px;
    }

    .payment-option {
        width: calc(50% - 6px);
        min-height: 125px;
        padding: 20px 12px;
    }

    .payment-option > span {
        font-size: 10px;
        letter-spacing: 0.08em;
    }

    .mbway-logo {
        width: 90px;
    }

}


/* =========================================================
   PAYMENT METHODS — SMALL PHONES
========================================================= */

@media (max-width: 420px) {

    .payment-option {
        width: 100%;
        max-width: 280px;
        min-height: 110px;
    }

}



/* =========================================================
   SHIPPING — COMPACT
========================================================= */

.shipping-section {
    padding: 28px 20px;
    background: var(--cream-light);
}

.shipping-inner {
    max-width: 900px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    padding: 18px 24px;

    background: #ffffff;
    border: 1px solid var(--cream-dark);
    border-radius: 10px;
}

.shipping-icon {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--brown);
}

.shipping-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

.shipping-info {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 13px;
    color: #555;
}

.shipping-info strong {
    font-size: 12px;
    letter-spacing: 1.5px;
    color: var(--brown-dark);
    white-space: nowrap;
}

.shipping-info span {
    color: #666;
}


/* =========================================================
   SHIPPING — MOBILE
========================================================= */

@media (max-width: 600px) {

    .shipping-section {
        padding: 20px 15px;
    }

    .shipping-inner {
        padding: 15px 16px;
        gap: 12px;
        justify-content: flex-start;
    }

    .shipping-icon {
        width: 28px;
        height: 28px;
    }

    .shipping-icon svg {
        width: 24px;
        height: 24px;
    }

    .shipping-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
        font-size: 12px;
    }

    .shipping-info strong {
        font-size: 11px;
    }

}


/* =========================================================
   COOKIE CONSENT
========================================================= */

.cookie-consent {
    position: fixed;
    left: 50%;
    bottom: 20px;

    transform: translateX(-50%);

    width: calc(100% - 30px);
    max-width: 720px;

    z-index: 99999;

    background: rgba(255, 255, 255, 0.98);

    border: 1px solid var(--cream-dark);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.12);

    border-radius: 12px;

    padding: 20px 22px;

    display: none;
}


/* Main content */

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}


/* Text */

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    margin: 0 0 6px;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 1.8px;

    color: var(--brown-dark);
}

.cookie-text p {
    margin: 0;

    max-width: 430px;

    font-size: 11px;
    line-height: 1.6;

    color: #666;
}


/* Buttons */

.cookie-actions {
    display: flex;
    align-items: center;

    gap: 7px;

    flex-shrink: 0;
}

.cookie-button {
    border: none;

    padding: 10px 13px;

    font-family: inherit;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 1px;

    cursor: pointer;

    border-radius: 5px;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.cookie-button:hover {
    transform: translateY(-1px);
}


/* Reject */

.cookie-reject {
    background: transparent;

    color: var(--brown-dark);

    border: 1px solid var(--cream-dark);
}


/* Manage */

.cookie-manage {
    background: var(--cream);

    color: var(--brown-dark);
}


/* Accept */

.cookie-accept {
    background: var(--brown-dark);

    color: white;
}

.cookie-accept:hover {
    background: var(--brown);
}


/* =========================================================
   COOKIE PREFERENCES
========================================================= */

.cookie-preferences {
    position: fixed;

    inset: 0;

    z-index: 100000;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(30, 24, 18, 0.38);
}

.cookie-preferences-box {
    position: relative;

    width: 100%;
    max-width: 500px;

    background: #fff;

    border-radius: 12px;

    padding: 30px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.18);
}


/* Close */

.cookie-close {
    position: absolute;

    top: 12px;
    right: 15px;

    border: none;
    background: none;

    font-size: 24px;

    font-weight: 300;

    color: #777;

    cursor: pointer;
}


/* Preferences heading */

.cookie-preferences-box h3 {
    margin: 0 0 10px;

    font-size: 16px;

    letter-spacing: 2px;

    color: var(--brown-dark);
}

.cookie-preferences-box > p {
    margin: 0 0 22px;

    font-size: 12px;

    line-height: 1.7;

    color: #666;
}


/* Cookie options */

.cookie-option {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 16px 0;

    border-top: 1px solid var(--cream-dark);
}

.cookie-option > div {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.cookie-option strong {
    font-size: 10px;

    letter-spacing: 1.3px;

    color: var(--brown-dark);
}

.cookie-option span {
    font-size: 11px;

    line-height: 1.5;

    color: #777;
}

.cookie-always {
    flex-shrink: 0;

    font-size: 9px !important;

    font-weight: 600;

    letter-spacing: 1px;

    color: var(--brown) !important;
}


/* =========================================================
   COOKIE SWITCH
========================================================= */

.cookie-switch {
    position: relative;

    display: block;

    width: 40px;
    height: 22px;

    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;

    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;

    inset: 0;

    cursor: pointer;

    background: #ddd;

    border-radius: 30px;

    transition: 0.25s;
}

.cookie-slider::before {
    content: "";

    position: absolute;

    width: 16px;
    height: 16px;

    left: 3px;
    top: 3px;

    background: white;

    border-radius: 50%;

    transition: 0.25s;

    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.cookie-switch input:checked + .cookie-slider {
    background: var(--brown);
}

.cookie-switch input:checked + .cookie-slider::before {
    transform: translateX(18px);
}


/* Save */

.cookie-save {
    width: 100%;

    margin-top: 22px;

    padding: 12px;

    border: none;

    border-radius: 5px;

    background: var(--brown-dark);

    color: white;

    font-family: inherit;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.5px;

    cursor: pointer;
}

.cookie-save:hover {
    background: var(--brown);
}


/* =========================================================
   COOKIE — MOBILE
========================================================= */

@media (max-width: 650px) {

    .cookie-consent {
        bottom: 12px;

        width: calc(100% - 20px);

        padding: 18px;
    }

    .cookie-content {
        flex-direction: column;

        align-items: stretch;

        gap: 15px;
    }

    .cookie-text h3 {
        font-size: 12px;
    }

    .cookie-text p {
        font-size: 10px;
    }

    .cookie-actions {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 7px;
    }

    .cookie-button {
        width: 100%;

        padding: 10px 6px;

        font-size: 8px;
    }

    .cookie-accept {
        grid-column: 1 / -1;
    }

    .cookie-preferences-box {
        padding: 25px 20px;
    }

}


/* =========================================================
   PRODUCT IMAGE LIGHTBOX
========================================================= */

.product-image {
    cursor: zoom-in;
}


/* Full screen overlay */

.product-lightbox {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 40px;

    background: rgba(25, 20, 15, 0.82);

    backdrop-filter: blur(4px);

    opacity: 0;

    transition: opacity 0.25s ease;

    cursor: zoom-out;
}


/* Visible state */

.product-lightbox.active {
    display: flex;

    opacity: 1;
}


/* Enlarged image */

.product-lightbox-image {
    display: block;

    max-width: min(900px, 90vw);
    max-height: 88vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 4px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.28);

    cursor: default;

    transform: scale(0.96);

    transition: transform 0.25s ease;
}


/* Image animation */

.product-lightbox.active .product-lightbox-image {
    transform: scale(1);
}


/* Close button */

.product-lightbox-close {
    position: absolute;

    top: 20px;
    right: 25px;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(255,255,255,0.5);

    border-radius: 50%;

    background: rgba(255,255,255,0.08);

    color: white;

    font-family: Arial, sans-serif;

    font-size: 30px;
    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.product-lightbox-close:hover {
    background: rgba(255,255,255,0.18);

    border-color: white;

    transform: rotate(90deg);
}


/* =========================================================
   LIGHTBOX — MOBILE
========================================================= */

@media (max-width: 600px) {

    .product-lightbox {
        padding: 20px;
    }

    .product-lightbox-image {
        max-width: 94vw;
        max-height: 82vh;

        border-radius: 3px;
    }

    .product-lightbox-close {
        top: 15px;
        right: 14px;

        width: 38px;
        height: 38px;

        font-size: 27px;
    }

}




/* =========================================================
   SOLD OUT PRODUCT
========================================================= */

.product-sold {
    position: relative;
}


/* SOLD OUT BUTTON — PERMANENTLY MUTED */

.sold-out-button {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 44px;

    background: #e8e0d7;

    color: #8b7b6d;

    font-size: 11px;

    letter-spacing: 2px;

    cursor: default;

    opacity: 0.75;

    pointer-events: none;
}


/* SOLD OUT IMAGE */

.product-sold .product-image {

    opacity: 0.72;

    cursor: default;

}



/* =========================================================
   YOTA JEWELRY
   ABOUT PAGE
========================================================= */


/* =========================================================
   ABOUT HERO
========================================================= */

.about-hero {
    min-height: 500px;

    position: relative;

    background:
        linear-gradient(
            90deg,
            rgba(249,243,236,0.98) 0%,
            rgba(249,243,236,0.94) 30%,
            rgba(249,243,236,0.55) 50%,
            rgba(249,243,236,0.02) 72%
        ),
        url("../images/hero.jpg") center right / cover no-repeat;

    display: flex;
    align-items: center;
}

.about-hero-inner {
    width: min(1140px, calc(100% - 70px));
    margin: 0 auto;

    padding: 55px 0;

    position: relative;
    z-index: 2;
}

.about-hero-content {
    width: 470px;
}

.about-hero-kicker {
    font-size: 14px;
    font-weight: 500;

    letter-spacing: 3px;

    color: var(--brown);

    margin-bottom: 12px;
}

.about-hero-title {
    font-family: var(--serif);

    font-size: clamp(52px, 5vw, 72px);

    font-weight: 500;

    line-height: .9;

    letter-spacing: -1px;

    color: var(--text);

    margin-bottom: 25px;
}

.about-hero-divider {
    width: 108px;
    height: 1px;

    background: var(--gold);

    margin-bottom: 20px;

    position: relative;
}

.about-hero-divider::after {
    content: "✦";

    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    color: var(--gold);

    font-size: 16px;

    padding: 0 7px;
}

.about-hero-text {
    width: 380px;

    font-family: Georgia, serif;

    font-size: 17px;

    font-style: italic;

    line-height: 1.5;

    color: #38312c;
}


/* =========================================================
   ABOUT STORY
========================================================= */

.about-story {
    padding: 65px 20px 70px;

    background:
        linear-gradient(
            to bottom,
            #fcfaf7 0%,
            #f8f3ed 100%
        );
}

.about-story-inner {
    width: min(900px, 100%);

    margin: 0 auto;

    text-align: center;
}

.about-story-kicker {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-bottom: 7px;

    color: var(--brown);

    font-size: 12px;

    font-weight: 500;

    letter-spacing: 2.5px;
}

.about-story-kicker::before,
.about-story-kicker::after {
    content: "";

    width: 30px;
    height: 1px;

    background: var(--gold);
}

.about-story-title {
    margin-bottom: 30px;

    font-family: var(--serif);

    font-size: clamp(30px, 4vw, 42px);

    font-weight: 500;

    color: var(--brown-dark);
}

.about-story-text {
    max-width: 720px;

    margin: 0 auto;

    font-size: 14px;

    line-height: 1.9;

    color: #5f554d;
}

.about-story-text p {
    margin-bottom: 18px;
}

.about-story-text p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   ABOUT HIGHLIGHT
========================================================= */

.about-highlight {
    width: min(900px, calc(100% - 40px));

    margin: 0 auto 65px;

    padding: 38px 40px;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 8px;

    text-align: center;

    box-shadow: 0 8px 25px rgba(70,50,30,.04);
}

.about-highlight-title {
    margin-bottom: 8px;

    font-family: var(--serif);

    font-size: 25px;

    font-weight: 600;

    color: var(--brown-dark);
}

.about-highlight-text {
    font-size: 12px;

    line-height: 1.7;

    color: var(--muted);

    letter-spacing: .2px;
}


/* =========================================================
   ABOUT FEATURES
========================================================= */

.about-features {
    width: min(1000px, calc(100% - 40px));

    margin: 0 auto 65px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.about-feature {
    padding: 30px 20px;

    text-align: center;

    background: #fff;

    border: 1px solid var(--border);

    border-radius: 7px;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.about-feature:hover {
    transform: translateY(-4px);

    box-shadow: 0 10px 25px rgba(70,50,30,.07);
}

.about-feature-icon {
    margin-bottom: 13px;

    font-size: 25px;

    color: var(--gold);
}

.about-feature-title {
    margin-bottom: 7px;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 1.5px;

    color: var(--brown-dark);
}

.about-feature-text {
    font-size: 11px;

    line-height: 1.6;

    color: #756a61;
}


/* =========================================================
   ABOUT CLOSING
========================================================= */

.about-closing {
    padding: 55px 20px 70px;

    text-align: center;

    background: var(--cream-light);

    border-top: 1px solid rgba(139,87,40,.10);
}

.about-closing-title {
    margin-bottom: 12px;

    font-family: var(--serif);

    font-size: 28px;

    font-weight: 500;

    color: var(--brown-dark);
}

.about-closing-text {
    max-width: 520px;

    margin: 0 auto;

    font-family: Georgia, serif;

    font-size: 15px;

    font-style: italic;

    line-height: 1.6;

    color: #6d6259;
}


/* =========================================================
   ABOUT PAGE — TABLET
========================================================= */

@media (max-width: 760px) {

    .about-hero {
        min-height: 420px;

        background:
            linear-gradient(
                90deg,
                rgba(249,243,236,.96),
                rgba(249,243,236,.70)
            ),
            url("../images/hero.jpg") center / cover no-repeat;
    }

    .about-hero-inner {
        width: calc(100% - 34px);

        padding: 50px 0;
    }

    .about-hero-content {
        width: 100%;
        max-width: 450px;
    }

    .about-hero-title {
        font-size: 56px;
    }

    .about-story {
        padding: 50px 20px 55px;
    }

    .about-features {
        grid-template-columns: 1fr;

        max-width: 500px;
    }

    .about-feature {
        padding: 25px 20px;
    }

}


/* =========================================================
   ABOUT PAGE — MOBILE
========================================================= */

@media (max-width: 520px) {

    .about-hero {
        min-height: 380px;

        background:
            linear-gradient(
                90deg,
                rgba(249,243,236,.92),
                rgba(249,243,236,.60)
            ),
            url("../images/hero-mobile.jpg") center / cover no-repeat;
    }

    .about-hero-inner {
        padding: 45px 0 60px;
    }

    .about-hero-title {
        font-size: 48px;

        line-height: .92;
    }

    .about-hero-kicker {
        font-size: 11px;

        letter-spacing: 2px;
    }

    .about-hero-text {
        width: 290px;

        font-size: 14px;
    }

    .about-story {
        padding: 45px 15px 50px;
    }

    .about-story-kicker {
        font-size: 10px;

        letter-spacing: 2px;
    }

    .about-story-title {
        font-size: 29px;

        margin-bottom: 22px;
    }

    .about-story-text {
        font-size: 13px;

        line-height: 1.8;
    }

    .about-highlight {
        width: calc(100% - 30px);

        margin-bottom: 45px;

        padding: 28px 20px;
    }

    .about-highlight-title {
        font-size: 22px;
    }

    .about-highlight-text {
        font-size: 11px;
    }

    .about-features {
        width: calc(100% - 30px);

        margin-bottom: 45px;

        gap: 12px;
    }

    .about-feature {
        padding: 24px 18px;
    }

    .about-closing {
        padding: 45px 18px 55px;
    }

    .about-closing-title {
        font-size: 25px;
    }

    .about-closing-text {
        font-size: 14px;
    }

}


/* =========================================================
   YOTA JEWELRY HEADER — SAME WIDTH ON ALL PAGES
========================================================= */

.site-header {
    position: relative;
    z-index: 1000;

    width: 100%;
    max-width: none;

    margin: 0;
    padding: 0;
}

.header-inner {
    position: relative;

    width: 100%;
    max-width: none;

    height: 120px;

    margin: 0;
    padding: 0;

    display: block;

    box-sizing: border-box;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    position: absolute !important;

    left: 50% !important;
    top: 8px !important;

    transform: translateX(-50%) !important;

    width: 125px;
    height: 105px;

    margin: 0;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 20;
}

.logo img {
    display: block;

    width: 124px;
    height: auto;

    max-width: 100%;

    object-fit: contain;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.site-navigation {
    position: absolute;

    left: max(35px, calc((100% - 1140px) / 2));
    top: 50%;

    transform: translateY(-50%);

    display: flex;
    align-items: center;

    gap: 26px;

    margin: 0;
    padding: 0;

    z-index: 10;
}

.site-navigation a {
    display: block;

    font-family: 'Montserrat', sans-serif;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 1.8px;

    color: #28231f;

    text-decoration: none;
    white-space: nowrap;

    transition: color .2s ease;
}

.site-navigation a:hover {
    color: #8b5728;
}


/* =========================================================
   DESKTOP SOCIAL ICONS
========================================================= */

.header-socials {
    position: absolute;

    right: max(35px, calc((100% - 1140px) / 2));
    top: 50%;

    transform: translateY(-50%);

    display: flex;
    align-items: center;

    gap: 25px;

    margin: 0;
    padding: 0;

    z-index: 20;
}

.header-socials a {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #1e1b19;

    text-decoration: none;

    transition:
        transform .2s ease,
        opacity .2s ease;
}

.header-socials a:hover {
    transform: translateY(-2px);
    opacity: .65;
}

.header-socials svg {
    width: 24px;
    height: 24px;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-toggle {
    display: none;
}


/* =========================================================
   MOBILE HEADER
========================================================= */

@media (max-width: 760px) {

    .site-header {
        width: 100%;
        height: 92px;

        position: relative;
        z-index: 1000;
    }

    .header-inner {
        width: 100%;
        height: 92px;

        margin: 0;
        padding: 0;

        position: relative;

        display: block;

        box-sizing: border-box;
    }


    /* =====================================================
       LOGO — EXACT CENTER OF VIEWPORT
    ===================================================== */

    .logo {
        position: absolute !important;

        left: 50% !important;
        top: 50% !important;

        transform: translate(-50%, -50%) !important;

        width: 95px !important;
        height: 86px !important;

        margin: 0 !important;
        padding: 0 !important;

        display: flex;

        align-items: center;
        justify-content: center;

        z-index: 20;
    }

    .logo img {
        display: block;

        width: 95px !important;
        height: auto;

        max-width: 95px;
    }


    /* =====================================================
       HAMBURGER — ALWAYS 15px FROM LEFT EDGE
    ===================================================== */

    .mobile-menu-toggle {
        display: flex !important;

        position: absolute !important;

        left: 15px !important;
        right: auto !important;

        top: 50% !important;

        transform: translateY(-50%) !important;

        width: 34px;
        height: 34px;

        margin: 0 !important;
        padding: 6px 5px;

        border: none;
        background: transparent;

        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 5px;

        cursor: pointer;

        z-index: 30;
    }

    .mobile-menu-toggle span {
        display: block;

        width: 23px;
        height: 1px;

        background: #28231f;

        transition:
            transform .25s ease,
            opacity .25s ease;
    }


    /* =====================================================
       SOCIALS — ALWAYS 15px FROM RIGHT EDGE
    ===================================================== */

    .header-socials {
        position: absolute !important;

        left: auto !important;
        right: 15px !important;

        top: 50% !important;

        transform: translateY(-50%) !important;

        display: flex !important;

        align-items: center;

        gap: 10px;

        margin: 0 !important;
        padding: 0 !important;

        z-index: 30;
    }

    .header-socials a {
        width: 20px;
        height: 21px;

        margin: 0;
        padding: 0;
    }

    .header-socials svg {
        width: 20px;
        height: 21px;
    }


    /* =====================================================
       MOBILE NAVIGATION
    ===================================================== */

    .site-navigation {
        position: absolute !important;

        left: 0 !important;
        right: 0 !important;

        top: 92px !important;

        width: 100% !important;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 0;

        margin: 0 !important;
        padding: 10px 20px;

        box-sizing: border-box;

        background: #fbf8f4;

        border-top: 1px solid #eee8e1;
        border-bottom: 1px solid #e7ddd4;

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition:
            opacity .25s ease,
            visibility .25s ease,
            transform .25s ease;

        z-index: 9999;
    }

    .site-navigation.active,
    .site-navigation.mobile-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-navigation a {
        width: 100%;

        padding: 12px 0;

        box-sizing: border-box;

        font-size: 10px;

        letter-spacing: 1.5px;

        border-bottom: 1px solid #eee8e1;
    }

    .site-navigation a:last-child {
        border-bottom: none;
    }


    /* =====================================================
       HAMBURGER → X
    ===================================================== */

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 400px) {

    .site-header {
        height: 65px;
    }

    .header-inner {
        height: 65px;
    }

    .logo {
        width: 85px !important;
        height: 60px !important;
    }

    .logo img {
        width: 85px !important;
        max-width: 85px;
    }

    .mobile-menu-toggle {
        left: 9px !important;

        width: 28px;
        height: 28px;
    }

    .mobile-menu-toggle span {
        width: 18px;
    }

    .header-socials {
        right: 9px !important;

        gap: 5px;
    }

    .header-socials a {
        width: 18px;
        height: 19px;
    }

    .header-socials svg {
        width: 18px;
        height: 19px;
    }

    .site-navigation {
        top: 65px !important;

        padding: 18px 15px;
        gap: 16px;
    }

    .site-navigation a {
        font-size: 9px;
    }

}


/* =========================================================
   FINAL HEADER FIX
   Keeps header full width on every page
========================================================= */

.site-header {
    width: 100%;
}

.header-inner {
    width: 100%;
    max-width: none !important;
    margin: 0 !important;
    position: relative;
    display: flex;
    align-items: center;
}

/* Keep logo exactly centered in the browser */
.header-inner .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Keep left controls independent of page content width */
.header-inner .mobile-menu-toggle,
.header-inner .site-navigation {
    margin-left: 0;
}

/* Keep social icons independent of page content width */
.header-inner .header-socials {
    margin-left: auto;
    margin-right: 0;
}

/* =========================================================
   HEADER — FORCE IDENTICAL POSITION ON ALL PAGES
========================================================= */

.site-header {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    left: 0 !important;
    right: 0 !important;
}

.header-inner {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    position: relative !important;
    box-sizing: border-box !important;
}

/* LOGO — fixed to exact centre of viewport */
.header-inner .logo {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
}

/* LEFT SIDE — fixed to viewport */
.header-inner .mobile-menu-toggle,
.header-inner .site-navigation {
    flex-shrink: 0 !important;
}

/* SOCIALS — fixed to right side */
.header-inner .header-socials {
    margin-left: auto !important;
    flex-shrink: 0 !important;
    margin-right: 20px !important;
}

/* =========================================================
   FINAL LOGO + SOCIAL SIZE/POSITION FIX
========================================================= */

/* LOGO */
.header-inner .logo {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
}

/* SOCIAL ICONS */
.header-inner .header-socials {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    flex-shrink: 0 !important;
}

/* SOCIAL LINKS */
.header-inner .header-socials a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 24px !important;
    height: 24px !important;
    flex-shrink: 0 !important;
}

/* SOCIAL SVGs — identical size on both pages */
.header-inner .header-socials svg {
    width: 20px !important;
    height: 20px !important;
    display: block !important;
    flex-shrink: 0 !important;
}


/* =========================================================
   YOTA JEWELRY SCROLLBAR
========================================================= */

html {
    scrollbar-width: thin;
    scrollbar-color: #b58a50 #f7f1e9;
}

/* Chrome / Edge / Safari */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: #f7f1e9;
}

::-webkit-scrollbar-thumb {
    background: #b58a50;
    border-radius: 10px;
    border: 2px solid #f7f1e9;
}

::-webkit-scrollbar-thumb:hover {
    background: #8b5728;
}