/* =========================================
   Premium Jewellery Home Page CSS
   White + Gold Luxury Theme
========================================= */

:root {
    --gold: #c59b2d;
    --gold-dark: #9b7319;
    --gold-light: #fff1bf;
    --gold-soft: #fff8df;
    --white: #ffffff;
    --cream: #fffdf7;
    --black: #111111;
    --text: #333333;
    --muted: #777777;
    --border-gold: rgba(197, 155, 45, 0.35);
    --shadow-soft: 0 15px 40px rgba(0, 0, 0, 0.08);
    --shadow-gold: 0 18px 45px rgba(197, 155, 45, 0.22);
}

body {
    background: var(--cream);
}

/* =========================================
   Common Buttons
========================================= */

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border: 1px solid var(--gold);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 800;
    letter-spacing: 0.3px;
    box-shadow: 0 12px 28px rgba(197, 155, 45, 0.28);
    transition: all 0.35s ease;
}

.btn-gold:hover {
    background: var(--white);
    color: var(--gold-dark);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(197, 155, 45, 0.35);
}

.btn-outline-gold {
    border: 1px solid var(--gold);
    color: var(--gold-dark);
    background: var(--white);
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 700;
    transition: all 0.35s ease;
}

.btn-outline-gold:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* =========================================
   Hero Slider
========================================= */
/* =========================================
   Hero Slider - 1920 x 700 Right To Left Slide
========================================= */

.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--white);
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    width: 100%;
    height: 700px;
}

.hero-slider .carousel-item {
    position: relative;
    overflow: hidden;
    transition: transform 0.85s ease-in-out;
}

/* Overlay */
/*.hero-slider .carousel-item::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    background:*/
/*        linear-gradient(*/
/*            90deg,*/
/*            rgba(255, 255, 255, 0.88) 0%,*/
/*            rgba(255, 255, 255, 0.62) 38%,*/
/*            rgba(255, 255, 255, 0.08) 100%*/
/*        );*/
/*    z-index: 1;*/
/*    pointer-events: none;*/
/*}*/

/* 1920 x 700 Banner Image */
.hero-slider .carousel-item img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Caption */
.custom-caption {
    position: absolute;
    left: 8%;
    right: auto;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 620px;
    text-align: left;
    padding: 0;
    color: var(--black);
}

/*.custom-caption::before {*/
/*    content: "Luxury Jewellery";*/
/*    display: inline-block;*/
/*    color: var(--gold-dark);*/
/*    background: rgba(255, 248, 223, 0.9);*/
/*    border: 1px solid var(--border-gold);*/
/*    border-radius: 50px;*/
/*    padding: 8px 18px;*/
/*    font-size: 13px;*/
/*    font-weight: 800;*/
/*    letter-spacing: 2px;*/
/*    text-transform: uppercase;*/
/*    margin-bottom: 18px;*/
/*}*/

.custom-caption h1 {
    color: var(--black);
    font-size: 62px;
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 18px;
    text-shadow: none;
}

.custom-caption h1::first-letter {
    color: var(--gold);
}

.custom-caption p {
    color: var(--text);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 560px;
}

/* Controls */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 56px;
    height: 56px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    opacity: 1;
    box-shadow: var(--shadow-soft);
    z-index: 5;
}

.hero-slider .carousel-control-prev {
    left: 24px;
}

.hero-slider .carousel-control-next {
    right: 24px;
}

.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
    filter: invert(54%) sepia(61%) saturate(533%) hue-rotate(8deg) brightness(91%) contrast(88%);
}

/* Indicators */
.hero-slider .carousel-indicators {
    bottom: 22px;
    z-index: 5;
}

.hero-slider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gold);
    border: 0;
    opacity: 0.45;
}

.hero-slider .carousel-indicators button.active {
    opacity: 1;
    width: 34px;
    border-radius: 20px;
}

/* Default Hero */
.default-hero {
    min-height: 700px;
    display: flex;
    align-items: center;
    padding: 120px 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
        radial-gradient(circle at top left, var(--gold-light), transparent 35%),
        radial-gradient(circle at bottom right, var(--gold-soft), transparent 40%);
    position: relative;
}

.default-hero h1 {
    color: var(--black);
    font-size: 58px;
    font-weight: 900;
}

.default-hero p {
    color: var(--text);
    font-size: 18px;
    margin: 18px 0 28px;
}

/* Responsive */
@media (max-width: 1199px) {
    .hero-slider .carousel,
    .hero-slider .carousel-inner,
    .hero-slider .carousel-item,
    .hero-slider .carousel-item img {
        height: 620px;
    }

    .custom-caption h1 {
        font-size: 52px;
    }
}

@media (max-width: 991px) {
    .hero-slider .carousel,
    .hero-slider .carousel-inner,
    .hero-slider .carousel-item,
    .hero-slider .carousel-item img {
        height: 540px;
    }

    /*.hero-slider .carousel-item::before {*/
    /*    background: rgba(255, 255, 255, 0.78);*/
    /*}*/

    .custom-caption {
        left: 6%;
        right: 6%;
        max-width: 88%;
    }

    .custom-caption h1 {
        font-size: 42px;
    }

    .custom-caption p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .hero-slider .carousel,
    .hero-slider .carousel-inner,
    .hero-slider .carousel-item,
    .hero-slider .carousel-item img {
        height: 460px;
    }

    .custom-caption {
        text-align: center;
        left: 5%;
        right: 5%;
        top: 52%;
    }

    .custom-caption::before {
        font-size: 11px;
        padding: 7px 14px;
        margin-bottom: 12px;
    }

    .custom-caption h1 {
        font-size: 34px;
    }

    .custom-caption p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        display: none;
    }

    .default-hero {
        min-height: 460px;
    }
}

@media (max-width: 575px) {
    .hero-slider .carousel,
    .hero-slider .carousel-inner,
    .hero-slider .carousel-item,
    .hero-slider .carousel-item img {
        height: 390px;
    }

    .custom-caption h1 {
        font-size: 28px;
    }

    .custom-caption p {
        font-size: 14px;
    }

    .default-hero {
        min-height: 390px;
    }

    .default-hero h1 {
        font-size: 34px;
    }
}
/* =========================================
   Section Heading
========================================= */

.section-heading {
    position: relative;
}

.section-heading span {
    display: inline-block;
    color: var(--gold-dark);
    background: var(--gold-soft);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-heading h2 {
    color: var(--black);
    font-size: 42px;
    font-weight: 900;
    margin: 0;
    position: relative;
}

.section-heading h2::after {
    content: "";
    display: block;
    width: 82px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 18px auto 0;
    border-radius: 50px;
}

/* =========================================
   Category Section
========================================= */

#collections {
    background:
        radial-gradient(circle at top left, rgba(197, 155, 45, 0.13), transparent 28%),
        var(--white);
}

.category-card {
    position: relative;
    display: block;
    height: 100%;
    background: var(--white);
    border: 1px solid var(--border-gold);
    border-radius: 0px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.category-card::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 18px;
    z-index: 2;
    pointer-events: none;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.category-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-card-body {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border-gold);
    border-radius: 5px;
    padding: 15px 12px;
    text-align: center;
    backdrop-filter: blur(8px);
}

.category-card-body h5 {
    color: var(--gold-dark);
    font-size: 18px;
    font-weight: 900;
    margin: 0;
}

/* =========================================
   Featured + Latest Product Sections
========================================= */

.bg-soft {
    background:
        linear-gradient(180deg, var(--gold-soft), var(--white));
}

.product-card {
    height: 100%;
    background: var(--white);
    border: 1px solid var(--border-gold);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.product-card > a {
    display: block;
    position: relative;
    overflow: hidden;
    background: var(--gold-soft);
}

.product-card > a::after {
    content: "View";
    position: absolute;
    inset: auto 20px 20px auto;
    width: 54px;
    height: 54px;
    background: var(--white);
    color: var(--gold-dark);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.35s ease;
    box-shadow: var(--shadow-soft);
}

.product-card:hover > a::after {
    opacity: 1;
    transform: translateY(0);
}

.product-card img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.product-card:hover img {
    transform: scale(1.08);
}

.product-card-body {
    padding: 22px 20px 24px;
    position: relative;
}

.product-card-body small {
    display: inline-block;
    color: var(--gold-dark);
    background: var(--gold-soft);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    padding: 5px 13px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}

.product-card-body h5 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.4;
}

.product-card-body h5 a {
    color: var(--black);
    font-weight: 200;
    transition: 0.3s ease;
}

.product-card-body h5 a:hover {
    color: var(--gold-dark);
}

.price {
    color: var(--gold-dark);
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 16px;
}

/* Empty Text */
.col-12.text-center p {
    background: var(--white);
    border: 1px solid var(--border-gold);
    border-radius: 18px;
    padding: 24px;
    color: var(--muted);
    box-shadow: var(--shadow-soft);
}

/* =========================================
   CTA Section
========================================= */

.cta-section {
    position: relative;
    overflow: hidden;
    padding: 95px 0;
    background:
        radial-gradient(circle at top left, rgba(197, 155, 45, 0.25), transparent 32%),
        radial-gradient(circle at bottom right, rgba(197, 155, 45, 0.18), transparent 35%),
        linear-gradient(135deg, #ffffff, #fff8df);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(197, 155, 45, 0.32);
    border-radius: 28px;
    pointer-events: none;
}

.cta-section::after {
    content: "\f3a5";
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%) rotate(-12deg);
    font-size: 150px;
    color: rgba(197, 155, 45, 0.12);
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: var(--black);
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 16px;
}

.cta-section p {
    color: var(--text);
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto 28px;
    line-height: 1.8;
}

/* =========================================
   Spacing polish
========================================= */

section.py-5 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 1199px) {
    .custom-caption h1 {
        font-size: 52px;
    }

    .hero-slider .carousel-item img {
        height: 620px;
    }

    .product-card img {
        height: 280px;
    }
}

@media (max-width: 991px) {
    /*.hero-slider .carousel-item::before {*/
    /*    background: rgba(255, 255, 255, 0.78);*/
    /*}*/

    .hero-slider .carousel-item img {
        height: 520px;
    }

    .custom-caption {
        left: 6%;
        right: 6%;
        max-width: 88%;
    }

    .custom-caption h1 {
        font-size: 42px;
    }

    .custom-caption p {
        font-size: 16px;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .category-card img {
        height: 250px;
    }

    .product-card img {
        height: 260px;
    }

    .cta-section h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    section.py-5 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .hero-slider .carousel-item img {
        height: 460px;
    }

    .custom-caption {
        text-align: center;
        left: 5%;
        right: 5%;
        top: 52%;
    }

    .custom-caption::before {
        font-size: 11px;
        padding: 7px 14px;
        margin-bottom: 12px;
    }

    .custom-caption h1 {
        font-size: 34px;
    }

    .custom-caption p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .category-card {
        border-radius: 18px;
    }

    .category-card img {
        height: 220px;
    }

    .category-card-body {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 12px 8px;
    }

    .category-card-body h5 {
        font-size: 15px;
    }

    .product-card {
        border-radius: 18px;
    }

    .product-card img {
        height: 230px;
    }

    .product-card-body {
        padding: 16px 14px 18px;
    }

    .product-card-body h5 {
        font-size: 16px;
    }

    .cta-section {
        padding: 70px 0;
    }

    .cta-section h2 {
        font-size: 30px;
    }

    .cta-section p {
        font-size: 16px;
    }

    .cta-section::after {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero-slider .carousel-item img {
        height: 390px;
    }

    .custom-caption h1 {
        font-size: 28px;
    }

    .custom-caption p {
        font-size: 14px;
    }

    .btn-gold {
        padding: 10px 22px;
        font-size: 14px;
    }

    .section-heading span {
        font-size: 10px;
        padding: 7px 14px;
    }

    .section-heading h2 {
        font-size: 26px;
    }

    .category-card img {
        height: 185px;
    }

    .product-card img {
        height: 190px;
    }

    .product-card-body small {
        font-size: 9px;
        padding: 4px 10px;
    }

    .product-card-body h5 {
        font-size: 14px;
    }

    .price {
        font-size: 15px;
    }

    .btn-outline-gold {
        padding: 7px 14px;
        font-size: 12px;
    }

    .cta-section h2 {
        font-size: 25px;
    }
}
/* ============================================
   CATEGORY & PRODUCT CARD ALIGNMENT FIX
   ============================================ */

/* Product card full height */
.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Product image fixed height */
.product-card > a {
    display: block;
}

.product-card > a img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* Product body flex */
.product-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 18px;
}

/* Category name */
.product-card-body small {
    min-height: 20px;
    display: block;
    margin-bottom: 8px;
}

/* Product title fixed height */
.product-card-body h5 {
    min-height: 48px;
    margin-bottom: 10px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Product title link */
.product-card-body h5 a {
    color: inherit;
    text-decoration: none;
}

/* Price fixed height */
.product-card-body .price {
    min-height: 24px;
    margin-bottom: 14px;
}

/* Button always bottom */
.product-card-body .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Latest product grid cards equal height */
.row .product-card {
    min-height: 100%;
}

/* Slider product cards equal height */
.slider-item .product-card {
    height: 100%;
}

/* ============================================
   CATEGORY CARD ALIGNMENT FIX
   ============================================ */

.category-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

/* Category image fixed height */
.category-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

/* Category body fixed alignment */
.category-card-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    min-height: 78px;
    text-align: center;
}

/* Category title fixed 2 lines */
.category-card-body h5 {
    margin: 0;
    line-height: 1.35;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ============================================
   RESPONSIVE FIX
   ============================================ */

@media (max-width: 991px) {
    .product-card > a img {
        height: 230px;
    }

    .category-card img {
        height: 210px;
    }
}

@media (max-width: 767px) {
    .product-card > a img {
        height: 200px;
    }

    .category-card img {
        height: 190px;
    }

    .product-card-body {
        padding: 14px;
    }

    .product-card-body h5 {
        min-height: 44px;
        font-size: 15px;
    }

    .category-card-body {
        min-height: 70px;
        padding: 12px;
    }

    .category-card-body h5 {
        min-height: 40px;
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .product-card > a img {
        height: 170px;
    }

    .category-card img {
        height: 160px;
    }

    .product-card-body h5 {
        min-height: 42px;
        font-size: 14px;
    }

    .product-card-body .btn {
        width: 100%;
        text-align: center;
    }

    .category-card-body h5 {
        font-size: 14px;
    }
}
/* =========================================
   Cormorant Garamond Font Custom Styling
========================================= */

/*.font-cormorant,*/
/*.home-cormorant-section .section-heading span,*/
/*.home-cormorant-section .section-heading h2,*/
/*.home-cormorant-section .category-card-body h5 {*/
/*    font-family: "Cormorant Garamond", serif !important;*/
/*}*/
.font-cormorant,
.home-cormorant-section .section-heading span,
.home-cormorant-section .section-heading h2{
    font-family: "Cormorant Garamond", serif !important;
}

/* Category section heading */
.home-cormorant-section .section-heading span {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: none;
    color: var(--gold-dark);
    background: transparent;
    border: none;
    padding: 0;
}

.home-cormorant-section .section-heading h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--black);
}

/* Category name */
.home-cormorant-section .category-card-body h5 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--gold-dark);
}

/* Manual utility classes */
.cormorant-text {
    font-family: "Cormorant Garamond", serif !important;
    font-weight: 400;
    line-height: 1.5;
}

.cormorant-gold {
    font-family: "Cormorant Garamond", serif !important;
    font-weight: 600;
    color: var(--gold-dark);
    line-height: 1.35;
}

.cormorant-heading {
    font-family: "Cormorant Garamond", serif !important;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
}

/* Responsive */
@media (max-width: 991px) {
    .home-cormorant-section .section-heading h2 {
        font-size: 40px;
    }

    .home-cormorant-section .category-card-body h5 {
        font-size: 23px;
    }
}

@media (max-width: 767px) {
    .home-cormorant-section .section-heading span {
        font-size: 17px;
    }

    .home-cormorant-section .section-heading h2 {
        font-size: 34px;
    }

    .home-cormorant-section .category-card-body h5 {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .home-cormorant-section .section-heading span {
        font-size: 16px;
    }

    .home-cormorant-section .section-heading h2 {
        font-size: 30px;
    }

    .home-cormorant-section .category-card-body h5 {
        font-size: 17px;
    }
}
/* =========================================
   Featured Products - Cormorant Font
========================================= */

/*.home-cormorant-section,*/
/*.home-cormorant-section .section-heading span,*/
/*.home-cormorant-section .section-heading h2,*/
/*.home-cormorant-section .product-card-body small,*/
/*.home-cormorant-section .product-card-body h5,*/
/*.home-cormorant-section .product-card-body h5 a,*/
/*.home-cormorant-section .price {*/
/*    font-family: "Cormorant Garamond", serif !important;*/
/*}*/

/*.home-cormorant-section,*/
/*.home-cormorant-section .section-heading span,*/
/*.home-cormorant-section .section-heading h2,*/
/*.home-cormorant-section .product-card-body small,*/
/*.home-cormorant-section .product-card-body h5,*/
/*.home-cormorant-section .price {*/
/*    font-family: "Cormorant Garamond", serif !important;*/
/*}*/

.home-cormorant-section .section-heading span {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: none;
}

.home-cormorant-section .section-heading h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
}

.home-cormorant-section .product-card-body small {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.6px;
}

.home-cormorant-section .product-card-body h5,
.home-cormorant-section .product-card-body h5 a {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
}

.home-cormorant-section .price {
    font-size: 22px;
    font-weight: 700;
}

/* Mobile */
@media (max-width: 767px) {
    .home-cormorant-section .section-heading h2 {
        font-size: 34px;
    }

    .home-cormorant-section .product-card-body h5,
    .home-cormorant-section .product-card-body h5 a {
        font-size: 18px;
    }

    .home-cormorant-section .price {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .home-cormorant-section .section-heading span {
        font-size: 16px;
    }

    .home-cormorant-section .section-heading h2 {
        font-size: 30px;
    }

    .home-cormorant-section .product-card-body h5,
    .home-cormorant-section .product-card-body h5 a {
        font-size: 16px;
    }
}
/* FINAL FORCE BANNER FIX */
.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    width: 100% !important;
    height: auto !important;
    min-height: auto !important;
    background: #fff8df !important;
}

.hero-slider .carousel-item img {
    width: 100% !important;
    height: auto !important;
    max-height: 700px !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block !important;
    background: #fff8df !important;
}
/* =========================================
   Bootstrap Hero Carousel - Clean Default
========================================= */

.hero-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #fff8df;
}

.hero-slider .carousel {
    width: 100%;
}

.hero-slider .carousel-inner {
    width: 100%;
}

.hero-slider .carousel-item {
    position: relative;
    background: #fff8df;
}

.hero-slider .carousel-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Soft overlay */
/*.hero-slider .carousel-item::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    background: linear-gradient(*/
/*        90deg,*/
/*        rgba(255, 255, 255, 0.72) 0%,*/
/*        rgba(255, 255, 255, 0.35) 45%,*/
/*        rgba(255, 255, 255, 0.05) 100%*/
/*    );*/
/*    z-index: 1;*/
/*    pointer-events: none;*/
/*}*/

/* Caption */
.hero-slider .custom-caption {
    display: none !important;
}

.hero-slider .custom-caption h1 {
    color: var(--black);
    font-family: "Cormorant Garamond", serif;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-slider .custom-caption p {
    color: var(--text);
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 24px;
    max-width: 560px;
}

/* Controls */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 52px;
    height: 52px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    opacity: 1;
    box-shadow: var(--shadow-soft);
}

.hero-slider .carousel-control-prev {
    left: 24px;
}

.hero-slider .carousel-control-next {
    right: 24px;
}

.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
    filter: invert(52%) sepia(70%) saturate(470%) hue-rotate(8deg) brightness(90%) contrast(90%);
}

/* Indicators */
.hero-slider .carousel-indicators {
    bottom: 18px;
    z-index: 3;
}

.hero-slider .carousel-indicators button {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 0;
    background-color: var(--gold);
    opacity: 0.45;
}

.hero-slider .carousel-indicators button.active {
    opacity: 1;
    width: 30px;
    border-radius: 20px;
}

/* Default Hero */
.default-hero {
    padding: 120px 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
        radial-gradient(circle at top left, var(--gold-light), transparent 35%),
        radial-gradient(circle at bottom right, var(--gold-soft), transparent 40%);
}

.default-hero h1 {
    color: var(--black);
    font-family: "Cormorant Garamond", serif;
    font-size: 56px;
    font-weight: 700;
}

.default-hero p {
    color: var(--text);
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    margin: 18px 0 28px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-slider .custom-caption {
        left: 6%;
        right: 6%;
        max-width: 88%;
    }

    .hero-slider .custom-caption h1 {
        font-size: 42px;
    }

    .hero-slider .custom-caption p {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    /*.hero-slider .carousel-item::before {*/
    /*    background: rgba(255, 255, 255, 0.55);*/
    /*}*/

    .hero-slider .custom-caption {
        left: 5%;
        right: 5%;
        text-align: center;
    }

    .hero-slider .custom-caption h1 {
        font-size: 34px;
        margin-bottom: 10px;
    }

    .hero-slider .custom-caption p {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero-slider .custom-caption h1 {
        font-size: 28px;
    }

    .hero-slider .custom-caption p {
        font-size: 14px;
    }

    .hero-slider .btn-gold {
        padding: 9px 18px;
        font-size: 14px;
    }
}
/* Remove carousel banner overlay */
.hero-slider .carousel-item::before,
.hero-slider .carousel-item::after,
.hero-slider .carousel-item.active::before,
.hero-slider .carousel-item.active::after {
    content: none !important;
    display: none !important;
    background: none !important;
}
.gold-karat-section{
    background:#fff;
    position:relative;
    overflow:hidden;
}

.karat-subtitle{
    display:inline-block;
    color:#c59b2d;
    font-size:14px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
}

.karat-title{
    font-size:52px;
    font-weight:300;
    line-height:1.15;
    color:#111;
    margin-bottom:25px;
}

.karat-title span{
    color:#c59b2d;
    font-weight:600;
}

.karat-text{
    font-size:18px;
    line-height:1.9;
    color:#666;
    margin-bottom:35px;
}

.btn-karat{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 34px;
    background:#c59b2d;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.btn-karat:hover{
    background:#111;
    color:#fff;
    transform:translateY(-3px);
}

.karat-image-wrapper{
    position:relative;
    border-radius:25px;
    overflow:hidden;
}

.karat-image{
    width:100%;
    border-radius:25px;
    transition:.6s;
}

.karat-image:hover{
    transform:scale(1.05);
}

@media(max-width:991px){

    .karat-title{
        font-size:38px;
    }

    .karat-text{
        font-size:16px;
    }

    .karat-image-wrapper{
        margin-top:20px;
    }
}

@media(max-width:576px){

    .karat-title{
        font-size:30px;
    }

    .btn-karat{
        width:100%;
    }
}
