/* ===== SAFE RESET ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
}

:root {
    --black: #1a1a1c;
    --white: #ffffff;
    --pink: #c86a79;
}

/* ===== TOP BAR ===== */
.top-bar {
    background-color: var(--black);
    color: var(--white);
    font-size: 14px;
}

.top-bar span {
    white-space: nowrap;
}

/* ===== NAVBAR ===== */

.nav-link {
    color: #444;
    font-weight: 400;
}

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

.nav-icon {
    font-size: 18px;
    cursor: pointer;
    color: #56565f;
}

.nav-icon:hover {
    color: var(--pink);
}

/* Mobile View Only */
@media (max-width: 991.98px) {
    /* Center menu items */
    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #e5e5e5;
    }

    /* Remove last border */
    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    /* Center icons also */
    .navbar-collapse .d-flex {
        justify-content: center;
        padding-top: 15px;
    }
}

/* ===== CART COUNT ===== */
.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--pink);
    color: var(--white);
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 50%;
}

/* ===== hero section start ===== */

.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.slides {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: var(--white);
    z-index: 2;
    max-width: 600px;
}

.hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: 64px;
    margin-bottom: 20px;
}

.hero-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.hero-content p {
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn-outline {
    padding: 14px 30px;
    background: transparent;
    border: 1px solid var(--pink);
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--pink);
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid var(--pink);
    color: var(--pink);
    padding: 14px 18px;
    cursor: pointer;
    z-index: 3;
    transition: 0.3s;
}

.arrow:hover {
    background: var(--pink);
    color: #fff;
}

.arrow.left {
    left: 20px;
}

.arrow.right {
    right: 20px;
}

.dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border: 1px solid #e08c98;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #e08c98;
}

@media (max-width: 1024px) {
    .hero-content {
        left: 5%;
        max-width: 500px;
    }

    .arrow {
        padding: 12px 16px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 75vh;
    }

    .hero-content {
        /* left: 50%;
        top: 55%; */
        /* transform: translate(-50%, -50%); */
        text-align: center;
        padding: 0 20px;
        max-width: 100%;
    }

    .btn-outline {
        padding: 12px 24px;
        font-size: 14px;
    }

    .arrow {
    }
}

/* ===== hero section end ===== */

/* ===== shop the moment start ===== */

#shop-moment-section {
    padding: 80px 24px;
}

.shop-moment-title {
    font-size: 42px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
}

.shop-moment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.shop-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.shop-card:hover {
    transform: translateY(-6px);
}

.shop-card-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: #f4f4f4;
}

.shop-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.shop-card:hover img {
    transform: scale(1.05);
}

.shop-card-content {
    padding-top: 18px;
}

.shop-card-content h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 6px;
}

.shop-card-desc {
    font-size: 14px;
    color: #6f6f6f;
    margin-bottom: 10px;
}

.shop-card-price {
    font-size: 15px;
    font-weight: 500;
}

.shop-moment-title {
    font-size: 42px;
    font-weight: 600;
}

/* Cards */
.shop-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.shop-card:hover {
    transform: translateY(-6px);
}

.shop-card-image {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f4f4f4;
}

.shop-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.shop-card:hover img {
    transform: scale(1.05);
}

.shop-card-content {
    padding-top: 16px;
}

.shop-card-content h3 {
    font-size: 18px;
    font-weight: 500;
}

.shop-card-desc {
    font-size: 14px;
    color: #6f6f6f;
}

.shop-card-price {
    font-size: 15px;
    font-weight: 500;
}

/* ===== shop the moment end ===== */

/* ===== FEATURES STRIP ===== */
#jewellery-features-strip {
    background-color: #f7f7f8;
}

/* Feature item */
.jewellery-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Icon circle */
.jewellery-feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: transform 0.3s ease;
}

.jewellery-feature-icon img {
    max-width: 30px;
    max-height: 30px;
}

/* Hover */
.jewellery-feature-item:hover .jewellery-feature-icon {
    transform: translateY(-4px);
}

.jewellery-feature-item h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 6px;
}

.jewellery-feature-item p {
    font-size: 14px;
    color: #6f6f6f;
    line-height: 1.5;
}

/* ===== how to wear section start ===== */
#how-to-wear-section {
    padding: 90px 0;
}

.how-to-wear-header h2 {
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 12px;
}

.how-to-wear-header p {
    font-size: 16px;
    color: #6f6f6f;
}

.how-to-wear-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3 / 4;
}

.how-to-wear-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.how-to-wear-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.05)
    );
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
}

.how-to-wear-overlay h3 {
    font-family: "Playfair Display", serif;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 6px;
}

.how-to-wear-overlay p {
    font-size: 14px;
    color: #e6e6e6;
    margin-bottom: 16px;
}

.how-to-wear-link {
    font-size: 14px;
    font-weight: 500;
}

.how-to-wear-card:hover img {
    transform: scale(1.08);
}

#jewellery-video-hero.jvh-wrapper {
    width: 100%;
    height: 420px;
    position: relative;
    overflow: hidden;
}

.jvh-image-layer {
    width: 100%;
    height: 100%;
    background-image: url("../images/hand-finishing.jpg");
    background-size: cover;
    background-position: left center;
    position: relative;
}

.jvh-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.65) 65%,
        rgba(0, 0, 0, 0.95) 100%
    );
}

.jvh-play-button {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition:
        transform 0.3s ease,
        background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jvh-play-button:hover {
    transform: translate(-50%, -50%) scale(1.08);
    background-color: rgba(255, 255, 255, 0.3);
}

.jvh-play-icon {
    width: 0;
    height: 0;
    border-left: 18px solid #ffffff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

@media (min-width: 1400px) {
    #jewellery-video-hero.jvh-wrapper {
        height: 480px;
    }

    .jvh-play-button {
        width: 76px;
        height: 76px;
    }
}

/* ===== how to wear section end ===== */

/* Find Your Perfect Match section start */
/* Section */
#perfect-match-section {
    padding: 100px 0;
}

/* Header */
.perfect-match-heading {
    font-family: "Playfair Display", serif;
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 15px;
}

.perfect-match-subtext {
    font-size: 16px;
    color: #666;
}

/* Card */
.perfect-match-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 450px;
}

.perfect-match-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Overlay */
.perfect-match-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.05)
    );
}

.perfect-match-card h3 {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    font-family: "Playfair Display", serif;
    font-size: 24px;
    color: #ffffff;
    font-weight: 500;
}

/* Hover */
.perfect-match-card:hover img {
    transform: scale(1.08);
}

/* Find Your Perfect Match section end */

/* Make it uniquely yours section start */
/* Section */
#luxury-personalization-section {
    padding: 100px 0;
    background: #efefef;
}

/* Header */
.luxury-personalization-title {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 15px;
}

.luxury-personalization-subtitle {
    font-size: 17px;
    color: #666;
}

/* Card */
.luxury-service-card {
    background: #f6f6f6;
    padding: 50px 35px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.luxury-service-card:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

/* Icon */
.luxury-service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #f1eaea;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.luxury-service-icon-wrapper img {
    width: 32px;
    height: 32px;
    opacity: 0.7;
}

/* Text */
.luxury-service-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
}

.luxury-service-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.luxury-service-link {
    color: #c97c84;
    font-weight: 500;
    font-size: 15px;
    transition: opacity 0.3s ease;
}

.luxury-service-card:hover .luxury-service-link {
    opacity: 0.7;
}

/* Make it uniquely yours section end */

/* Bestsellers section start */

#luxury-bestsellers-section {
    padding: 100px 0px;
    background: #f2f2f2;
}

.luxury-bestsellers-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.luxury-bestsellers-title {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 10px;
}

.luxury-bestsellers-subtitle {
    font-size: 17px;
    color: #666;
}

.luxury-bestsellers-viewall {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.luxury-bestsellers-viewall:hover {
    opacity: 0.6;
}

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

.luxury-product-card {
    cursor: pointer;
    transition: transform 0.4s ease;
}

.luxury-product-card:hover {
    transform: translateY(-6px);
}

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

.luxury-product-image-wrapper img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.luxury-product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #b76e79;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.luxury-product-info {
    padding-top: 20px;
}

.luxury-product-name {
    font-size: 18px;
    margin-bottom: 8px;
}

.luxury-product-rating {
    color: #c87b84;
    font-size: 14px;
    margin-bottom: 8px;
}

.luxury-product-rating span {
    color: #888;
    margin-left: 5px;
}

.luxury-product-price {
    font-size: 18px;
    font-weight: 600;
}

/* Bestsellers section end */

#isha-seenon-section {
    padding: 60px 0 30px;
    background: #f5f5f5;
}

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

.isha-seenon-divider {
    height: 1px;
    background: #e2e2e2;
    margin-bottom: 40px;
}

.isha-seenon-label {
    font-size: 14px;
    letter-spacing: 2px;
    color: #777;
    margin-bottom: 30px;
}

.isha-seenon-logos {
    display: flex;
    justify-content: center;
    gap: 80px;
    font-family: "Playfair Display", serif;
    font-size: 28px;
    color: #9a9a9a;
}

/* ================= STYLED BY YOU start ================= */
/* Section */
#isha-styled-section {
    padding: 60px 0 100px;
    background: #f5f5f5;
}

/* Heading */
.isha-styled-heading {
    font-family: "Playfair Display", serif;
    font-size: 42px;
}

/* Card */
.isha-styled-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.isha-styled-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.isha-styled-card:hover img {
    transform: scale(1.05);
}

/* ================= STYLED BY YOU end ================= */

/* Styling 101 With Diamonds start */
#isha-diamond-carousel-section {
    padding: 100px 0;
    text-align: center;
}

.isha-diamond-carousel-container {
    max-width: 1200px;
    margin: auto;
}

.isha-diamond-carousel-heading {
    font-family: "Playfair Display", serif;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 10px;
}

.isha-diamond-carousel-subtext {
    font-size: 15px;
    color: #7a7a7a;
    margin-bottom: 60px;
}

/* Wrapper */
.isha-diamond-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Track */
.isha-diamond-carousel-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

/* Cards */
.isha-diamond-card {
    width: 280px;
    height: 440px;
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.6s ease;
    opacity: 0.35;
    transform: scale(0.82);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    cursor: pointer;
}

.isha-diamond-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.isha-diamond-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 22px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
    color: white;
}

.isha-diamond-overlay h3 {
    font-family: "Playfair Display", serif;
    font-size: 26px;
    font-weight: 500;
}

/* States */
.isha-diamond-active {
    transform: scale(1);
    opacity: 1;
    z-index: 3;
}

.isha-diamond-left {
    transform: translateX(-40px) scale(0.85);
    opacity: 0.55;
}

.isha-diamond-right {
    transform: translateX(40px) scale(0.85);
    opacity: 0.55;
}

/* Navigation */
.isha-diamond-nav {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    font-size: 22px;
    transition: all 0.3s ease;
}

.isha-diamond-nav:hover {
    background: #111;
    color: #fff;
}

.isha-diamond-prev {
    margin-right: 25px;
}

.isha-diamond-next {
    margin-left: 25px;
}

/* Styling 101 With Diamonds end */

#isha-features-strip-section {
    background-color: #f3f3f3;
    padding: 70px 40px;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.isha-features-strip-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.isha-feature-item {
    flex: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.isha-feature-item:hover {
    transform: translateY(-6px);
}

/* Icon Circle */
.isha-feature-icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 18px auto;
    background-color: #e9e9e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.isha-feature-item:hover .isha-feature-icon-circle {
    background-color: #dddddd;
}

.isha-feature-icon {
    font-size: 28px;
    color: #444;
}

/* Text */
.isha-feature-title {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
}

.isha-feature-subtitle {
    font-size: 14px;
    color: #777;
}

#isha-process-timeline-section {
    padding: 100px 20px;
}

.isha-process-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.isha-process-heading {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    margin-bottom: 10px;
}

.isha-process-subtext {
    color: #777;
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto 70px auto;
    line-height: 1.6;
}

/* Timeline */
.isha-process-timeline {
    position: relative;
}

.isha-process-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: #d6a1a8;
    transform: translateX(-50%);
}

/* Items */
.isha-process-item {
    position: relative;
    width: 50%;
    padding: 40px 40px;
    cursor: pointer;
}

.isha-process-left {
    left: -55px;
    text-align: right;
}

.isha-process-right {
    left: 54%;
    text-align: left;
}

.isha-process-content {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.isha-process-item:hover .isha-process-content {
    transform: translateY(-6px);
}

.isha-process-content h3 {
    font-family: "Playfair Display", serif;
    margin-bottom: 8px;
}

.isha-process-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.isha-process-content img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
}

/* Dots */
.isha-process-dot-left {
    position: absolute;
    top: 60px;
    left: 100%;
    transform: translateX(-50%);
    width: 34px;
    height: 34px;
    background: #d6a1a8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
}

.isha-process-dot-right {
    position: absolute;
    top: 60px;
    left: 0%;
    transform: translateX(-50%);
    width: 34px;
    height: 34px;
    background: #d6a1a8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
}

/* Button */
.isha-process-button-wrapper {
    margin-top: 70px;
}

.isha-process-cta {
    background: #d6a1a8;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.isha-process-cta:hover {
    background: #c48891;
}

/* aurum-instagram-section start */

#aurum-instagram-section {
    padding: 100px 0;
    background: #f4f4f4;
}

.aurum-instagram-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    text-align: center;
}

.aurum-instagram-title {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 12px;
}

.aurum-instagram-icon {
    margin-right: 8px;
}

.aurum-instagram-subtitle {
    font-size: 18px;
    color: #6f6f6f;
    margin-bottom: 70px;
}

.aurum-instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.aurum-instagram-card {
    border: 2px solid #b76e79;
    padding: 35px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.4s ease;
}

.aurum-instagram-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.aurum-instagram-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.aurum-instagram-card:hover img {
    transform: scale(1.05);
}

.aurum-instagram-button-wrapper {
    margin-top: 70px;
}

.aurum-instagram-btn {
    padding: 16px 40px;
    font-size: 16px;
    border: 2px solid #b76e79;
    background: transparent;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    transition: all 0.3s ease;
}

.aurum-instagram-btn:hover {
    background: #b76e79;
    color: #fff;
}

#aurum-newsletter-section {
    position: relative;
    padding: 140px 20px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(120deg, #2a2526, #3b3234, #2e2a2b, #262222);
}

.aurum-newsletter-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.05),
        transparent 70%
    );
    pointer-events: none;
}

.aurum-newsletter-container {
    position: relative;
    max-width: 900px;
    margin: auto;
    z-index: 2;
}

.aurum-newsletter-title {
    font-family: "Playfair Display", serif;
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.aurum-newsletter-subtitle {
    font-size: 20px;
    font-weight: 300;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 60px;
}

.aurum-newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 760px;
    margin: auto;
}

.aurum-newsletter-input {
    flex: 1;
    padding: 22px 24px;
    font-size: 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
}

.aurum-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.aurum-newsletter-input:focus {
    border-color: #b56a73;
    background: rgba(255, 255, 255, 0.12);
}

.aurum-newsletter-button {
    padding: 22px 50px;
    font-size: 18px;
    border: none;
    background: #b56a73;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.aurum-newsletter-button:hover {
    background: #a55b65;
}

.aurum-newsletter-checkbox-wrapper {
    margin-top: 35px;
}

.aurum-newsletter-checkbox-label {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #e0e0e0;
}

.aurum-newsletter-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.aurum-newsletter-privacy {
    margin-top: 35px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* aurum-instagram-section end */

/* footer start */

#ij-footer-section {
    background: #111214;
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.8;
    color: #9a9a9a;
    max-width: 280px;
}

.footer-social-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1a1b1d;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    cursor: pointer;
}

.footer-social-circle:hover {
    background: #2a2b2d;
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links li {
    font-size: 14px;
    margin-bottom: 14px;
    color: #9a9a9a;
    cursor: pointer;
    transition: 0.3s;
}

.footer-links li:hover {
    color: #ffffff;
}

.footer-divider {
    border-color: #b5b6b9;
}

.footer-policy {
    color: #9a9a9a;
    text-decoration: none;
}

.footer-policy:hover {
    color: #ffffff;
}

/* =====================================================
   LARGE DEVICES (≤ 1200px)
===================================================== */
@media (max-width: 1200px) {
    .luxury-bestsellers-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

/* =====================================================
   LAPTOP / TABLET (≤ 992px)
===================================================== */
@media (max-width: 992px) {
    /* HERO */
    .hero {
        height: 75vh;
        min-height: 500px;
    }

    .hero-content {
        left: 5%;
        max-width: 90%;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content h3 {
        font-size: 20px;
    }

    /* BESTSELLERS */
    .luxury-bestsellers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    /* INSTAGRAM */
    .aurum-instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* TIMELINE FIX */
    .isha-process-line {
        left: 8px;
    }

    .isha-process-item {
        width: 100%;
        padding-left: 40px;
        text-align: left !important;
    }

    .isha-process-left,
    .isha-process-right {
        left: 0 !important;
    }

    .isha-process-dot-left,
    .isha-process-dot-right {
        left: 0;
    }
}

/* =====================================================
   TABLET (≤ 768px)
===================================================== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content h3 {
        font-size: 18px;
    }

    .shop-moment-title,
    .perfect-match-heading,
    .luxury-personalization-title,
    .luxury-bestsellers-title,
    .aurum-instagram-title {
        font-size: 30px;
    }

    .luxury-bestsellers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =====================================================
   MOBILE (≤ 576px)
===================================================== */
@media (max-width: 576px) {
    /* HERO */
    .hero {
        height: 70vh;
    }

    .hero-content {
        left: 20px;
        right: 20px;
        top: 149px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content h3 {
        font-size: 16px;
    }

    .btn-outline {
        padding: 10px 18px;
        font-size: 14px;
    }

    /* Section spacing */
    /* section {
        padding: 60px 15px !important;
    } */

    /* BESTSELLERS */
    .luxury-bestsellers-grid {
        grid-template-columns: 1fr;
    }

    /* INSTAGRAM */
    .aurum-instagram-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* CAROUSEL */
    .isha-diamond-card {
        width: 220px;
        height: 360px;
    }

    .isha-diamond-carousel-track {
        gap: 20px;
    }
}

/* =====================================================
   FEATURES STRIP RESPONSIVE
===================================================== */

/* Large screens (≤1200px) */
@media (max-width: 1200px) {
    .isha-features-strip-container {
        gap: 40px;
    }

    .isha-feature-icon-circle {
        width: 70px;
        height: 70px;
    }
}

/* Tablets (≤992px) */
@media (max-width: 992px) {
    .isha-features-strip-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 30px;
        text-align: center;
    }

    .isha-feature-title {
        font-size: 16px;
    }

    .isha-feature-subtitle {
        font-size: 14px;
    }
}

/* Small tablets (≤768px) */
@media (max-width: 768px) {
    .isha-features-strip-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 20px;
    }

    #isha-features-strip-section {
        padding: 70px 20px;
    }

    .isha-feature-icon-circle {
        width: 65px;
        height: 65px;
    }
}

/* Mobile (≤576px) */
@media (max-width: 576px) {
    .isha-features-strip-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    #isha-features-strip-section {
        padding: 60px 15px;
    }

    .isha-feature-icon-circle {
        width: 60px;
        height: 60px;
    }

    .isha-feature-title {
        font-size: 15px;
    }

    .isha-feature-subtitle {
        font-size: 13px;
    }
}

/* =====================================================
   DIAMOND CAROUSEL – FULLY RESPONSIVE
===================================================== */

/* ===============================
   1400px and below (Large screens)
================================ */
@media (max-width: 1400px) {
    .isha-diamond-card {
        width: 280px;
        height: 400px;
    }

    .isha-diamond-carousel-heading {
        font-size: 38px;
    }
}

/* ===============================
   1200px and below
================================ */
@media (max-width: 1200px) {
    .isha-diamond-card {
        width: 260px;
        height: 380px;
    }

    .isha-diamond-carousel-track {
        gap: 30px;
    }

    .isha-diamond-prev {
        left: -30px;
    }

    .isha-diamond-next {
        right: -30px;
    }
}

/* ===============================
   992px and below (Tablets)
================================ */
@media (max-width: 992px) {
    #isha-diamond-carousel-section {
        padding: 80px 20px;
    }

    .isha-diamond-card {
        width: 220px;
        height: 330px;
    }

    .isha-diamond-carousel-heading {
        font-size: 32px;
    }

    .isha-diamond-carousel-subtext {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .isha-diamond-carousel-track {
        gap: 20px;
    }

    /* Remove 3D scaling for cleaner tablet look */
    .isha-diamond-left,
    .isha-diamond-right {
        transform: scale(0.95);
        opacity: 0.9;
    }

    .isha-diamond-nav {
        display: none;
    }
}

/* ===============================
   768px and below (Small tablets)
================================ */
@media (max-width: 768px) {
    #isha-diamond-carousel-section {
        padding: 70px 15px;
    }

    .isha-diamond-carousel-heading {
        font-size: 26px;
    }

    .isha-diamond-carousel-subtext {
        font-size: 14px;
    }

    .isha-diamond-card {
        width: 200px;
        height: 300px;
    }

    .isha-diamond-carousel-track {
        gap: 18px;
    }
}

/* ===============================
   576px and below (Mobile)
================================ */
@media (max-width: 576px) {
    #isha-diamond-carousel-section {
        padding: 60px 15px;
    }

    .isha-diamond-carousel-wrapper {
        overflow: hidden;
    }

    .isha-diamond-carousel-track {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 10px;
        justify-content: flex-start;
    }

    .isha-diamond-card {
        flex: 0 0 auto;
        width: 240px;
        height: 360px;
        scroll-snap-align: center;
        transform: none !important;
        opacity: 1 !important;
    }

    .isha-diamond-overlay h3 {
        font-size: 16px;
    }

    .isha-diamond-nav {
        display: none;
    }
}

/* ===============================
   400px and below (Small mobile)
================================ */
@media (max-width: 400px) {
    .isha-diamond-card {
        width: 210px;
        height: 320px;
    }

    .isha-diamond-carousel-heading {
        font-size: 22px;
    }

    .isha-diamond-carousel-subtext {
        font-size: 13px;
    }
}

/* =====================================================
   TOP BAR RESPONSIVE
===================================================== */

/* 1200px and below */
@media (max-width: 1200px) {
    .top-left {
        gap: 20px;
    }

    .top-right {
        gap: 15px;
    }

    .top-bar span {
        font-size: 14px;
    }
}

/* 992px and below (Tablet) */
@media (max-width: 992px) {
    .top-bar .d-flex {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-left,
    .top-right {
        justify-content: center;
        flex-wrap: wrap;
    }

    .top-bar span {
        font-size: 13px;
    }
}

/* 768px and below */
@media (max-width: 768px) {
    .top-left {
        gap: 15px;
    }

    .top-right {
        gap: 12px;
    }

    .top-bar span {
        font-size: 12.5px;
    }

    .top-bar img {
        width: 14px;
        height: auto;
    }
}

/* 576px and below (Mobile) */
@media (max-width: 576px) {
    .top-bar {
        padding: 8px 10px;
    }

    .top-bar .d-flex {
        flex-direction: column;
        gap: 8px;
    }

    .top-left {
        flex-direction: column;
        gap: 6px;
    }

    .top-right {
        gap: 10px;
        flex-wrap: wrap;
    }

    .top-bar span {
        font-size: 12px;
    }

    .top-bar img {
        width: 12px;
    }
}

/* 400px and below (Small phones) */
@media (max-width: 400px) {
    .top-bar span {
        font-size: 11px;
    }

    .top-right span:nth-child(2),
    .top-right span:nth-child(3) {
        display: none; /* hide currency & language on very small screens */
    }
}

/* =====================================================
   AURUM NEWSLETTER – FULLY RESPONSIVE
===================================================== */

/* 1200px and below */
@media (max-width: 1200px) {
    .aurum-newsletter-container {
        max-width: 900px;
        padding: 0 30px;
    }

    .aurum-newsletter-title {
        font-size: 36px;
    }

    .aurum-newsletter-subtitle {
        font-size: 15px;
    }
}

/* 992px and below (Tablet) */
@media (max-width: 992px) {
    #aurum-newsletter-section {
        padding: 80px 20px;
    }

    .aurum-newsletter-title {
        font-size: 30px;
    }

    .aurum-newsletter-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .aurum-newsletter-form {
        flex-direction: column;
        gap: 15px;
    }

    .aurum-newsletter-input {
        width: 100%;
    }

    .aurum-newsletter-button {
        width: 100%;
    }
}

/* 768px and below */
@media (max-width: 768px) {
    #aurum-newsletter-section {
        padding: 70px 15px;
    }

    .aurum-newsletter-title {
        font-size: 26px;
    }

    .aurum-newsletter-subtitle {
        font-size: 13.5px;
    }

    .aurum-newsletter-checkbox-label {
        font-size: 13px;
        text-align: left;
    }

    .aurum-newsletter-privacy {
        font-size: 12px;
        padding: 0 10px;
    }
}

/* 576px and below (Mobile) */
@media (max-width: 576px) {
    #aurum-newsletter-section {
        padding: 60px 15px;
    }

    .aurum-newsletter-title {
        font-size: 22px;
    }

    .aurum-newsletter-subtitle {
        font-size: 13px;
        line-height: 1.6;
    }

    .aurum-newsletter-input {
        padding: 12px 15px;
        font-size: 14px;
    }

    .aurum-newsletter-button {
        padding: 12px;
        font-size: 14px;
    }

    .aurum-newsletter-checkbox-wrapper {
        margin-top: 15px;
    }

    .aurum-newsletter-privacy {
        font-size: 11.5px;
        margin-top: 15px;
    }
}

/* 400px and below (Small phones) */
@media (max-width: 400px) {
    .aurum-newsletter-title {
        font-size: 20px;
    }

    .aurum-newsletter-subtitle {
        font-size: 12.5px;
    }

    .aurum-newsletter-input {
        font-size: 13px;
    }

    .aurum-newsletter-button {
        font-size: 13px;
    }
}

.image-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    cursor: zoom-out;
}

/* BIG IMAGE */
.image-lightbox img {
    width: 100%;
    height: 100%;

    /* 👇 THIS MAKES IT BIG */
    max-width: 95vw;
    max-height: 95vh;

    object-fit: contain;

    transform: scale(1);
    transition: transform 0.3s ease;
}

/* close button */
.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 42px;
    color: #fff;
    cursor: pointer;
    z-index: 2;
}

.main_image_wrapper img {
    cursor: zoom-in;
}
