::-webkit-scrollbar {
    display: none;
}

* {
    -webkit-tap-highlight-color: transparent;
}

/* Remove greasy tap highlight on mobile for all interactive elements */
*,
a,
button,
input,
select,
textarea,
label,
[role="button"] {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

img[src*=".svg"] {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

@font-face {
    font-family: "Aviano Sans Regular";
    src: url("fonts/Aviano\ Sans\ Regular.woff2") format("truetype");
    font-display: block;
}

@font-face {
    font-family: "Aviano Flare";
    src: url("fonts/AvianoFlare.woff2") format("truetype");
    font-display: block;
}

@font-face {
    font-family: "Aviano Sans";
    src: url("fonts/Aviano\ Sans\ Regular.woff2") format("opentype");
    font-display: block;
}

@font-face {
    font-family: "Aviano Sans Light";
    src: url("fonts/Aviano\ Sans\ Light.woff2") format("opentype");
    font-display: block;
}

@font-face {
    font-family: "Arpona SemiBold";
    src: url("fonts/Arpona\ semibold.woff2") format("opentype");
    font-display: block;
}

@font-face {
    font-family: "Arpona Regular";
    src: url("fonts/Arpona\ regular.woff2") format("opentype");
    font-display: block;
}

@font-face {
    font-family: "Arpona Light";
    src: url("fonts/Arpona\ light.woff2") format("opentype");
    font-display: block;
}

@font-face {
    font-family: "Arpona ExtraLight";
    src: url("fonts/Arpona\ extralight.woff2") format("opentype");
    font-display: block;
}

@font-face {
    font-family: "Arpona Medium";
    src: url("fonts/Arpona\ medium.woff2") format("opentype");
    font-display: block;
}

@font-face {
    font-family: "custom";
    src: url("fonts/LOL.woff2") format("opentype");
    font-display: block;
}

/* Shopping Bag Sidebar Styles */
.shopping-bag-icon {
    cursor: pointer;
    margin: 0;
    display: flex;
    align-items: center;
    padding: 5px;
    color: inherit;
}

.shopping-bag-icon label {
    color: inherit;
}

.header-normal .shopping-bag-icon {
    margin-right: 10px;
}

.sticky-layout .shopping-bag-icon {
    margin-right: 0px !important;
}


/*.site-header{*/
/*    padding-top: 20px !important;*/
/*}*/
.jewellery-container {
    display: flex;
    /* align-items: flex-start; */
    align-items: center;

    /* keep left box fixed at top */
    gap: 40px;
    margin-top: 60px !important;
    margin-bottom: 0px;
    color: #000;
    /* set text color to black */
    /* padding-right: 60px;
    padding-left: 100px; */
    padding: 10px 20px 10px 10px;
    /*padding-top:100px;*/
    justify-content: space-evenly;
}

.product-page {
    display: flex;
    justify-content: center;
    /* gap: 40px; */
    /* padding: 20px; */
    align-items: flex-start;
}

.product-images-wrapper {
    flex: 1;
    max-width: 50%;
    position: sticky;
    top: 20px;
    align-self: flex-start;
}

.product-details {
    flex: 1;
    position: sticky;
    top: 20px;
    align-self: flex-start;
}

@media (max-width: 600px) {
    .jewellery-container {
        padding-top: 0px;
        padding: 0px 0px;
        margin-top: -40px !important;
    }
}

.page-loader {
    width: 100%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.cookies-table {
    padding: 10px !important;
}

.cookies-table th,
td {
    padding: 10px;
}

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

/* Icons inherit color from header text */
.shopping-bag-icon svg,
.wishlist-link-header svg,
#accountLink svg,
#loginLink svg {
    color: inherit;
}

/* White icon in transparent header */
.header-normal.transparent .shopping-bag-icon,
.header-normal.transparent .wishlist-link-header,
.header-normal.transparent #accountLink,
.header-normal.transparent #loginLink {
    color: white;
}

/* Black icon in sticky header */
.sticky-layout .shopping-bag-icon,
.sticky-layout .wishlist-link-header,
.sticky-layout #accountLink,
.sticky-layout #loginLink {
    color: black;
}

/* Ensure icon color changes on hover states */


.shopping-bag-sidebar {
    /* ensure sidebar is off-screen by default; use % so it works on narrow screens */
    position: fixed;
    top: 0;
    right: -100% !important;
    width: 380px;
    max-width: 100%;
    height: 100svh;
    background: #fff !important;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    transition: right 0.28s ease;
    z-index: 99996 !important;
    overflow-y: auto;
    font-family: "Arpona Regular", sans-serif;
}

.sidebar-header {
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: white;
    z-index: 2;
}

.sidebar-header h2 {
    font-family: "Aviano Sans", sans-serif;
    font-size: 1.2em;
    letter-spacing: 1px;
    margin: 0;
    text-align: center;
    color: #4e0004;
}

.close-sidebar {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #4e0004;
    padding: 5px;
    line-height: 1;
}

.cart-items-container {
    padding: 20px 30px;
}

.cta-button {
    font-size: 12px !important;
}

.cart-item {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

.cart-item-image {
    flex: 0 0 100px;
}

.cart-item-image img {
    width: 100px;
    height: 120px;
    object-fit: cover;
    background: #f8f8f8;
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cart-item-title {
    font-family: "Arpona Medium", sans-serif;
    font-size: 1em;
    margin: 0 0 10px 0;
    color: #000000;
}

.cart-item-description {
    font-size: 0.8em;
    color: #666;
    margin: 0 0 10px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-clamp: 2;
    -webkit-line-clamp: 2;
}

.cart-item-meta {
    font-size: 0.85em;
    color: #888;
    margin: 2px 0;
}

.cart-item-details {
    flex: 1;
}

.cart-item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.cart-item-price {
    font-family: "Arpona Medium", sans-serif;
    color: #4e0004;
    margin: 0;
}

.remove-item {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.remove-item:hover {
    color: #4e0004;
}

/* .cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: #666;
} */

.sidebar-footer {
    position: sticky;
    bottom: 0;
    background: white;
    padding: 20px 30px;
    border-top: 1px solid #eee;
    /* box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05); */
}

.subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-family: "Aviano Sans", sans-serif;
    color: #4e0004;
}

.checkout-button {
    width: 100%;
    padding: 15px;
    background: #4e0004;
    color: white;
    border: none;
    font-family: "Aviano Sans", sans-serif;
    font-size: 0.9em;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Lato', sans-serif;
}

.checkout-button:hover {
    background: #2e0002;
}

.shopping-bag-sidebar.open {
    right: 0 !important;
}

.site-header a {
    position: relative;
    z-index: 10;
}

/* Overlay that appears when sidebar is open - clicking it closes the sidebar */
.shopping-bag-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100svh;
    background: rgba(0, 0, 0, 0.7) !important;
    z-index: 99995 !important;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    backdrop-filter: blur(2px);
}

.shopping-bag-overlay.visible {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-header h2 {
    margin: 0;
    font-family: 'lato', sans-serif;
}

.close-sidebar {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
}

.cart-items-container {
    padding: 20px;
}

.cart-item {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 15px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-family: "Arpona Regular", sans-serif;
    margin: 0 0 5px 0;
}

.cart-item-price {
    font-family: "Arpona Light", sans-serif;
    color: #4e0004;
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-family: 'Lato  ', sans-serif;
}

.sidebar-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: white;
    border-top: 1px solid #eee;
}

.subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-family: "Arpona Regular", sans-serif;
}

.checkout-button {
    width: 100%;
    padding: 15px;
    background: #4e0004;
    color: white;
    border: none;
    cursor: pointer;
    font-family: "Arpona Regular", sans-serif;
    transition: background-color 0.3s;
}

.checkout-button:hover {
    background: #2e0002;
}

#menuToggle img,
#cartToggle img {
    display: none;
}


/* General css from Krunal */
h1,
h2,
h3,
h5,
h6 {
    font-family: "Arpona", sans-serif !important;
}


p,
li,
button,
.cta-button,
.product-link h4,
.filters label,
.filters h4,
.testimonial {
    font-family: "Lato", sans-serif !important;
}

.filters h4 {
    font-weight: 300 !important;
}

.quote,
.cta-button1,
.film-text p,
.watch-film,
.tagline {
    font-family: "Lato", sans-serif !important;
}



.footer-column ul li a {
    font-family: "Lato", !important;
}

product-details h2 {
    font-size: 20px !important;
}

.filters label {
    font-size: 12px !important;
    font-family: "Arpona light", serif;
}

.newsletter {
    /* padding: 100px 20px; */
    text-align: center;
    background-color: var(--white);
    border-top: 1px solid #ccc;
    /* border-bottom: 1px solid #ccc; */
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.newsletter img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Newsletter Section */
.newsletter h2 {
    /* margin: 35px 0px; */
    font-size: 20px;
    color: var(--text-color);
    font-weight: 800;
    font-family: "Arpona SemiBold", sans-serif;
}

.newsletter p {
    min-height: fit-content;
    max-height: 20svh;
    margin-bottom: 30px;
    font-size: 16px;
    color: var(--black);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
    font-family: "Arpona Regular", sans-serif;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* padding: 0 1rem; */
    text-align: center;
    padding-bottom: 11svh;
}

.newsletter-form input[type="email"] {
    width: 600px;
    /* padding: 10px; */
    border-bottom: 1px solid #ccc;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    box-sizing: border-box;
    color: #111;
    font-family: "Arpona Regular", sans-serif;
    margin-bottom: 15px;
    /* Add margin below the input */
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--black);
    font-family: "Arpona Regular", sans-serif;
    font-size: 16px;
}

.newsletter-form button {
    padding: 10px 30px;
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
    cursor: pointer;
    margin-top: 0;
    /* Remove top margin */
    font-family: "Arpona SemiBold", sans-serif;
    font-variation-settings: "wght" 400;
}

.newsletter-form button:hover {
    background-color: #111;
    color: #ffffff;
}

.mobile-only,
.mobile-only-country {
    display: none !important;
}

.desktop-only,
.desktop-only-country {
    display: unset;
}

#newsletter-image {
    display: none;
}

@media (max-width: 768px) {

    .mobile-only,
    .mobile-only-country {
        display: inherit !important;
    }

    .desktop-only,
    .desktop-only-country {
        display: none !important;
    }

    .shopping-bag-sidebar {
        /* width: 380px; */
        width: 100% !important;
    }

    .shopping-bag-overlay {
        width: 100vw !important;
        height: 100vh !important;
    }

    .newsletter-form input[type="email"] {
        width: 100%;
    }

    #newsletter-image {
        display: unset;
        height: unset;
    }

    .newsletter h2 {
        text-align: left;
    }


    .newsletter {
        height: auto;
        position: relative;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .newsletter-form {
        width: 100%;
        margin: 0px auto;
        text-align: center;
        padding-bottom: 0svh;
    }


    .newsletter h2 {
        margin-bottom: 0px;
        font-size: 14px;
        color: var(--text-color);
        font-weight: 600;
        font-family: "Arpona SemiBold", sans-serif;
        text-align: left;
        justify-content: left;
    }

    .newsletter p {
        margin-bottom: 20px;
        font-size: 12px;
        color: var(--black);
        /* padding: 0 1rem; */
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        /* line-height: 1.5; */
        display: -webkit-box;
        -webkit-line-clamp: unset;
        line-clamp: unset;
        -webkit-box-orient: vertical;
        overflow: hidden;
        /* text-align: left; */
        font-family: "Arpona Regular", sans-serif;
        text-align: justify;
        /* padding:10px; */
    }

    .newsletter-form button {
        width: 100%;
        padding: 10px 0;
        background-color: var(--white);
        color: var(--black);
        border: 1px solid var(--black);
        cursor: pointer;
        margin-top: 10px;
        font-family: "Arpona Medium", sans-serif;
        font-variation-settings: "wght" 400;
        /* regular */
        border: 1px solid #000000;
    }

    .newsletter {
        /* padding: 50px 10px; */
        /* text-align: left; */
        background-color: var(--white);
        border-top: unset;
        /* 1px solid #ccc; */
        border-bottom: unset;
        /* 1px solid #ccc; */
        z-index: 4;
        display: flex;
        flex-direction: column;
        justify-content: left;
        text-align: left;
    }

    .footer-location>p,
    .footer-location>a {
        font-family: "Arpona light", sans-serif;
        font-size: 0.9rem;
        font-weight: 400;
    }

    .filters {
        width: 100%;
    }

    .filters>.subimt_btn {
        border: 1px solid black;
        text-align: center;
        padding: 0.5rem 0;
        margin-top: 30px;
    }

    .filters>.subimt_btn h4 {
        font-family: "Arpona light", sans-serif;
        margin: 0;
    }
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background: #ffffff;
    color: #fff;
    margin: 0;
    overflow-x: hidden;
}

body.country-selector-active {
    overflow: hidden;
}

body.no-scroll,
html.no-scroll {
    overflow: hidden !important;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

/* Root variables for reusability */
:root {
    --primary-color: #8b1538;
    --text-color: #333;
    --link-color: #666;
    --white: #ffffff;
    --black: #000000;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 10px 0px;
    padding-left: 40px;
    padding-right: 40px;

}

.header-normal {
    display: flex;
    align-items: center;
    /* margin-bottom: 200px !important; */
}

.white {
    color: var(--white) !important;
}

.transparent {
    background-color: transparent !important;
    background: transparent !important;
}

@media (max-width: 768px) {
    .white {
        color: black !important;
    }

    .transparent {
        background-color: unset !important;
        background: unset !important;
    }
}

.header-normal .logo {
    font-size: 6.7vw;
    /* font-size: 4.2vw !important; */
    /* ← Reduced from 5vw to match old size */

    font-family: "custom";
    color: var(--white);
    transition: font-size 0.3s ease;
    /* margin-top: -40px; */
    padding-top: 500px;
    padding-bottom: 5px;
    font-weight: 300;
    white-space: nowrap;
    /* padding-left: 20px; */
    margin-top: 30px;
    margin-bottom: 12px;
}

.logo-normal {
    padding-top: 10px !important;
    font-size: 25px !important;
    margin-top: 1rem;
    line-height: normal !important;
    overflow: visible !important;
}

.logo-normal a {
    display: inline-block !important;
    padding-top: 8px !important;
    margin-top: -8px !important;
    line-height: 1.2 !important;
}

.nav-normal {
    margin-top: -2rem !important;
}

.header-normal .nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    /* padding: 0 25px; */
    padding: 0 2.9vw;
    position: relative;
    margin-top: -10px;
}

.nav-row .nav-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.nav-row .nav-item {
    display: flex;
    overflow: hidden;
    flex-direction: row;
    align-items: center;
}

.nav-row pre {
    text-decoration: none;
    color: var(--white);
    font-size: 14px;
    /* margin: 0 10px; */
    position: relative;
    font-weight: inherit;
    font-family: "Arpona Regular", sans-serif;
}

.nav-row a {
    text-decoration: none;
    color: var(--white);
    font-size: 14px;
    /* margin: 0 10px; */
    margin-right: 20px;
    position: relative;
    font-family: "Arpona Regular", sans-serif;
}

.nav-row a:hover {
    font-weight: bold;
}

/* Parent should be positioning context */
.sticky-layout,
.header-normal {
    position: relative;
}

/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    top: 100%;
    left: -30px;
    right: 0;
    width: 102vw;
    /* align with header, not viewport */
    background: #ffffffe6;
    padding: 70px 40px;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

/* Show menu on hover (both link and dropdown area) */
.nav-item:hover .mega-menu,
.nav-item .mega-menu:hover {
    opacity: 1;
    visibility: visible;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.mega-menu h3 {
    color: var(--black);
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mega-menu ul {
    list-style: none;
    margin-right: 5rem;
}

@media screen and (min-width: 1440px) {
    .mega-menu ul {
        margin-right: 6.5rem;
    }
}

@media screen and (min-width: 1920px) {
    .mega-menu ul {
        margin-right: 8rem;
    }
}

.mega-menu ul li {
    margin-bottom: 12px;
}

.nav-row li {
    text-align: right;
}

.sticky-layout li {
    text-align: right;
}

.mega-menu ul li a {
    color: black;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.mega-menu ul li a:hover {
    color: var(--black);
}

.mega-menu ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    /* distance from text */
    width: 100%;
    height: 1px;
    background-color: var(--black);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* On hover -> animate underline left to right */
.mega-menu ul li a:hover::after {
    transform: scaleX(1);
}

/* Remove transitions that might interfere */
.site-header,
.header-normal,
.sticky-layout,
.logo,
.nav-row a {
    transition: none !important;
}

/* Sticky Header */
.site-header.sticky-new {
    background: var(--white);
    padding: 10px 20px;
}

.sticky-layout .nav-left a,
.sticky-layout .nav-right a pre {
    margin: 0 12px;
}

.nav-left {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    flex-direction: row;
    align-items: center !important;
    margin-right: 20px;
}

.site-header.sticky .header-normal {
    display: none;
}

body.country-selector-active {
    overflow: hidden;
}


.sticky-layout {
    display: none;
    position: relative;
}

.site-header.sticky .sticky-layout {
    height: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-layout .nav-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.sticky-layout .logo {
    font-size: 30px;
    color: var(--black);
    font-weight: bold;
    font-family: "Aviano Sans", sans-serif;
}

pre {
    text-decoration: none;
    /* color: var(--black); */
    font-weight: bold;
    font-size: 14px;
    position: relative;
    font-family: "Arpona Regular", sans-serif;
}

.sticky-layout a {
    text-decoration: none;
    color: var(--black);
    font-weight: bold;
    font-size: 14px;
    position: relative;
    font-family: "Arpona Regular", sans-serif;
}

.sticky-layout .mega-menu {
    border-color: #ccc;
    width: 110%;
    left: -40px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.sticky-layout .mega-menu ul {
    margin-right: 170px;
}

.sticky-layout .nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

/* Mobile Styles */
.mobile-toggle .cart-toggle {
    display: none;
}

.mobile-menu {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    height: 100dvh;
    width: 100%;
    background-color: #fff !important;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(10px);
    padding: 60px 20px;
    padding-top: calc(60px + env(safe-area-inset-top, 0));
    padding-bottom: calc(20px + env(safe-area-inset-bottom, 0));
    transition: left 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    flex-direction: column;
    gap: 5px !important;
    align-items: center;
    z-index: 99998 !important;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu a {
    text-decoration: none;
    color: #000000;
    font-size: 12px;
    padding-bottom: 10px !important;
    font-weight: bold;
    font-family: "Arpona SemiBold", sans-serif;
}

/* Prevent browser default visited-link color (purple/red) from affecting
   mobile menu links and their SVG icons that use fill="currentColor" */
.mobile-menu a:visited,
.mobile-menu a:hover,
.mobile-menu a:active,
.mobile-menu a:focus {
    color: #000000 !important;
}

.mobile-menu.active {
    left: 0;

    visibility: visible;
    opacity: 1;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    padding-top: 35%;
    height: 100dvh !important;
    height: 100svh !important;
    height: 100vh !important;
    padding-bottom: env(safe-area-inset-bottom, 20px);
    padding-top: calc(35% + env(safe-area-inset-top, 0));
    overflow-y: auto !important;
}

/* Menu logo link styling */
#menuLogo {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    height: 28px;
    line-height: 28px;
    font-family: "custom", sans-serif;
    /* font-size: 19px; */
    font-size: 4vw !important;
    font-weight: 300;
    color: #000;
    white-space: nowrap;
    text-decoration: none;
    z-index: 99998;
}

.mobile-menu.active::before {
    content: "HARSSH DOSHI";
    font-size: 4vw !important;
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    height: 28px;
    line-height: 28px;
    text-align: center;
    font-family: "custom", sans-serif;
    /* font-size: 19px; */
    color: #000;
    background: #fff;
    z-index: 99997;
    pointer-events: none;
    white-space: nowrap;
}

body.menu-open,
html.menu-open {
    overflow: hidden !important;
    overscroll-behavior: none !important;
}

#jagatMenu {
    justify-content: flex-start;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    margin-bottom: 0 !important;
    position: relative;
    min-height: 50px;
    box-sizing: border-box;
}

.mobile-menu-icons-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.close-button {
    background: none;
    border: none;
    color: #000000;
    cursor: pointer;
    z-index: 1002;
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.search-icon,
.cart-icon,
.mobile-toggle img,
.cart-toggle img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* Hide original toggle buttons when mobile menu is active */
.mobile-menu.active~.mobile-toggle,
.mobile-menu.active~.cart-toggle {
    display: none;
}

.mobile-menu .chevron {
    font-size: 20px;
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.accordion-item {
    width: 100%;
}

.accordion-header {
    font-size: 16px;
    cursor: pointer;
    font-family: "Arpona Medium", sans-serif;
    color: #000000;
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    font-weight: bold;
    justify-content: center;
}

.accordion-header.active .chevron {
    transform: rotate(180deg);
}

.accordion-body {
    display: none;
    text-align: center;
    flex-direction: column;
}

.accordion-body a {
    text-decoration: none;
    color: #000000;
    font-size: 14px;
    padding: 6px 0;
}

.hero-section {
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: sticky;
    color: var(--white);
    z-index: 1;
    height: 100svh;
}

.collections-section {
    background: var(--white);
    padding: 85px 40px 40px 40px;
    color: var(--black);
    z-index: 2;
    display: flex;
    align-items: center;
}

.two-column-section {
    background: var(--white);
    color: var(--black);
    padding-top: 9%;
    padding-bottom: 7%;
    z-index: 3;
    display: flex;
    align-items: center;
}

.newsletter img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

input:focus {
    outline: none;
}

.site-footer {
    margin-top: 0;
    z-index: 5;
    /* display: flex; */
    flex-direction: column;
    justify-content: flex-start;
}

/* Stacking Effect */
section.stacked {
    transform: translateY(-10px) scale(0.98);
    opacity: 0.8;
}

/* Hero Section */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    margin-top: 6%;
}

.jewellery-content {
    display: none;
}

.hero-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    font-family: "Arpona Medium";
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-family: "Arpona Regular";
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}



/* Collections Section */
.collections-container {
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(80px, 8%, 150px);
    margin: 0 auto;
    justify-items: center;
}

.collection-item {
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
}

.collection-image {
    position: relative;
    height: 60svh;
    margin-bottom: 15px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.collection-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Arpona Medium", sans-serif;
}

.collection-description {
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--black);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    font-family: "Arpona Regular", sans-serif;
}

.collection-btn {
    display: inline-block;
    background-color: var(--white);
    color: var(--black);
    font-weight: 400;
    text-decoration: none;
    font-size: 12px;
    transition: background 0.3s ease;
    font-family: "Arpona Regular", sans-serif;
    position: relative;
    border: none;
    padding: 0;
    cursor: pointer;
    line-height: inherit;
}

button.collection-btn {
    font-family: "Arpona Regular", sans-serif !important;
}

button.collection-btn::after {
    display: none;
}

.collection-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    /* distance from text */
    width: 100%;
    height: 1px;
    background-color: var(--black);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    font-weight: 600;
}

/* On hover -> animate underline left to right */
.collection-btn:hover::after {
    transform: scaleX(1);
}

.collection-btn:hover {
    font-weight: 600;
}

.collection-btn1 {
    display: inline-block;
    /* background-color: var(--white); */
    color: var(--white);
    font-weight: 400;
    text-decoration: none;
    font-size: 12px;
    transition: background 0.3s ease;
    font-family: "Arpona Regular", sans-serif;
    position: relative;
    border: none;
    padding: 0;
    cursor: pointer;
    line-height: inherit;
}

button.collection-btn1 {
    font-family: "Arpona Regular", sans-serif !important;
}

button.collection-btn1::after {
    display: none;
}

.collection-btn1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    /* distance from text */
    width: 100%;
    height: 1px;
    background-color: var(--white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    font-weight: 600;
}

/* On hover -> animate underline left to right */
.collection-btn1:hover::after {
    transform: scaleX(1);
}

.collection-btn1:hover {
    font-weight: 600;
}


/* Two-Column Section */
.two-column-section .container {
    max-width: 100%;
    margin: 0;
    margin-left: 10%;
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0;
}

/* Text column = 35% */
.two-column-section .text-column {
    flex: 0 0 40%;
    max-width: 40%;
}

/* Image column = 50% */
.two-column-section .image-column {
    flex: 0 0 60%;
    max-width: 50%;
}

.text-column h2 {
    font-size: 16px;
    margin-bottom: 20px;
    font-family: "Aviano Sans", sans-serif;
    font-weight: 600;
}

.text-column p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    font-weight: 500;
    font-family: "Lato", sans-serif;
    width: 88%;
}

.cta-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--black);
    font-weight: 400;
    text-decoration: none;
    transition: background 0.3s ease;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    position: relative;
}

/* Create underline as pseudo-element */
.cta-button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    /* distance from text */
    width: 100%;
    height: 1px;
    background-color: var(--black);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* On hover -> animate underline left to right */
.cta-button:hover::after {
    transform: scaleX(1);
}

.cta-button:hover {
    font-weight: 600;
}

.image-column img {
    width: 100%;
    height: 60svh;
    object-fit: contain;
    object-position: right center;
    /* display: block; */
    margin-left: auto;
    margin-right: 0;
}

/* Newsletter Section */
.newsletter h2 {
    /* margin: 35px 0px; */
    font-size: 20px;
    color: var(--text-color);
    font-weight: 800;
    font-family: "Arpona SemiBold", sans-serif;
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--black);
    font-family: "Arpona Regular", sans-serif;
    font-size: 16px;
}

/* Footer Styles */
.footer-main {
    background-color: #fff;
    padding: 0px 0px !important;
    border-top: 0px solid #e0e0e0;
    flex-grow: 1;
}

.footer-logo {
    text-align: center;
    /* margin-bottom: 50px; */
}

.footer-logo img {
    width: 90px !important;
    height: 120px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background-color: var(--black);
    margin: 0 auto;
    position: relative;
}

.logo-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 25px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 25' fill='white'%3E%3Cpath d='M8 3h4v4H8V3zm0 6h4v4H8V9zm0 6h4v4H8v-4zm0 6h4v4H8v-4zM14 3h4v4h-4V3zm0 6h4v4h-4V9zm6-6h4v4h-4V3zm0 6h4v4h-4V9zm6-6h4v4h-4V3z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 6%;
    max-width: 1500px;
    margin-right: 0 auto;
}

.footer-column h3 {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Arpona Medium", sans-serif;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    position: relative;
    transition: color 0.3s ease;
    display: inline-block;
    font-family: "Aviano Sans", sans-serif;
}

.footer-column ul li a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--black);
    transition: width 0.4s ease;
}

.footer-column ul li a:hover {
    color: var(--black);
}

.footer-column ul li a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.social-links a {
    color: #000000;
    font-size: 14px;
    text-decoration: none;
    font-weight: 400;
    position: relative;
    transition: color 0.3s ease;
    display: inline-block;
    font-family: "Aviano Sans", sans-serif;
}

.social-links a::after {
    content: "";
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--link-color);
    transform: scaleX(1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--text-color);
    text-decoration: underline;
}

.social-links a:hover::after {
    background-color: #010101;
    height: 2px;
    transform: scaleX(1.1);
}

.footer-bottom {
    background-color: #4b1214;
    color: var(--white);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    position: relative;
}

.footer-hallmark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 50px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-hallmark img {
    height: 100%;
    width: auto;
}

.footer-location {
    display: flex;
    align-items: center;
    /* gap: 15px; */
}

.footer-location p {
    color: var(--white);
    font-family: "Arpona light", sans-serif;
}

.footer-location a {
    color: var(--white);
    text-decoration: underline;
    font-size: 12px;
    font-family: "Arpona light", sans-serif;
}

.footer-copyright {
    display: flex;
    align-items: center;
    font-family: "Arpona light", sans-serif;
}

.footer-copyright a {
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-family: "Aviano Sans", sans-serif;
}

.footer-logo1 {
    display: none;
}

#menuToggle img,
#cartToggle img {
    display: none;
}

#newsletter-image {
    display: none;
}

/* ===== NORMAL STATE ===== */

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    /* background: transparent; */
    z-index: 1000;
    padding: 0px;
    transition: all 0.3s ease;
}

.header-normal {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 20px; */
    /* padding: 0px 15px; */
    background: #ffffff
}

.header-normal .logo {
    padding-top: 20px;
    color: #000;
    line-height: normal !important;
    overflow: visible !important;
}

.nav-row .nav-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    transform: translateX(-.8svh);
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.mega-menu h3 {
    color: black;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sticky-layout .mega-menu ul {
    margin-right: 100px !important;
}

.mega-menu ul li {
    margin-bottom: 12px;
}

.mega-menu ul li a {
    color: black;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.mega-menu ul li a:hover {
    color: black;
}

.mega-menu ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    /* distance from text */
    width: 100%;
    height: 1px;
    background-color: black;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* On hover -> animate underline left to right */
.mega-menu ul li a:hover::after {
    transform: scaleX(1);
}

.nav-row li {
    text-align: right;
}

.sticky-layout li {
    text-align: right;
}

/* Sticky Header */
.site-header.sticky {
    padding: 10px 30px;
}

.site-header.sticky-new {
    background: white;
}

.sticky-layout .nav-left a,
.sticky-layout .nav-right a {
    margin: 0 12px;
}

.site-header.sticky .header-normal {
    display: none;
}

.sticky-layout {
    display: none;
    position: relative;
}

.sticky-layout .nav-right {
    display: flex;
    font-weight: bold;
    flex-direction: row;
    align-items: center;
}

.sticky-layout .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: black;
    font-weight: bold;
    font-family: "Arpona Regular", serif;
}

.sticky-layout a pre {
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    position: relative;
}

.sticky-layout .mega-menu {
    border-color: #ccc;
}

.sticky-layout .nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.mega-canvas {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    background: #fff;
    z-index: 1001;
    padding: 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    color: #000;
}

.mega-canvas.active {
    display: block;
    right: 0;
}

.mega-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mega-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
}

.close-btn {
    font-size: 28px;
    cursor: pointer;
}

.mega-content ul {
    list-style: none;
    margin-top: 20px;
}

.mega-content ul li {
    margin-bottom: 12px;
}

.mega-content ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 16px;
}

/* ===== FOOTER STYLES ===== */
.site-footer {
    margin-top: auto;
}

.footer-main {
    background-color: #fff;
    padding: 60px 40px;
    border-top: 1px solid #e0e0e0;
}

.footer-logo {
    text-align: center;
    margin-bottom: 0px !important;
}

.footer-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background-color: #000;
    margin: 0 auto;
    position: relative;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 25px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 25' fill='white'%3E%3Cpath d='M8 3h4v4H8V3zm0 6h4v4H8V9zm0 6h4v4H8v-4zm0 6h4v4H8v-4zM14 3h4v4h-4V3zm0 6h4v4h-4V9zm6-6h4v4h-4V3zm0 6h4v4h-4V9zm6-6h4v4h-4V3z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10%;
    margin-bottom: 40px;
    max-width: 1400px;
    padding: 0px 40px !important;
    margin-right: auto;
}

.footer-column h3 {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Arpona Regular", serif;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    display: inline-block;
    font-family: "Arpona Regular", serif;
}

.footer-column ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #000000;
    transition: width 0.4s ease;
}

.footer-column ul li a:hover {
    color: #000000;
}

.footer-column ul li a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.social-links a {
    color: #000;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    display: inline-block;
    font-family: "Arpona Regular", serif;
}

.social-links a::after {
    content: '';
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #666;
    transform: scaleX(1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #333;
}

.social-links a:hover::after {
    background-color: #010101;
    height: 2px;
    transform: scaleX(1.1);
}

.footer-bottom {
    background-color: #4B1214;
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-location a {
    color: white;
    text-decoration: underline;
    font-size: 12px;
    font-family: "Arpona Regular", serif;
}

.footer-copyright {
    display: flex;
    gap: 30px;
    align-items: center;
    font-family: "Arpona Regular", serif;
}

.footer-copyright a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-family: "Arpona Regular", serif;
}

/* ===== MAIN CONTENT & HERO SECTION ===== */
.main-content {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-section {
    height: 100svh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Privacy banner at bottom */
.privacy-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(139, 21, 56, 0.3);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 3;
    font-size: 14px;
    gap: 30px;
    transition: all 0.5s ease;
}

/* COMPLETELY NEW STYLES */
.play-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 30px;
}

.play-btn,
.sound-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    transition: opacity 0.3s ease;
}

.play-btn:hover,
.sound-btn:hover {
    opacity: 0.7;
}

.privacy-text {
    flex: 1;
    margin-right: 20px;
}

.privacy-text h4 {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 14px;
}

.privacy-text p {
    margin: 0;
    opacity: 0.9;
    font-size: 12px;
}

.privacy-text a {
    color: white;
    text-decoration: underline;
}

.privacy-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.privacy-buttons button {
    padding: 6px 12px;
    border: none;
    background: transparent;
    color: white;
    cursor: pointer;
    font-size: 12px;
    text-decoration: underline;
    transition: opacity 0.3s ease;
    font-weight: 500;
}

.privacy-buttons button:hover {
    opacity: 0.7;
}


.privacy-banner.hidden {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
}

/* Columns */
.column {
    flex: 1 1 45%;
}

.text-column h2 {
    font-size: 16px;
    margin-bottom: 10px;
    font-family: "Arpona Regular", serif;
    font-weight: 600;

}

.text-column p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
    font-family: "Arpona Regular", serif;
}

.shop-section {
    padding: 40px;
    background: #fff;
}

.shop-section .container {
    display: flex;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.filters {
    /* flex: 0 0 25%; */
    /* padding: 0 10px; */
    padding-left: 0px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 120px;
    align-self: flex-start;
    /* align-self: center; */
}

.clear-all-btn {
    font-size: 10px;
    color: #000;
    cursor: pointer;
    margin: 0;
    font-family: "Arpona Regular", serif !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    font-weight: 600;
}

.clear-all-btn:hover {
    text-decoration: underline;
}

.filters h4 {
    color: black;
    margin-bottom: 5px;
    margin-top: 16px;
    font-family: "Arpona Regular", serif;
    font-weight: 600;
    text-transform: uppercase;
}

.filters label {
    color: black;
    display: revert-layer;
    font-family: "Arpona Regular", serif;
    text-transform: uppercase;
    line-height: 0px;
}

.filters input[type="radio"],
.filters input[type="checkbox"] {
    transform: translateY(-.45svh);
    margin-right: 0.3dvw;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 16px;
    height: 16px;
    border: 1.3px solid #333;
    border-radius: 0;
    /* Square shape */
    /*    margin-right: 8px;
    margin-bottom: 10px;*/
    vertical-align: -webkit-baseline-middle;
    background: white;
    display: inline-block;
    position: relative;
    /* Needed for ::after */
}

/* Checked state – remove border and background */
.filters input[type="radio"]:checked,
.filters input[type="checkbox"]:checked {
    border: none;
    background: transparent;
}

/* Show custom image only when checked */
.filters input[type="radio"]:checked::after,
.filters input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    transform: translate(-1px);
    background-image: url('assets/filter.png');
    /* your custom image */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Update label styling for both */
.filters input[type="radio"]+label,
.filters input[type="checkbox"]+label {
    cursor: pointer;
    line-height: 1;
}

.product-image-carousel {
    position: relative;
    display: inline-block;
    width: 100%;
    /* Inherits your existing img width */
}

.carousel-image {
    width: 100%;
    /* Same as your existing product img */
    height: 55svh;
    object-fit: cover;
    /* Same as your existing product img */
    display: block;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.carousel-prev {
    left: 5px;
}

.carousel-next {
    right: 5px;
}

.product-image-carousel:hover .carousel-prev,
.product-image-carousel:hover .carousel-next {
    opacity: 1;
}

.carousel-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translate(-50%, -200%);
    display: flex;
    gap: 4px;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dot.active {
    background: white;
}

.products {
    flex: 1;
    /* padding: 20px; */
    padding-right: 0px;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 40px 20px;
    min-height: 1000px;
    /* Prevent height collapse */
    align-items: start;
    transition: opacity 0.3s ease;
}

@media (max-width: 1024px) {
    .products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .products {
        display: flex;
        /* Maintain flex for mobile if needed, or stick to grid */
        flex-wrap: wrap;
    }
}

.product {
    width: 100%;
    color: black;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: productFadeIn 0.5s ease forwards;
}

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

.product h4,
.product p {
    color: black;
    margin: 10px 0;
    text-align: center;
}

.product img {
    width: 100%;
    min-height: 55svh;
    height: 55svh;
    object-fit: cover;
    /* object-position: 10% 10%; */
}



.campaign-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
}

.content {
    padding-top: 40px !important;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 2rem;
    max-width: 800px;
}

.campaign-title {
    font-size: 1.3rem;
    font-weight: 300;
    text-transform: uppercase;
    font-family: "Arpona Regular", serif;
}

.tagline {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: .7rem;
    font-weight: 300;
    font-family: "Arpona Regular", serif;
}

.cta-button1 {
    width: fit-content;
    display: inline-block;
    /* background-color: var(--white); */
    color: #fff;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.3s ease;
    font-family: "Arpona Regular", serif;
    position: relative;
}


.cta-button1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    /* distance from text */
    width: 100%;
    height: 1px;
    background-color: rgb(255, 255, 255);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* On hover -> animate underline left to right */
.cta-button1:hover::after {
    transform: scaleX(1);
}

/* Black text variant for specific buttons on index page */
.cta-button-black {
    display: inline-block;
    background-color: var(--white);
    color: var(--black);
    font-weight: 400;
    text-decoration: none;
    transition: background 0.3s ease;
    font-family: "Arpona Regular", serif;
    position: relative;
}

.cta-button-black::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background-color: black;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.cta-button-black:hover::after {
    transform: scaleX(1);
}



/* Product Link Styles */
.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}


.product-price {
    margin-top: 10px;
    font-weight: 400;
    text-decoration: none;
    position: relative;
}


/* Ensure product titles and prices inherit proper styling */
.product-link h4 {
    color: black;
    margin: 10px 0;
    text-align: center;
    transition: color 0.3s ease;
    font-family: "Arpona Regular", serif;
    font-weight: bold;
    text-transform: uppercase;
}

.product-link p {
    color: black;
    margin: 0px 0;
    text-align: center;
    font-family: "Arpona Regular", serif;
}

/* Make sure the product container works well with links */
.product {
    transition: transform 0.3s ease;
    overflow: hidden;
}

/* .product:hover {
    transform: translateY(-2px);
} */

.contact-container {
    display: flex;
    align-items: center;
    /* center left box vertically */
    gap: 40px;
    margin-top: 200px;
    margin-bottom: 100px;
    color: #000;
    /* set text color to black */
    /* padding-right: 60px;
    padding-left: 100px; */
    padding: 40px 50px;
    padding-top: 100px;
    justify-content: space-evenly;
}

.contact-left {
    flex: 1;
    color: #000;
    /* set text color to black */
    padding-right: 0px;
}

.contact-right {

    flex: 1.2;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

/* Default image = larger */
.contact-right.image-active {
    flex: 1.4;
    max-width: 700px;
}

/* Details (email/call/book) = smaller */
.contact-right.details-active {
    flex: 1.4;
    max-width: 700px;
    /* padding-right: 100px; */
    padding-left: 0px;
}

.contact-navigation {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-navigation .navigation-link {
    padding: 10px 20px;
    text-decoration: none;
    color: #000;
    border: 1px solid #ccc;
    margin: 0 5px;
    border-radius: 5px;
}

.contact-navigation .navigation-link.active {
    background-color: #000;
    color: #fff;
}

.contact-right>div {
    width: 100%;
    display: none;
    color: #000;
    margin-top: -20px;
}

.contact-right>div.active {
    display: block;
}

.contact-right img {
    width: 100%;
    height: 400px;
    padding-left: 2dvw;
    display: block;
    object-fit: cover;
}

.navigation1 {
    display: block;
    background-color: white;
    color: black;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.3s ease;
    font-family: "Arpona Regular", serif;
    position: relative;
    width: max-content;
}


.navigation1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    /* distance from text */
    width: 90%;
    height: 1px;
    background-color: black;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* On hover -> animate underline left to right */
.navigation1:hover::after {
    transform: scaleX(1);
}

.navigation2 {
    display: block;
    background-color: white;
    color: black;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.3s ease;
    font-family: "Arpona Regular", serif;
    position: relative;
    width: max-content;
}


.navigation2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    /* distance from text */
    width: 80%;
    height: 1px;
    background-color: black;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* On hover -> animate underline left to right */
.navigation2:hover::after {
    transform: scaleX(1);
}

.navigation3 {
    display: block;
    background-color: white;
    color: black;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.3s ease;
    font-family: "Arpona Regular", serif;
    position: relative;
    width: max-content;
}


.navigation3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    /* distance from text */
    width: 90%;
    height: 1px;
    background-color: black;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;

}

/* On hover -> animate underline left to right */
.navigation3:hover::after {
    transform: scaleX(1);
}

.navigation4 {
    display: block;
    background-color: white;
    color: black;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.3s ease;
    font-family: "Arpona Regular", serif;
    position: relative;
    width: 26%;
}


.navigation4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    /* distance from text */
    width: 90%;
    height: 1px;
    background-color: black;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;

}

/* On hover -> animate underline left to right */
.navigation4:hover::after {
    transform: scaleX(1);
}

/* Form styling */
.styled-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-size: 14px;
    color: #000;
    /* set text color to black */
    font-family: "Arpona Regular", serif;
}

.styled-form input,
.styled-form select,
.styled-form textarea {
    border: none;
    border-bottom: 1px solid #000;
    padding: 6px 0;
    font-family: "Arpona Regular", serif;
    background: transparent;
    font-size: 14px;
    color: #000;
    /* input text already black */
}

/* placeholder color */
.styled-form input::placeholder,
.styled-form textarea::placeholder {
    color: #000;
    opacity: 1;
    /* makes sure it's not faded */
}

/* focus state: only bottom border, same as normal */
.styled-form input:focus,
.styled-form select:focus,
.styled-form textarea:focus {
    outline: none;
    border: none;
    border-bottom: 1px solid #000;
    color: #000;
    /* ensure text remains black on focus */
}

.styled-form textarea {
    resize: vertical;
}

.styled-form button {
    margin-top: 20px;
    padding: 8px 18px;
    background: #fff;
    color: #111;
    /* button text remains white for contrast */
    border: 2px #111 solid;
    cursor: pointer;
    font-family: "Arpona Regular", serif;
    width: 35%;
}

.styled-form button:hover {
    background-color: #111;
    color: #fff;
}

.custom-check {
    display: flex;
    align-items: flex-start;
    /* keeps checkbox aligned with first line of text */
    gap: 8px;
    font-size: 14px;
    line-height: 1.4;
    color: #000;
    max-width: 500px;
    /* optional: controls wrapping width */
}

.custom-check input {
    display: none;
    /* hide native checkbox */
}

.custom-check label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-family: "Arpona Regular", serif;
}

.custom-check .check-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1px solid #000;
    flex-shrink: 0;
    /* prevents shrinking when text wraps */
    margin-top: 3px;
    /* adjust so it aligns perfectly with first line of text */
}

.custom-check input:checked+label .check-icon {
    background-image: url("assets/filter.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
}

h4.title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Arpona Regular", serif;
}

.description {
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #111111;
    max-width: 500px;
    margin-left: 0px;
    margin-right: 0px;
    font-family: "Arpona Regular", serif;
    /* text-align: justify; */
    text-align: left;
}

/* Dropdown Container */
.dropdown-container {
    position: relative;
    margin: 0px 0;
    width: 100%;
    font-family: "Arpona Regular", serif;

}

/* Dropdown Toggle - same as input */
.dropdown-toggle {
    width: 100% !important;
    padding: 5px 0 !important;
    border: none !important;
    border-bottom: 1px solid #000 !important;
    /* underline only */
    background: transparent !important;
    /* match input background */
    font-size: 14px !important;
    color: #000 !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: 0px !important;
}

/* Focus same as input */
.dropdown-toggle:focus {
    outline: none;
    border-bottom: 1px solid #000;
}

/* Dropdown Content */
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;
    /* blend with underline */
    z-index: 100;
    display: none;
    max-height: 200px;
    overflow-y: auto;
}

/* Show dropdown when open */
.dropdown-container.open .dropdown-content {
    display: block;
}

/* Dropdown Items */
.dropdown-item {
    padding: 10px 0;
    cursor: pointer;
    font-family: "Arpona Regular", serif;
    font-size: 14px;
    color: #000;
    border-bottom: 1px solid #f0f0f0;
}

/* Last item no border */
.dropdown-item:last-child {
    border-bottom: none;
}

/* Hover effect */
.dropdown-item:hover {
    background: rgba(200, 200, 200, 0.9);
    /* grey hover like your select */
}

/* Arrow */
.dropdown-arrow {
    font-size: 14px;
    transition: transform 0.2s;
}

/* Rotate arrow when open */
.dropdown-container.open .dropdown-arrow {
    transform: rotate(180deg);
}

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

body {
    background: #ffffff;
    color: #fff;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
}

/* ===== STICKY STATE ===== */
.site-header.sticky {
    position: fixed;
    top: 0;
    background: white;
    padding: 10px 40px;
}

.site-header.sticky-new {
    background: white;
}

.site-header.sticky .header-normal {
    display: none;
}

.sticky-layout {
    display: none;
}

/* ===== FOOTER STYLES ===== */
.site-footer {
    margin-top: auto;
}

.footer-main {
    background-color: #ffffff;
    padding: 60px 40px;
    border-top: 1px solid #e0e0e0;
}

.footer-logo {
    text-align: center;
    margin-bottom: 50px;
}

.footer-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}


.logo-icon {
    width: 60px;
    height: 60px;
    background-color: #000;
    margin: 0 auto;
    position: relative;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 25px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 25' fill='white'%3E%3Cpath d='M8 3h4v4H8V3zm0 6h4v4H8V9zm0 6h4v4H8v-4zm0 6h4v4H8v-4zM14 3h4v4h-4V3zm0 6h4v4h-4V9zm6-6h4v4h-4V3zm0 6h4v4h-4V9zm6-6h4v4h-4V3z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10%;
    /* margin-bottom: 40px; */
    max-width: 1400px;
    padding: 60px 40px;
    margin-right: 0 auto;
}

.footer-column h3 {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Arpona Regular", serif;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    display: inline-block;
    font-family: "Arpona Regular", serif;
}

.footer-column ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #000000;
    transition: width 0.4s ease;
}

.footer-column ul li a:hover {
    color: #000000;
}

.footer-column ul li a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.social-links a {
    color: #000;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    display: inline-block;
    font-family: "Arpona Regular", serif;
}

.social-links a::after {
    content: '';
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #666;
    transform: scaleX(1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #333;
}

.social-links a:hover::after {
    background-color: #010101;
    height: 2px;
    transform: scaleX(1.1);
}

.footer-bottom {
    background-color: #4B1214;
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-location a {
    color: white;
    text-decoration: underline;
    font-size: 12px;
    font-family: "Arpona Regular", serif;
}

.footer-copyright {
    display: flex;
    gap: 30px;
    align-items: center;
    font-family: "Arpona Regular", serif;
}

.footer-copyright a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-family: "Arpona Regular", serif;
}

.newsletter h2 {
    margin-bottom: 35px;
    font-size: 14px;
    color: #333;
    font-weight: 600;
    font-family: "Arpona Regular", serif;
}

.newsletter-form input:focus {
    outline: none;
    border-bottom: 1px solid #000;
}

/* ===== MAIN CONTENT & HERO SECTION ===== */
.main-content {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-section {
    height: 100svh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: white;
    overflow: hidden;
}

.diamond-section {
    background: #4B1214;
    padding: 60px 20px;
    color: white;
    text-align: center;
}

.diamond-content {
    max-width: 800px;
    margin: 0 auto 40px;
}

.diamond-content h4 {
    /* font-size: 14px; */
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: bold;
    font-family: "Arpona Medium", serif;
}

.diamond-content p {
    /* font-size: 16px; */
    line-height: 1.6;
    font-family: "Arpona ExtraLight", serif;
    margin-bottom: 50px;
}

.diamond-video-wrapper {
    display: flex;
    justify-content: center;
    padding-bottom: 2rem;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    max-width: 900px;
    width: 100%;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    display: block;
    height: 70svh;
    object-fit: cover;
    object-position: 50% calc(50% - 30px);
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-52%, -80%);
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 4px;
    text-transform: uppercase;
    font-family: "Arpona Regular", serif;
}

/* Lightbox styles */
.lightbox {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox-content {
    position: relative;
    max-width: 900px;
    width: 90%;
}

.lightbox-content video {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 32px;
    color: white;
    cursor: pointer;
}

/* Privacy banner at bottom */
.privacy-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(139, 21, 56, 0.3);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 3;
    font-size: 14px;
    gap: 30px;
    transition: all 0.5s ease;
    display: none;
}

/* COMPLETELY NEW STYLES */
.play-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 30px;
}

.play-btn,
.sound-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    transition: opacity 0.3s ease;
}

.play-btn:hover,
.sound-btn:hover {
    opacity: 0.7;
}

.privacy-text {
    flex: 1;
    margin-right: 20px;
}

.privacy-text h4 {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 14px;
}

.privacy-text p {
    margin: 0;
    opacity: 0.9;
    font-size: 12px;
}

.privacy-text a {
    color: white;
    text-decoration: underline;
}

.privacy-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.privacy-buttons button {
    padding: 6px 12px;
    border: none;
    background: transparent;
    color: white;
    cursor: pointer;
    font-size: 12px;
    text-decoration: underline;
    transition: opacity 0.3s ease;
    font-weight: 500;
}

.privacy-buttons button:hover {
    opacity: 0.7;
}


.privacy-banner.hidden {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
}

/* Two-Column Section */
.two-column-section .container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 40px;
    justify-content: space-between;
    /* margin-left: 8%; */
}

/* Text column = 35% */
.two-column-section .text-column {
    flex: 0 0 45%;
    /* max-width: 100%; */
}

/* Image column = 65% */
.two-column-section .image-column {
    flex: 0 0 55%;
    /* max-width: 60%; */
}

.text-column p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
    font-family: "Arpona Regular", serif;
}

.hover-expand-slider {
    padding-top: 80px;
    padding-bottom: 150px;
    background: #fff;
    overflow: hidden;
}

.slider-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    max-width: 1600px;
    margin: auto;

    height: 400px;
    /* fixed height for row layout */
}

.slider-item {
    flex: 1;
    transition: flex 0.4s ease;
    overflow: hidden;
    border-radius: 8px;
    height: 100%;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    border-radius: 8px;
}

/* Default expanded image */
.slider-item.active {
    flex: 2.5;
}

.slider-item.active img {
    transform: scale(1);
}

/* Hover behavior */
.slider-container:hover .slider-item {
    flex: 1;
}

.slider-container:hover .slider-item:hover {
    flex: 2.5;
}

.slider-container:hover .slider-item:hover img {
    transform: scale(1.02);
}

.enquiry-section {
    padding: 80px 20px;
    background: #fff;
    color: #000;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    margin-top: 100px;

}

.enquiry-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 40px;
    text-align: center;
}

.quote-block .quote {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: "Arpona Medium", serif;
    line-height: 27px;
}

.quote-block .author {
    font-size: 14px;
    margin-bottom: 4%;
    /* margin-bottom: 10%; */
    font-family: "Arpona Regular", serif;
}

.form-block h4 {
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.2px;
    font-family: "Arpona light", serif;
}

.form-block form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-block input {
    /* padding: 0px 15px; */
    border: none;
    border-bottom: 1px solid #cccccca8;
    font-size: 14px;
    color: #000;
    background: transparent;
    width: 100%;
    font-family: "Arpona light", serif;
    font-weight: 500;
}

.form-block input[type="text"]::placeholder {
    color: #000;
}

.form-block input[type="email"]::placeholder {
    color: #000;
}

.form-block input:focus {
    outline: none;
    border-bottom: 1px solid #000;
}

.form-block button {
    margin-top: 10px;
    padding: 10px 20px;
    background: transparent !important;
    border: 1px solid #000;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    align-self: center;
    font-family: "Arpona Medium", serif;
}

.form-block button:hover {
    background: #000 !important;
    color: #fff;
}

.scroll-down {
    position: absolute;
    bottom: 20px;
    /* place at bottom of hero section */
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: white;
    cursor: pointer;
    z-index: 3;
    pointer-events: auto;
    animation: bounce 1.5s infinite;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    /* Changed from overflow-x: auto */
    white-space: nowrap;
    margin-top: 80px;
    margin-bottom: 160px;
}

.carousel-track {
    display: flex;
    gap: 20px !important;
}

/* Default image size */
.carousel-slide img {
    height: 25rem;
    cursor: pointer;
    max-width: 300px;
    object-fit: cover;
    /* Ensures proper image scaling */
}

/* Large image size */
.carousel-slide.large img {
    height: 25rem;
    /* Increased height for large images */
    max-width: 900px;
    /* Proportionally increased width */
}

/* Medium image size - same as default */
.carousel-slide.medium img {
    height: 25rem;
    max-width: 300px;
}

/* Zoom overlay */
.zoom-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    z-index: 1000;
    pointer-events: none;
}

.zoom-overlay.active {
    display: flex;
}

.zoom-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    /* Maintain aspect ratio in zoom */
}

/* Controls */
.close-btn,
.nav-btn {
    position: absolute;
    background: none;
    border: none;
    color: white;
    font-size: 2rem !important;
    cursor: pointer;
    transition: opacity 0.3s ease;
    /* Smooth hover effect */
}

.close-btn:hover,
.nav-btn:hover {
    opacity: 0.7;
}

.close-btn {
    top: 8px;
    right: 20px;
}

.nav-btn {
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    padding: 10px;
    user-select: none;
    /* Prevent text selection */
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.video-thumbnail img {
    pointer-events: none;
    /* disables click on the image */
}

.footer-logo1 {
    display: none;
}

.scroll-for-more {
    position: absolute;
    bottom: 200px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 10;
}

.scroll-for-more p {
    margin-bottom: 10px;
    font-family: "Arpona Regular", sans-serif;
}


@media (max-width: 768px) {
    .content {
        justify-content: space-between;
    }

    .logo-normal {
        margin-top: unset;
    }

    .text-column {
        order: 2;
    }

    .two-column-section .image-column {
        max-width: 100% !important;
    }

    .text-column h2 {
        font-size: 16px;
    }

    .text-column p {
        font-size: 13px;
    }

    .nav-left,
    .nav-right {
        display: none !important;
    }

    .mobile-toggle {
        display: block;
        position: absolute;
        left: 20px;
        top: 20px;
        font-size: 28px;
        color: #000000;
        cursor: pointer;
    }

    .mobile-menu .chevron {
        font-size: 20px;
        margin-left: 6px;
        vertical-align: middle;
    }

    .accordion-item {
        width: 100%;
    }

    .accordion-header {
        font-size: 19px;
        cursor: pointer;
        padding: 10px 0;
        color: #000000;
        display: flex;
        justify-content: space-between;
        /* align-items: center; */
        text-align: center;
        justify-content: center;
    }

    .accordion-body {
        display: none;
        flex-direction: column;
        padding-left: 10px;
        margin-bottom: 10px;
    }

    .accordion-body a {
        text-decoration: none;
        color: #000000;
        font-size: 14px;
        padding: 6px 0;
        justify-content: center;
        /* padding-left:60px; */
    }

    .slider-container {
        flex-direction: column;
        height: auto;
        padding: 0 20px;
    }

    .slider-item {
        flex: none;
        height: auto;
    }

    .slider-item img {
        width: 100%;
        height: 400px;
    }

    .slider-container:hover .slider-item,
    .slider-container:hover .slider-item:hover {
        flex: none;
        transform: none;
    }

    .overlay-text {
        font-size: 12px;
        padding: 6px 12px;
    }

    .close-btn {
        top: -35px;
        right: 10px;
    }

    .quote-block .quote {
        font-size: 15px;
        line-height: 1.4;
        text-align: left;
    }

    .form-block button {
        width: 100%;
    }

    .enquiry-container {
        padding: 0px;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-section {
        background-attachment: scroll;
    }

    .privacy-banner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 15px;

    }

    .privacy-text {
        margin-right: 0;
    }

    .privacy-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }


    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        padding: 20px 20px;
        gap: 40px;
        margin-bottom: 0 !important;
        padding: 30px 40px;
        /* margin-right: 0 auto; */


    }

    .footer-main {
        padding: 40px 10px;
        text-align: center;
        background: #4e0004;
    }

    .footer-bottom {
        display: none;
    }

    .footer-copyright {
        flex-direction: column;
        gap: 10px;
        font-size: 14px;
        /* padding-bottom:100px; */
        /* background-color: #4e0004; */
    }

    .hero-section {
        /* height: 100svh; */
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        position: relative;
        color: white;
        overflow: hidden;
    }

    .logo {
        color: #000000;
    }

    .diamond-section {
        background: #4B1214;
        padding: 30px 0 30px;
        color: white;
        text-align: center;
    }

    .video-thumbnail {
        position: relative;
        cursor: pointer;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        border-radius: 4px;
        height: auto;
    }

    .enquiry-section {
        min-height: 100svh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 40px 20px;
        background: #fff;
        color: #000;
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
        margin-top: 0px;
        text-align: left;
        box-sizing: border-box;
    }

    .diamond-content p {
        padding-top: 5px;
        font-size: 16px;
        /* line-height: 1.6; */
        margin-bottom: 30px;
        text-align: left;
        padding: 20px;
    }

    .diamond-content h4 {
        padding-top: 5px;
        font-size: 14px;
        letter-spacing: 1px;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .quote-block .author {
        font-size: 14px;
        margin-bottom: 10%;
        text-align: left;
    }

    .quote-block .quote {
        font-size: 15px;
        line-height: 1.4;
        text-align: left;
        font-family: "Arpona Regular", serif;
    }

    .newsletter {
        min-height: 100svh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 60px 18px;
        padding-bottom: 80px;
        text-align: left;
        background-color: #fff;
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
        box-sizing: border-box;
    }

    .social-links {
        display: flex;
        gap: 20px;
        margin-top: 15px;
        justify-content: center;
    }

    .social-links a {
        color: #ffffff;
        font-size: 12px;
        text-decoration: none;
        font-weight: 500;
        position: relative;
        transition: color 0.3s ease;
        display: inline-block;
        font-family: "Arpona Regular", serif;
    }

    .footer-column ul li a {
        color: #ffffff;
        text-decoration: none;
        font-size: 10px;
        font-weight: 400;
        position: relative;
        transition: color 0.3s ease;
        display: inline-block;
        font-family: "Aviano Sans", sans-serif;
    }

    .footer-column h3 {
        font-size: 14px;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-family: "Arpona Regular", serif;
    }

    .footer-location {
        display: flex;
        align-items: center;
        gap: 7px;
        flex-direction: column;
        font-size: 12px;
    }

    .footer-logo {
        text-align: center;
        margin-bottom: 10px;
    }

    .form-block h4 {
        font-size: 14px;
        font-weight: normal;
        letter-spacing: 1px;
        margin-bottom: 20px;
        letter-spacing: 0.2px;
        font-weight: 600;
        font-family: "Arpona light", serif;
        text-align: left;
    }

    .form-block input {
        /* padding: 0px 15px; */
        border: none;
        border-bottom: 1px solid #cccccca8;
        font-size: 14px;
        color: #000;
        background: transparent;
        width: 100%;
        font-family: "Arpona light", serif;
        font-weight: 500;
    }

    .close-button {
        position: absolute;
        top: 15px;
        right: 15px;
        background: transparent !important;
        border: none;
        color: #000000;
        font-size: 28px;
        cursor: pointer;
        line-height: 1;
        padding: 0;
        /* justify-content: left; */
    }

    .close-button:hover {
        opacity: 0.7;
    }

    .Mobile-text {
        padding-top: 150px !important;
        text-align: center;
        font-size: 14px;
        gap: 10px;
        padding-bottom: 10px;
        /* display: flex; */
    }

    .Mobile-text a {
        /* padding-top: 200px;
      text-align:center; */
        font-size: 16px;
        /* font-weight: 10;
      font-family: "Aviano Sans", sans-serif; */
    }

    .Mobile-location {
        flex-direction: column;
        display: flex;
        align-items: center;
        gap: 10px;
        padding-bottom: 40px;
        padding-top: 10px;
    }

    .Mobile-location a {
        color: #000000;
        text-decoration: underline;
        text-decoration: underline;
        font-size: 14px;
        font-family: "Aviano Sans", sans-serif;
    }

    .footer-logo {
        /* text-align: center; */
        display: none;
        /* margin-bottom: 50px; */
    }

    /* .footer-logo img {
      width: 120px;
      height: 120px;
      object-fit: contain;
      transition: opacity 0.3s ease;
    } */

    .footer-logo1 {
        display: block;
        text-align: center;
    }

    .footer-logo1 img {
        width: 80px;
        height: 80px;
        object-fit: contain;
        transition: opacity 0.3s ease;
    }

    .image-column img {
        width: 100%;
        /* height: 180px; */
        object-fit: cover;
        display: block;
        /* padding-left: 20px; */
    }
}

@media (max-width: 480px) {
    .product {
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .column.text-column {
        padding: 0px;
    }

    .campaign-title {
        font-size: 1rem;
        letter-spacing: 0.2em;
    }

    .tagline {
        font-size: .8rem;
    }

    /* Contact section mobile layout */
    .contact-container {
        flex-direction: column;
        margin-top: 80px;
        margin-bottom: 30px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact-left {
        order: 1;
        flex: none;
        padding-right: 0px;
    }

    .contact-right {
        order: 2;
        flex: none;
        margin-bottom: 40px;
    }

    .container {
        flex-direction: column;
    }

    .filters {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px;
    }

    .filters>div {
        flex: 1 1 45%;
        min-width: 150px;
    }

    .products {
        justify-content: center;
    }

    .product {
        width: calc(50% - 20px);
    }

    .text-column {
        order: 2;
    }

    .text-column h2 {
        font-size: 16px;
    }

    .text-column p {
        font-size: 13px;
    }

    .header-normal .nav-row,
    .sticky-layout {
        display: none !important;
    }

    .mobile-toggle {
        display: block;
        position: absolute;
        left: 20px;
        font-size: 28px;
        color: black;
        cursor: pointer;
    }

    .mobile-menu .chevron {
        font-size: 20px;
        margin-left: 6px;
        vertical-align: middle;
    }

    .accordion-item {
        width: 100%;
    }

    .accordion-body {
        display: none;
        flex-direction: column;
        padding-left: 10px;
        margin-bottom: 10px;
    }

    .accordion-body a {
        text-decoration: none;
        color: white;
        font-size: 14px;
        padding: 6px 0;
    }

    .site-header.sticky .mobile-toggle {
        color: black;
    }

    .site-header.sticky .header-normal {
        display: none;
    }

    .site-header.sticky .sticky-layout {
        display: none;
    }

    /* Hero Section Mobile */
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-section {
        background-attachment: scroll;
    }

    .privacy-banner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 15px;
    }

    .privacy-text {
        margin-right: 0;
    }

    .privacy-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        /* gap: 40px; */
    }


    .footer-main {
        padding: 40px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }

    .footer-copyright :before {
        content: "\00a9 ";
        flex-direction: column;

    }

    .footer-copyright {
        gap: 10px;
        font-size: 10px !important;
        padding-top: 10px !important;
    }

}

/* Media Queries */
@media (max-width: 768px) {
    .jewellery-content {
        display: unset;
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90vw;
        z-index: 2;
    }

    .jewellery-content .hero-title {
        color: var(--white);
        text-shadow: unset;
        margin-bottom: 0.2rem;
        font-size: 1.2rem;
        min-width: none;
        letter-spacing: unset;
    }

    .jewellery-content .hero-subtitle {
        color: var(--white);
        text-shadow: unset;
        min-width: none;
        letter-spacing: unset;
        text-decoration: underline;
    }

    #newsletter-image {
        display: unset;
        /* width: 100%; */
        width: 91vw;
        height: 60vh;
        object-fit: cover;
        object-position: center;
        overflow: hidden;
        transition: border-color 0.3s ease;
    }

    .newsletter h2 {
        text-align: left;
    }

    .desktop-paragraph {
        display: none;
    }

    .two-column-section .text-column {
        display: none;
    }

    .two-column-section {
        padding: 0;
    }

    .two-column-section .image-column {
        width: 100%;
        max-width: 100%;
    }

    .mobile-text-overlay {
        display: block;
        /* Show on mobile */
        position: absolute;
        bottom: 20px;
        left: 20px;
        width: calc(100% - 40px);
        color: #ffffff;
        padding: 20px;
        box-sizing: border-box;
        z-index: 10;
        background: rgba(0, 0, 0, 0.5);
        /* Optional: Add background for readability */
    }

    .mobile-text-overlay h2 {
        color: #ffffff;
        font-size: 24px;
        margin-bottom: 10px;
    }

    .mobile-text-overlay p {
        color: #ffffff;
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .mobile-text-overlay .cta-button {
        background-color: #ffffff;
        color: #000000;
        padding: 10px 20px;
        text-decoration: none;
        font-size: 14px;
        border-radius: 5px;
    }

    #menuToggle img,
    #cartToggle img {
        width: 24px;
        height: 24px;
        display: unset;
    }

    .hero-section {
        min-height: 200svh;
        height: 200svh;
    }

    .hero-section img {
        /*padding: 0px 18px !important;*/
        object-fit: cover;
        width: 100%;
        object-position: 30% calc(10% + 60px);
    }

    .site-header.sticky {
        position: fixed !important;
        background: transparent !important;
        padding: 20px 40px !important;
        box-shadow: none !important;
    }

    .site-header.sticky .header-normal {
        display: flex !important;
    }

    .site-header.sticky .sticky-layout {
        display: none !important;
    }

    .site-header.sticky-new .header-normal .logo {
        color: var(--white) !important;
    }

    .site-header.sticky .header-normal .nav-row a {
        color: var(--white) !important;
    }
}

@media (max-width: 576px) {

    #menuToggle img,
    #cartToggle img {
        width: 20px;
        height: 20px;
        display: unset;
    }
}


@media (max-width: 768px) {
    .carousel-images-container {
        display: flex;
        /* min-height: 70svh; */
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
    }

    .carousel-image {
        object-fit: cover;
        scroll-snap-align: center;
        flex-shrink: 0;
    }

    .header-normal .nav-row,
    .sticky-layout {
        display: none !important;
    }

    .header-normal .logo {
        padding-top: 1.3vh;
        /* padding-top: 10px; */
        /* transform: translateY(-3px); */
        font-weight: 400 !important;
        /* font-family: "Aviano Flare", sans-serif; */
        font-family: "custom";
        /* same as desktop */

        font-size: 4vw !important;
        text-align: center;
    }

    .header-normal {
        text-align: center;
        flex-direction: column;
        margin: 15px 0 !important;
    }

    .logo-normal {
        font-size: unset !important;
    }

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0;
        color: #000000;
        cursor: pointer;
    }

    .cart-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0;
        color: #000000;
        cursor: pointer;
    }

    .site-header.sticky .mobile-toggle,
    .site-header.sticky .cart-toggle {
        color: var(--white) !important;
    }

    .site-header.sticky .header-normal {
        display: none;
    }

    .site-header.sticky .sticky-layout {
        display: none;
    }

    /* Change sticky header logo font size to 28px on mobile */
    .site-header.sticky .sticky-layout .logo a {
        font-size: 28px !important;
    }

    /* Adjust section heights for mobile */
    .hero-section,
    .collections-section,
    .two-column-section

    /* .newsletter, */
    /* .site-footer  */
        {
        min-height: 110svh;
        height: auto;
        position: relative;
        top: 0;
        justify-content: center;
        align-items: left;
        /* padding-left:10px; */
        margin: 0 !important;
    }

    .site-footer {
        min-height: 100svh;
        width: 100%;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    .collections-section {
        padding: 50px 18px;
    }

    /* Increase gap between two images in collections container on mobile */
    .collections-container {
        grid-template-columns: 1fr;
        gap: 60px;
        margin-top: -5svh;
    }

    .header-normal {
        background: #ffffff;
        margin-top: 25px;
    }

    .scroll-for-more {
        display: unset !important;
        position: absolute;
        bottom: 200px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        color: #ffffff;
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
        z-index: 10;
    }

    .scroll-for-more p {
        margin-bottom: 10px;
        font-family: "Arpona Regular", sans-serif;
    }

    .arrow-down {
        width: 16px;
        height: 16px;
        background-image: url("assets/arrow_down.svg");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        margin: 0 auto;
        animation: bounce 1s infinite alternate;
    }

    .arrow-down-black {
        width: 16px;
        height: 16px;
        filter: invert(1);
        background-image: url("assets/arrow_down.svg");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        margin: 0 auto;
        animation: bounce 1s infinite alternate;
    }

    @keyframes bounce {
        from {
            transform: translateY(2px);
        }

        to {
            transform: translateY(7px);
        }
    }

    .header-normal .logo {
        color: #000000;
        font-weight: bolder;
        margin-top: 0px;
        margin-bottom: 0px;

    }

    .site-header {
        background: #ffffff;
        padding-top: 5px !important;
    }

    .header-normal {
        overflow: visible !important;
    }

    .logo-normal,
    .header-normal .logo {
        overflow: visible !important;
        padding-top: 5px !important;
    }

    .logo-normal a,
    .header-normal .logo a {
        display: inline-block !important;
        padding-top: 10px !important;
        margin-top: -10px !important;
        line-height: normal !important;
    }

    .collection-title {
        font-size: 12px;
        padding: 0 1rem;
        margin-bottom: 12px;
        text-align: left;
    }

    .collection-description {
        font-size: 14px;
        padding: 0 1rem;
        margin-bottom: 20px;
        text-align: left;
    }

    .collection-btn {
        width: 90%;
        padding: 8px 0;
        font-size: 14px;
        border: 1px solid var(--black);
    }

    .two-column-section .container {
        flex-direction: column;
        margin-left: 0;
        width: 100%;
        padding: 20px;
    }

    .two-column-section .text-column,
    .two-column-section .image-column {
        flex: 0 0 100%;
        max-width: 100%;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 0;
    }

    .text-column p {
        width: 100%;
        text-align: left;
    }

    .image-column img {
        height: 90svh;
    }

    .two-column-section {
        min-height: 100svh !important;
    }

    .hero-title {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-section {
        background-attachment: scroll;
    }

    /* .privacy-banner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 15px;
      } */

    .logo-normal a {
        top: 0 !important;
    }

    .privacy-banner {
        position: fixed;
        z-index: 10000;
        bottom: 0;
        left: 0;
        right: 0;
        background: #4e0004;
        color: var(--white);
        padding: 15px 20px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        font-size: 14px;
        gap: 30px;
        transition: all 0.5s ease;
        /* padding: 10px; */
        /* min-height: 100svh;  */
    }

    .play-btn,
    .sound-btn {
        display: none;
    }

    /* .accept-btn{
        border: 1px solid #ffffff;
        font-size:20px;
        border-radius: 10px;
        padding: 20px;
        margin:10px;
      } */

    .privacy-text h4 {
        font-size: 12px;
        font-family: "Lato", sans-serif;
        text-align: left;
    }

    .privacy-text p {
        margin: 0;
        opacity: 0.9;
        font-size: 12px;
        font-family: "Lato", sans-serif;
        text-align: left;
        width: 100%;
    }

    .privacy-text a {
        color: var(--white);
        text-decoration: underline;
    }

    /* .privacy-buttons {
      display: flex;
      align-items: flex-end;
      margin-left: -33%;
      margin-top: 10px;
    } */

    .privacy-buttons {
        margin: 0;
        display: flex;
        flex-direction: column;
        /* stack buttons vertically */
        align-items: center;
        justify-content: center;
        /* center them horizontally */
        gap: 10px;
        /* space between buttons */
    }

    .privacy-buttons button {
        padding: 6px 12px;
        /* border: 1px solid var(--white); */
        background: transparent;
        color: var(--white);
        cursor: pointer;
        font-size: 14px;
        text-decoration: underline;
        transition: opacity 0.3s ease;
        font-weight: 500;
        font-family: "Lato", sans-serif;
        flex-direction: row;
        display: flex;
        padding-left: 100px;
        padding-right: 100px;
        text-align: center;
        margin: 0px;
        justify-content: center;
        align-content: center;
    }

    .privacy-text {
        margin-right: 0;
    }

    .privacy-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        /* justify-items: center; */
        align-items: center;
        margin: 0 !important;
        color: #ffffff;
    }

    .footer-main {
        padding: 60px 20px 20px 20px !important;
        display: flex;
        flex: 1;
        min-height: 100svh;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: #4e0004;
        text-align: center;
        box-sizing: border-box;
    }

    .footer-bottom {
        /* flex-direction: column; */
        /* gap: 15px; */
        text-align: center;
        display: none;
        /* padding: ; */
    }

    .footer-copyright {
        flex-direction: column;
        font-size: 14px;
        gap: 10px;
    }

    .newsletter h2 {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 15px;
        /* margin-right: 14rem; */
        font-size: 14px;
        color: var(--text-color);
        font-weight: 600;
        font-family: "Arpona SemiBold", sans-serif;
        text-align: left;
        justify-content: left;
    }

    .footer-column ul li {
        margin-bottom: 8px;
    }

    .footer-column h3 {
        font-size: 14px;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0;
        font-family: "Arpona Medium", sans-serif;
    }

    .footer-column ul li a {
        color: #ffffff;
        text-decoration: none;
        font-size: 0.8rem;
        font-weight: 400;
        position: relative;
        letter-spacing: 0.3px;
        transition: color 0.3s ease;
        display: inline-block;
        font-family: "Arpona light", sans-serif;
    }

    .social-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
        justify-content: center;
    }

    .social-links a {
        color: #ffffff;
        font-size: 14px;
        text-decoration: underline;
        font-weight: 400;
        position: relative;
        transition: color 0.3s ease;
        display: inline-block;
        font-family: "Arpona light", sans-serif;
    }

    .footer-location {
        flex-direction: column;
        display: flex !important;
        align-items: center;
        gap: 5px;
        padding-bottom: 25px;
    }

    .footer-location a {
        color: var(--white);
        text-decoration: underline;
        font-size: 0.9rem;
        font-family: "Arpona Regular", sans-serif;
    }

    .footer-location span {
        color: var(--white);
        font-size: 0.8rem;
    }

    .Mobile-location {
        flex-direction: column;
        display: flex;
        align-items: center;
        gap: 10px;
        padding-bottom: 40px;
        padding-top: 10px;
    }

    .Mobile-location p {
        text-decoration: unset !important;
    }

    .Mobile-location a,
    .Mobile-location p {
        color: #000000;
        text-decoration: underline;
        font-size: 10px !important;
        font-weight: unset;
        font-family: "Arpona Regular", sans-serif;
    }

    .cta-button {
        display: inline-block;
        background-color: var(--white);
        color: var(--black);
        font-weight: 400;
        text-decoration: none;
        transition: background 0.3s ease;
        font-family: "Lato", sans-serif;
        position: relative;
        padding-bottom: 20px;
    }

    .close-button,
    .search-icon,
    .cart-icon {
        position: absolute;
        top: 20px;
        left: 20.33px;
        background: transparent !important;
        border: none;
        color: #000000;
        cursor: pointer;
        line-height: 1;
        padding: 0;
        height: 1.25rem;
        width: 1.25rem;
        z-index: 99999;
    }

    .search-icon {
        left: unset;
        right: 56.33px !important;
    }

    /* hide serch icon */
    #searchIconBtn {
        display: none;
        /* Change to 'block' or comment out to unhide */
    }

    .cart-icon {
        left: unset;
        right: 20.33px !important;
    }

    .close-button:hover .search-icon:hover .cart-icon:hover {
        opacity: 0.7;
    }

    .text-column h2 {
        font-size: 16px;
        margin-bottom: 20px;
        font-family: "Aviano Sans", sans-serif;
        font-weight: 600;
        text-align: left;
    }

    .Mobile-text {
        padding-top: 200px;
        text-align: center;
        font-size: 24px;
        padding-bottom: 10px;
        /* display: flex; */
    }

    .Mobile-text a,
    .Mobile-location p {
        font-size: 10px !important;
    }

    .footer-logo {
        /* text-align: center; */
        display: none;
        /* margin-bottom: 50px; */
    }

    /* .footer-logo img {
      width: 120px;
      height: 120px;
      object-fit: contain;
      transition: opacity 0.3s ease;
    } */

    .footer-logo1 {
        display: block;
        text-align: center;
        padding-top: 10px;
    }

    .footer-logo1 img {
        width: 32px;
        height: 32px;
        object-fit: contain;
        margin: 0 10px;
        transition: opacity 0.3s ease;
    }

    .back-menu-options {
        margin-top: 2.3rem;
        width: 95%;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;
    }

    .filters>h4,
    .filters>div label {
        font-family: "Arpona Light", "sans-serif";
        color: #000;
    }

    .filters>.inline-block {
        display: flex;
        flex-direction: column;
    }

    .back-menu-options a {
        font-family: "Arpona Light", "sans-serif";
        color: #000;
        padding-bottom: 0.7rem;
        font-size: 14px;
        font-weight: unset;
    }

    .campaign-section img {
        padding: 6vh 18px 0px 18px !important;
        object-fit: cover;
        /* object-position: 50% calc(50% + 65px); */
    }

    .campaign-title,
    .tagline,
    .cta-button1 {
        font-family: "Arpona Light";
    }

    .campaign-title {
        letter-spacing: 1px;
        font-size: 1.1rem;
    }

    .tagline {
        font-size: 0.8rem;
        margin-top: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .cta-button1 {
        font-weight: unset;
        text-decoration: underline;
    }
}


.red-background {
    background-color: #4E0004 !important;
    background: #4E0004 !important;
}

.site-header.red-background .header-normal .logo,
.site-header.red-background .header-normal .nav-row a,
.site-header.red-background .sticky-layout .logo,
.site-header.red-background .sticky-layout a {
    color: white !important;
}

.site-header.red-background .mobile-toggle img,
.site-header.red-background .cart-toggle img {
    filter: brightness(0) invert(1);
}

/* Cart Count Badge (Hidden on Desktop) */
@media (min-width: 769px) {
    .cart-count-badge {
        display: none !important;
    }
}

/* Hide cart for non-India regions */
body.hide-cart-region .shopping-bag-icon,
body.hide-cart-region .shoppingBagIconFragment,
body.hide-cart-region .cart-toggle,
body.hide-cart-region #cartToggle,
body.hide-cart-region .cart-icon,
body.hide-cart-region #cartIconBtn,
body.hide-cart-region .cart-count-badge {
    display: none !important;
}

@media (max-width: 768px) {
    .cart-count-badge {
        position: absolute;
        top: 0;
        right: 0;
        transform: translate(50%, -50%);
        background-color: #4e0004;
        color: white;
        font-size: 9px;
        font-weight: 600;
        font-family: "Arpona Regular", sans-serif;
        height: 20px;
        min-width: 20px;
        padding: 0 6px;
        border-radius: 999px;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
        text-align: center;
        white-space: nowrap;
        z-index: 10;
    }
}

/* Ensure cart badge contrasts well against maroon header background */
.site-header.red-background .cart-count-badge {
    background-color: #ffffff !important;
    color: #4e0004 !important;
}

/* Mobile menu cart badge should always be red with white text */
.mobile-menu .cart-count-badge,
.mobile-menu.active .cart-count-badge {
    background-color: #4e0004 !important;
    color: #ffffff !important;
}

#jagatMenu {
    display: none;
}

#jagatMenu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1001;
    box-sizing: border-box;
}

.image-carousel {
    width: 100vw;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.carousel-images-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.carousel-images-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.image-carousel .carousel-image {
    width: 100vw;
    height: 72svh;
    flex-shrink: 0;
    object-fit: cover;
    scroll-snap-align: center;
}

.carousel-dots {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 10px 20px; */
    position: relative;
    z-index: 10;
}

.dot {
    height: 1.5px;
    width: 15.5vw;
    margin: 0 1px;
    background-color: #fff;
    border-radius: 15px;
    display: inline-block;
    transition: background-color 0.6s ease;
    cursor: pointer;
}

.dot.active {
    height: 3px;
    width: 22vw;
}

/* Auth modal / overlay styles (static login) */
.auth-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9998;
}

.auth-modal {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 22px 26px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    z-index: 9999;
    width: 320px;
    max-width: calc(100% - 40px);
    font-family: "Aviano Sans", sans-serif;
    text-align: center;
}

.auth-modal h2 {
    margin: 0 0 8px;
    font-size: 18px;
}

.auth-modal p {
    margin: 0 0 12px;
    color: #333;
}

.auth-modal input {
    width: 100%;
    padding: 10px 12px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.auth-actions {
    text-align: right;
    margin-top: 10px;
}

.auth-actions button {
    background: #4e0004;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 4px;
    cursor: pointer
}

.auth-error {
    color: #b00020;
    min-height: 18px;
    margin-top: 8px;
}

.auth-success {
    color: #1b5e20;
    min-height: 18px;
    margin-top: 8px;
}

.auth-modal .auth-id {
    margin: 8px 0;
    color: #333;
    font-weight: 600;
}

.auth-modal.shake {
    animation: auth-shake 300ms ease;
}

@keyframes auth-shake {
    0% {
        transform: translate(-50%, -50%)
    }

    25% {
        transform: translate(calc(-50% + 6px), -50%)
    }

    50% {
        transform: translate(calc(-50% -6px), -50%)
    }

    75% {
        transform: translate(calc(-50% +3px), -50%)
    }

    100% {
        transform: translate(-50%, -50%)
    }
}

.bag-count {
    margin-left: 2px;
    font-family: 'Arpona Regular', sans-serif;
}

.sticky-layout .shopping-bag-icon {
    color: #000;
}

/*.sticky-layout .shopping-bag-icon label,*/
/*.sticky-layout .shopping-bag-icon .bag-count {*/
/*    color: #000;*/
/*}*/

.shopping-bag-icon:hover label {
    font-weight: 700;
}

.nav-row .shopping-bag-icon:hover label {
    font-weight: 700;
}

/* Add to your CSS file */
.country-accordion {
    margin-top: 20px;
    max-height: calc(100svh - 200px);
    overflow-y: auto;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    width: 100vw;
    padding: 18px 5vw;
    background: transparent;
    border: none;
    text-align: left;
    font-family: Arpona light, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.2s;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: transparent;
}

.accordion-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-content li {
    display: flex;
    gap: 10px;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
}

.accordion-content li a {
    padding: 0 !important;
    transform: translate(0, 0.3vh);
    font-weight: 400;
    font-family: Arpona light, sans-serif;
}

.country-link {
    color: #333;
    text-decoration: none;
    font-family: Arpona light, sans-serif;
    font-size: 15px;
    display: block;
}

.country-link:hover {
    color: #000;
    font-weight: 500;
}

.currency-symbol {
    font-size: 14px;
}

.country-name {
    font-family: 'Arpona', sans-serif;
    padding-left: 5px;
    color: #555;
    font-size: 15px;
}

#countryAccordionContainerDesktop {
    display: flex;
}

#continents .continent-item {
    padding: 14px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
    font-family: Arpona, sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.continent-name {
    color: #000;
}

#continents .continent-item.active {
    font-weight: 700;
    color: #000;
}

.continent-arrow {
    font-size: 20px;
    color: #000;
    font-weight: 300;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px 40px;
}

.country-item {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    padding: 14px 0 !important;
    text-decoration: none;
    color: #000;
    font-family: 'Arpona', sans-serif;
    font-size: 16px;
}

.country-item:hover {
    padding-left: 6px;
}

.currency {
    font-family: 'Arpano', sans-serif;
    color: #555;
    font-weight: 600;
    font-size: 15px;
}

@media (max-width: 768px) {
    .accordion-content li a {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .country-name,
    .currency-symbol {
        padding-left: 10px;
    }

    .country-item {
        padding: 12px 20px !important;
        gap: 10px !important;
    }
}

/* Mobile scroll override */
.mobile-scroll {
    scroll-behavior: auto !important;
}

.mobile-scroll * {
    scroll-behavior: auto !important;
}

/* Desktop smooth scroll */
.desktop-scroll {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    .newsletter-100svh {
        min-height: 100svh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* Shopping bag overlay - consolidated override rule */
.shopping-bag-overlay.visible {
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 9995 !important;
}

.close-sidebar {
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* For mobile specifically */
@media (max-width: 768px) {
    body.shopping-bag-open-mobile {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        height: 100% !important;
    }




    .footer-column ul li a::after {
        display: none !important;
    }

    .footer-column ul li a:hover::after {
        display: none !important;
    }

    .social-links a {
        text-decoration: none !important;
    }

    /* Also disable hover color change on mobile */
    .footer-column ul li a:hover {
        color: inherit !important;
    }

    .social-links a:hover,
    .footer-location a:hover {
        color: inherit !important;
        text-decoration: none !important;
    }

    .social-links a::after,
    .footer-location a::after {
        display: none !important;
        text-decoration: none !important;

    }
}

@media (max-width: 768px) {

    input,
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* Wishlist Styles */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
}

.product-image-wrapper img {
    display: block;
    width: 100%;
    height: 55svh;
    object-fit: cover;
}

.wishlist-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 5;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.8);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.wishlist-toggle:hover {
    background: #fff;
    transform: scale(1.1);
}

.wishlist-toggle.active {
    background: #fff;
}

.heart-icon {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.wishlist-toggle.mobile {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
}

.wishlist-toggle.mobile .heart-icon {
    width: 16px;
    height: 16px;
}

.wishlist-btn-pdp {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: 1px solid #000;
    padding: 10px 20px;
    cursor: pointer;
    font-family: 'Arpona Regular', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 10px;
}

.wishlist-btn-pdp:hover {
    background: #f8f8f8;
}

.wishlist-btn-pdp.active {
    background: #4e0004;
    color: #fff;
    border-color: #4e0004;
}

.wishlist-btn-pdp.active .heart-icon {
    fill: #fff;
    stroke: #fff;
}

.wishlist-link-header {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    height: 18px;
    margin-right: 15px;
    position: relative;
}

.wishlist-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #4e0004;
    color: #fff;
    font-size: 10px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
}


/* Additional Header Wishlist Styles */
.wishlist-link-header:hover .heart-icon {
    transform: scale(1.1);
}

/* Ring Size Guide Link (Inherits from .info-links-group a) */
#ringSizeGuideLink {
    color: #000;
    font-weight: 500;
}

#ringSizeGuideLink:hover {
    color: #000;
    font-weight: 600;
}

/* Ring Size Modal Specifics */
.ring-size-modal-content {
    max-width: 800px !important;
    width: 95% !important;
}

.share-modal-content {
    max-width: 400px !important;
    text-align: center;
    border-top: 4px solid #4e0004;
    /* Maroon border to match site theme */
    padding-top: 25px !important;
}

.ring-size-chart-container {
    overflow-x: auto;
    margin-top: 20px;
    max-height: 60vh;
    border: 1px solid #eee;
}

.ring-size-table {
    width: 100%;
    border-collapse: separate;
    /* Changed from collapse for better sticky support */
    border-spacing: 0;
    font-family: "Arpona Regular", serif;
    font-size: 11px;
    text-align: center;
}

.ring-size-table th,
.ring-size-table td {
    padding: 10px 5px;
    /* Increased padding */
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
}

.ring-size-table th:first-child,
.ring-size-table td:first-child {
    border-left: 1px solid #eee;
}

.ring-size-table thead tr:first-child th {
    border-top: 1px solid #eee;
}

.ring-size-table th {
    background-color: #ffffff;
    /* Use solid white instead of off-white */
    font-weight: 600;
    color: #4e0004;
    position: sticky;
    top: 0;
    z-index: 10;
    /* Increased z-index */
    vertical-align: middle;
}

.ring-size-table tr:nth-child(even) {
    background-color: #fafafa;
}

.ring-size-table tr:hover {
    background-color: #f0f0f0;
}

@media (max-width: 768px) {
    .ring-size-modal-content {
        padding: 15px 10px !important;
        width: 98% !important;
    }

    .ring-size-chart-container {
        margin-top: 15px;
        max-height: 70vh;
    }

    .ring-size-table {
        font-size: 10px;
    }

    .ring-size-table th,
    .ring-size-table td {
        padding: 8px 4px;
        white-space: nowrap;
        /* Prevent fraction wrapping */
    }

    /* Sticky first two columns for better mobile navigation if needed, 
       but basic horizontal scroll is usually better for wide charts */
}

/* Minimalist Share Modal */
.share-modal-header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.share-modal-header h3 {
    margin: 0;
    font-family: "Arpona Regular", serif;
    letter-spacing: 2px;
    font-size: 18px;
    font-weight: 500;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    z-index: 10;
}

.share-icons-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.share-icons-row a {
    color: #000;
    transition: opacity 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-icons-row a:hover {
    color: #4e0004;
    /* Maroon hover color */
    transform: translateY(-2px);
}

.copy-link-minimal {
    cursor: pointer;
    font-family: "Arpona Regular", serif;
    font-size: 14px;
    letter-spacing: 1px;
    color: #000;
    text-transform: uppercase;
    transition: color 0.2s, opacity 0.2s;
    display: block;
    margin-top: 10px;
}

.copy-link-minimal:hover {
    color: #4e0004;
    /* Maroon hover color */
}

#copyStatus.copied {
    color: #4e0004;
}


/* Wishlist Mobile Icon Styles */
@media (max-width: 768px) {
    .wishlist-icon-mobile {
        position: absolute;
        top: 22px;
        right: 92.33px !important;
        background: transparent !important;
        border: none;
        color: #000000;
        cursor: pointer;
        line-height: 1;
        padding: 0;
        height: 1.25rem;
        width: 1.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        z-index: 99999;
    }

    .wishlist-icon-mobile .wishlist-count {
        position: absolute;
        top: -5px;
        right: -8px;
        background: #4e0004;
        color: white;
        font-size: 10px;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        display: none;
        align-items: center;
        justify-content: center;
        font-family: 'Lato', sans-serif;
    }
}

.product-card {
    position: relative;
}

.wishlist-action-btn:hover {
    background-color: #000 !important;
    color: #fff !important;
    transition: 0.3s;
}

.wishlist-remove:hover {
    background-color: #f0f0f0 !important;
}

/* YouTube Click Feedback */
.youtube-clicked svg,
.youtube-clicked {
    color: #000000 !important;
    fill: #000000 !important;
}

/* For mobile screens only */
@media screen and (max-width: 768px) {

    /* Style for the YouTube icon in the mobile menu */
    .mobile-menu .social-icon-link svg {
        transition: color 0.1s ease;
    }

    /* Changes color while clicking/tapping */
    .mobile-menu .social-icon-link:active svg {
        color: black !important;
    }
}

@media (max-width: 768px) {
    .date-input-wrapper {
        width: 100%;
        margin-bottom: 0 !important;
    }

    .date-input-wrapper input {
        width: 100% !important;
        padding: 10px 0 !important;
        padding-right: 20px !important;
        margin-bottom: 15px !important;
        border: none !important;
        border-bottom: 1px solid #000 !important;
        font-size: 16px !important;
        background: transparent !important;
        color: #000 !important;
        min-height: 38px !important;
        /* only here */
    }

    .date-with-icon {
        text-align: left !important;
        text-indent: 0 !important;
        direction: ltr !important;
        -webkit-appearance: none !important;
        appearance: none !important;
    }

    input[type="date"]::-webkit-date-and-time-value,
    input[type="time"]::-webkit-date-and-time-value {
        text-align: left !important;
    }
}

/* RECOMMENDED — Mobile fix */
@media (max-width: 768px) {
    .recommended-section .carousel-wrapper {
        align-items: stretch;
    }

    .recommended-section .slide {
        min-width: 0;
        overflow: hidden;
    }

    .recommended-section .slide img {
        width: 100%;
        height: 70svh;
        object-fit: cover;
        object-position: center;
        display: block;
        flex-shrink: 0;
    }
}


/* RECOMMENDED section — prevent layout shift on large images */
.recommended-section .product {
    display: flex;
    flex-direction: column;
}

/* Hide mobile carousel on desktop */
@media (min-width: 769px) {
    .recommended-section .mobile-only {
        display: none !important;
    }

    .recommended-section .desktop-only {
        display: block !important;
    }
}

.recommended-section .product .product-image-wrapper {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
}

.recommended-section .product .product-image-wrapper img {
    display: block;
    width: 100%;
    height: 55svh;
    object-fit: cover;
    margin: 0;
}

.recommended-section .product .product-image-wrapper {
    margin-bottom: 0;
}

.recommended-section .product .product-image-carousel {
    position: relative;
    overflow: hidden;
}

.recommended-section .product .product-image-carousel img {
    display: block;
    width: 100%;
    height: 55svh;
    object-fit: cover;
}

.recommended-section .product img,
.recommended-section .carousel-image {
    width: 100%;
    height: 55svh;
    /* fixed height — matches shop page */
    object-fit: cover;
    /* crop to fit, never stretch layout */
    object-position: center;
    display: block;
    flex-shrink: 0;
    /* prevent flex squishing */
}

/* Lock the product card width so it never grows */
.recommended-section .products .product {
    min-width: 0;
    /* width: 100%; */
    /* max-width: 100%; */
    /* prevent overflow in grid */
    overflow: hidden;
}

/* Make recommended section match shop layout */
.recommended-section {
    padding: 40px;
    background: #fff;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
}

.recommended-section .container {
    display: flex;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
    width: 100%;
    padding: 0;
}

.recommended-section .products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 40px 20px;
    align-items: start;
    min-height: auto;
    padding: 0;
    flex: 1;
    width: 100%;
    box-sizing: border-box;
}

.recommended-section .products .product {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.recommended-section .products .product {
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media (max-width: 1024px) {
    .recommended-section .products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .recommended-section .products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

.recommended-section .products .product {
    width: 100%;
    color: black;
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.recommended-section .products .product-link {
    display: block;
    padding: 0;
    margin: 0;
}

.recommended-section .products .product h4,
.recommended-section .products .product p {
    color: black;
    margin: 10px 0;
    text-align: center;
}

.recommended-section .products .product-link h4 {
    color: black;
    /* margin: 10px 0; */
    /* margin-top: 10px; */
    margin: 10px 0 0 0;
    /* balanced top & small bottom */

    text-align: center;
    transition: color 0.3s ease;
    font-family: "Arpona Regular", serif;
    font-weight: bold;
    text-transform: uppercase;
}

.recommended-section .products .product-link p {
    color: black;
    /* margin: 10px 0; */
    margin: -12px 0 20px 0;
    text-align: center;
    font-family: "Arpona Regular", serif;
}

.recommended-section .product-price {
    margin-top: 10px;
    font-weight: 400;
    text-decoration: none;
    position: relative;
}


/* .header-normal .logo a,
#menuLogo,
.mobile-menu.active::before {
    will-change: transform, opacity;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
} */





/* ===== iPhone Filter/Sort Menu Fixes ===== */

/* Use dvh (dynamic viewport height) for iOS Safari — accounts for toolbar */
@supports (height: 100dvh) {
    .mobile-menu {
        height: 100dvh !important;
    }
}

/* Fallback: use fill-available for older iOS */
@supports not (height: 100dvh) {
    .mobile-menu {
        height: -webkit-fill-available !important;
    }
}

@media (max-width: 768px) {
    .shopping-bag-sidebar.open {
        height: 100dvh !important;
        max-height: 100dvh !important;
        overflow-y: auto !important;
        overscroll-behavior: contain !important;
        -webkit-overflow-scrolling: touch !important;

        z-index: 99999 !important;

        /* iOS safe area fix */
        padding-bottom: calc(20px + env(safe-area-inset-bottom)) !important;
    }
}

/* Prevent scroll bleed-through on iOS when menu is open */
.mobile-menu.active {
    height: 100dvh !important;
    max-height: 100dvh !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    -webkit-overflow-scrolling: touch !important;
    /* Ensure it sits above everything */
    z-index: 99999 !important;
    /* Add bottom padding for iOS home bar */
    padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px)) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior: contain !important;
}

/* Ensure body/html are fully locked on iOS */

/* Fix refine/sort menus specifically */
#refineMenu.active,
#sortMenu.active {
    height: 100dvh !important;
    max-height: 100dvh !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    -webkit-overflow-scrolling: touch !important;
    /* Ensure it sits above everything */
    z-index: 99999 !important;
    /* Add bottom padding for iOS home bar */
    padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px)) !important;
}




@media (max-width: 768px) {

    button:focus,
    button:active {
        outline: none;
        background-color: inherit;
        color: inherit;
        -webkit-tap-highlight-color: transparent;
    }

    .footer-button:focus {
        background: white !important;
        color: black !important;
    }

    .collection-btn:focus {
        background-color: transparent !important;
        color: black !important;
    }

    .checkout-button:focus {
        background: #4e0004 !important;
        color: white !important;
    }
}

/* ===== Country Selector Popup Styles ===== */
.country-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75) !important;
    z-index: 100005;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    touch-action: none;
}

.country-popup.active {
    display: flex;
}

.country-popup-content {
    background: #fff;
    color: #000;
    max-width: 600px;
    width: 90%;
    padding: 3.5rem 2rem 2.5rem;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    font-family: "Arpona Regular", sans-serif;
    touch-action: auto;
}

.close-location-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #888;
    line-height: 1;
    padding: 5px;
    transition: color 0.3s ease;
}

.close-location-popup:hover {
    color: #000;
}

.country-popup h2 {
    margin: 0 0 1rem;
    font-size: 1.8rem;
    font-weight: 600;
    font-family: "Arpona SemiBold", sans-serif;
}

.country-popup p {
    margin: 0 0 1.8rem;
    color: #555;
    font-size: 1.05rem;
    font-family: "Arpona Regular", sans-serif;
}

.country-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.country-btn {
    flex: 1;
    padding: 12px 30px;
    background-color: #fff !important;
    color: #000 !important;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    font-family: "Arpona SemiBold", sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    -webkit-tap-highlight-color: transparent;
}

.country-btn:hover,
.country-btn:focus,
.country-btn:active {
    background-color: #111 !important;
    color: #fff !important;
}

.country-btn:hover span,
.country-btn:focus span,
.country-btn:active span {
    color: #fff !important;
}

.small-note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 1rem;
    font-family: "Arpona Regular", sans-serif;
}

@media (max-width: 768px) {
    .country-popup-content {
        padding: 3rem 1.5rem 2rem;
    }

    .close-location-popup {
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 600px) {
    .country-options {
        flex-direction: column;
    }
}

/* Robust scroll lock */
html.no-scroll,
body.no-scroll {
    overflow: hidden !important;
    height: 100% !important;
    position: relative !important;
}