


    /* =========================================================
   HINDUSTAN JEWELLERS HEADER
========================================================= */

:root {
    --hj-maroon: #671327;
    --hj-dark-maroon: #4b0d1c;
    --hj-gold: #c89d38;
    --hj-gold-light: #e0bd69;
    --hj-border: #e5e5e5;
    --hj-text: #333333;
    --body-font: "Montserrat", sans-serif;
      --wine: #5c1828;
    --wine-dark: #3b0c18;

    --gold: #c9a45c;
    --gold-light: #e5c987;
    --gold-dark: #a77c32;

    --cream: #fbf8f1;
    --ivory: #fffdf8;

    --dark: #171315;
    --text: #555;

    --border: #eadfce;

    --heading-font: "Cormorant Garamond", serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--dark);
    background: var(--ivory);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-padding {
    padding: 100px 0;
}

.hj-offer-bar {
    width: 100%;
    height: 42px;

    background: linear-gradient(
        90deg,
        #5a0d20,
        #74152c,
        #5a0d20
    );

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    overflow: hidden;

    color: #fff;
}

.hj-offer-bar::before {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 60%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.08),
        transparent
    );

    animation: offerShine 5s linear infinite;
}


@keyframes offerShine {

    0% {
        left: -100%;
    }

    100% {
        left: 150%;
    }

}

.hj-offer-content {

    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    position: relative;
    z-index: 2;

    font-family: var(--heading-font);

}

.offer-sparkle {

    color: #e1b74f;

    font-size: 13px;

    animation: sparkle 2s ease-in-out infinite;
}


@keyframes sparkle {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }

}
.offer-label {

    color: #e2bd63;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;
}
.offer-divider {

    width: 1px;
    height: 15px;

    background: rgba(255,255,255,0.4);
}

.offer-text {

    font-size: 13px;

    font-weight: 500;

    letter-spacing: 0.2px;
}
.offer-shop {

    color: #fff;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    padding-bottom: 2px;

    border-bottom: 1px solid #e0b74f;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    transition: all 0.3s ease;
}


.offer-shop i {

    color: #e0b74f;

    font-size: 10px;

    transition: transform 0.3s ease;
}


.offer-shop:hover {

    color: #e0b74f;

}


.offer-shop:hover i {

    transform: translateX(4px);

}

.offer-book-btn {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 7px 15px;

    color: #fff;

    background: transparent;

    border: 1px solid #d8b45a;

    border-radius: 3px;

    font-family: "Montserrat", sans-serif;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.8px;

    text-decoration: none;

    text-transform: uppercase;

    transition: all 0.3s ease;
}


.offer-book-btn i {

    color: #d8b45a;

    font-size: 11px;

    transition: transform 0.3s ease;
}


.offer-book-btn:hover {

    background: #d8b45a;

    color: #5a0d20;

}


.offer-book-btn:hover i {

    color: #5a0d20;

    transform: scale(1.1);
}
@media (max-width: 767px) {

    .offer-book-btn {

        padding: 5px 9px;

        font-size: 8px;

        gap: 4px;

        letter-spacing: 0.3px;
    }

    .offer-book-btn i {
        font-size: 9px;
    }

}

@media (max-width: 767px) {

    .hj-offer-bar {
        height: 36px;
    }


    .hj-offer-content {
        gap: 7px;

        padding: 0 10px;
    }


    .offer-label,
    .offer-divider,
    .offer-sparkle {
        display: none;
    }


    .offer-text {

        font-size: 9px;

        text-align: center;

        white-space: nowrap;
    }


    .offer-shop {

        font-size: 9px;

        white-space: nowrap;
    }


    .offer-shop i {
        font-size: 8px;
    }

}


.hj-main-header {
    height: 74px;
    background: #fff;

    border-bottom: 1px solid #e8e8e8;

    display: flex;
    align-items: center;
}


.hj-main-row {
    display: flex;
    align-items: center;
    gap: 27px;
}

.hj-logo {
    display: flex;
    align-items: center;

    min-width: 235px;
}

.hj-logo img {
    width: 220px;
    height: 67px;

    object-fit: contain;
}


.hj-header-item {
    display: flex;
    align-items: center;
    gap: 8px;

    color: var(--hj-text);

    white-space: nowrap;

    font-size: 16px;

    transition: 0.3s;
}

.hj-header-item i {
    color: var(--hj-maroon);
    font-size: 19px;
}

.hj-header-item:hover {
    color: var(--hj-maroon);
}

.phone-item {
    font-size: 15px;
}


.hj-search {
    height: 50px;

    flex: 1;

    max-width: 330px;

    border: 1px solid #e4a078;

    border-radius: 4px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hj-search input {
    width: 100%;
    height: 100%;

    border: 0;
    outline: 0;

    padding: 0 14px;

    font-size: 14px;

    color: #333;
}

.hj-search input::placeholder {
    color: #777;
}

.hj-search button {
    width: 52px;
    height: 100%;

    background: transparent;

    border: 0;

    color: #aaa;

    font-size: 20px;

    cursor: pointer;
}

.hj-location-wrapper {
    position: relative;
}

.hj-location {
    min-width: 120px;
    height: 45px;

    padding: 0 15px;

    background: #fff;

    border: 1px solid #ddd;

    border-radius: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    color: #222;

    font-size: 14px;

    cursor: pointer;

    transition: all 0.3s ease;
}


.hj-location:hover {
    border-color: #c89d38;
}

.hj-location::after {
    margin-left: 3px;

    border-top: 4px solid #333;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.india-flag {
    font-size: 19px;

    line-height: 1;
}

.hj-country-dropdown {
    min-width: 190px;

    margin-top: 10px !important;

    padding: 8px;

    background: #fff;

    border: 1px solid #e8e8e8;

    border-radius: 8px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.12);

    animation: countryDropdown 0.2s ease;
}


@keyframes countryDropdown {

    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.hj-country-dropdown .dropdown-item {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 10px 12px;

    border-radius: 5px;

    color: #333;

    font-size: 13px;

    transition: all 0.25s ease;
}


.hj-country-dropdown .dropdown-item span {
    font-size: 18px;
}


.hj-country-dropdown .dropdown-item:hover {

    background: #f8f1e5;

    color: #671327;

    padding-left: 16px;
}

.hj-country-dropdown .dropdown-item.active {

    background: #671327;

    color: #fff;
}


.hj-country-dropdown .dropdown-item.active:hover {

    background: #671327;

    color: #fff;
}

.hj-gold-scheme {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #222;

    text-align: center;

    font-size: 11px;

    line-height: 1.1;

    white-space: nowrap;
}

.gold-icon {
    color: var(--hj-gold);
    font-size: 28px;
}

.hj-gold-scheme:hover {
    color: var(--hj-maroon);
}

.hj-action-icon {
    color: #171717;

    width: 38px;

    display: flex;
    flex-direction: column;

    align-items: center;

    justify-content: center;

    position: relative;

    gap: 3px;
}

.hj-action-icon i {
    font-size: 23px;
}

.hj-action-icon small {
    display: none;
}

.hj-action-icon:hover {
    color: var(--hj-maroon);
}

.bag-icon {
    position: relative;
}

.bag-count {
    position: absolute;

    top: -7px;
    right: -3px;

    width: 17px;
    height: 17px;

    border-radius: 50%;

    background: var(--hj-maroon);

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 9px;
}

.hj-menu-toggle {
    width: 38px;
    height: 40px;

    border: 0;
    background: transparent;

    display: flex;
    flex-direction: column;

    justify-content: center;

    gap: 7px;

    cursor: pointer;
}

.hj-menu-toggle span {
    width: 30px;
    height: 1px;

    background: #222;

    display: block;
}

.hj-navigation {
    height: 54px;

    background: #fff;

    border-bottom: 1px solid #ddd;

    box-shadow: 0 2px 6px rgba(0,0,0,0.04);

    position: relative;

    z-index: 100;
}

.hj-nav-list {
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 0;

    margin: 0;
    padding: 0;

    list-style: none;
}

.hj-nav-list > li {
    height: 100%;

    display: flex;
    align-items: center;
}

.hj-nav-list > li > a {
    height: 100%;

    display: flex;
    align-items: center;

    padding: 0 18px;

    color: #3c3c3c;

    font-size: 15px;

    white-space: nowrap;

    transition: 0.25s;

    position: relative;
}

.hj-nav-list > li > a:hover {
    color: var(--hj-maroon);
}

.hj-nav-list > li > a i {
    font-size: 8px;
    margin-left: 7px;
}
.delivery-link i {
    color: var(--hj-gold);

    font-size: 23px !important;

    margin-right: 8px;
}

.offers-link {
    color: #fff !important;

    background: var(--hj-gold);

    height: 32px !important;

    margin: 11px 5px;

    padding: 0 12px !important;

    border-radius: 3px;

    font-weight: 600;
}

.offers-link i {
    font-size: 12px !important;
    margin-right: 5px;
}

.gold-rate-link {
    color: var(--hj-gold) !important;

    font-weight: 500;
}

.hj-mega-menu {
    position: absolute;

    top: 100%;
    left: 0;

    width: 100%;

    background: #fff;

    padding: 30px 0;

    border-top: 2px solid var(--hj-gold);

    box-shadow: 0 15px 35px rgba(0,0,0,0.13);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;

    z-index: 999;
}


.hj-dropdown:hover .hj-mega-menu {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

.hj-mega-menu h5 {
    color: var(--hj-maroon);

    font-size: 12px;

    letter-spacing: 1px;

    font-weight: 700;

    margin-bottom: 15px;

    padding-bottom: 9px;

    border-bottom: 1px solid #eee;
}


.hj-mega-menu a {
    display: block;

    color: #555;

    font-size: 13px;

    padding: 6px 0;

    transition: 0.25s;
}


.hj-mega-menu a:hover {
    color: var(--hj-maroon);

    padding-left: 5px;
}

.menu-banner {
    height: 180px;

    position: relative;

    overflow: hidden;

    background: var(--hj-dark-maroon);
}

.menu-banner img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0.55;

    transition: 0.5s;
}

.menu-banner:hover img {
    transform: scale(1.05);
}

.menu-banner > div {
    position: absolute;

    inset: 0;

    padding: 25px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    color: #fff;
}

.menu-banner span {
    color: var(--hj-gold-light);

    font-size: 9px;

    letter-spacing: 2px;
}

.menu-banner h4 {
    font-family: var(--heading-font);

    font-size: 30px;

    line-height: 0.95;

    margin: 8px 0;
}

.menu-banner a {
    color: #fff;

    font-size: 10px;

    padding: 0;
}

.menu-banner a:hover {
    color: var(--hj-gold-light);

    padding-left: 0;
}

.hj-mobile-menu {
    width: 340px !important;
}

.hj-mobile-menu .offcanvas-header {
    border-bottom: 1px solid #eee;

    padding: 15px 20px;
}

.mobile-logo img {
    width: 145px;
    height: 55px;
    object-fit: contain;
}

.mobile-search {
    height: 45px;

    border: 1px solid #ddd;

    display: flex;

    margin-bottom: 20px;
}

.mobile-search input {
    flex: 1;

    border: 0;

    outline: 0;

    padding: 0 12px;

    font-size: 12px;
}

.mobile-search button {
    width: 45px;

    border: 0;

    background: var(--hj-maroon);

    color: #fff;
}

.mobile-menu-list {
    width: 100%;
}

.mobile-simple-link {

    min-height: 60px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 14px;

    border-bottom: 1px solid #e8e8e8;

    color: #333;

    font-family: var(--heading-font);

    font-size: 14px;

    text-decoration: none;

    background: #fff;

    transition: all 0.3s ease;
}


.mobile-simple-link:hover {

    color: #671327;

    background: #faf7f2;
}

.mobile-dropdown {

    width: 100%;

    border-bottom: 1px solid #e8e8e8;

    background: #fff;
}


.mobile-dropdown-btn {

    width: 100%;

    min-height: 60px;

    padding: 0 14px;

    border: 0;

    background: transparent;

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #333;

    font-family: var(--heading-font);

    font-size: 14px;

    cursor: pointer;

    transition: all 0.3s ease;
}


.mobile-dropdown-btn:hover {

    color: #671327;

    background: #faf7f2;
}

.mobile-dropdown-btn i {

    font-size: 13px;

    color: #671327;

    transition: transform 0.3s ease;
}

.mobile-dropdown.active
.mobile-dropdown-btn {

    color: #671327;

    background: #faf7f2;
}


.mobile-dropdown.active
.mobile-dropdown-btn i {

    transform: rotate(90deg);

}

.mobile-submenu {

    max-height: 0;

    overflow: hidden;

    background: #faf9f6;

    transition:
        max-height 0.4s ease;

}

.mobile-dropdown.active
.mobile-submenu {

    max-height: 600px;

}

.mobile-submenu a {

    display: flex;

    align-items: center;

    min-height: 45px;

    padding: 0 18px 0 30px;

    border-bottom: 1px solid #eee;

    color: #555;

    font-family: var(--heading-font);

    font-size: 12px;

    text-decoration: none;

    transition: all 0.25s ease;
}


.mobile-submenu a:hover {

    color: #671327;

    padding-left: 36px;

    background: #f5efe6;
}

.mobile-submenu a.view-all {

    color: #671327;

    font-weight: 600;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    background: #f3ede3;

}

.mobile-simple-link.mobile-offer {

    background: #c89d38;

    color: #fff;

    border-bottom: 0;

    margin-top: 10px;

}


.mobile-simple-link.mobile-offer:hover {

    background: #a77c32;

    color: #fff;

}


.mobile-offer i {

    margin-right: 8px;

}

.mobile-simple-link.mobile-gold-rate {

    color: #b18327;

    font-weight: 600;

    border-bottom: 0;

}

.mobile-offer {
    color: #fff !important;

    background: var(--hj-gold);

    padding: 0 12px;

    margin-top: 10px;

    border: 0 !important;
}


.mobile-gold-rate {
    color: var(--hj-gold) !important;

    font-weight: 600;
}


.mobile-contact {
    margin-top: 30px;

    border-top: 1px solid #eee;

    padding-top: 20px;
}

.mobile-contact a {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #444;

    font-size: 12px;

    margin-bottom: 15px;
}

.mobile-contact i {
    color: var(--hj-maroon);
}

@media (max-width: 1200px) {

    .hj-main-row {
        gap: 15px;
    }

    .hj-logo {
        min-width: 180px;
    }

    .hj-logo img {
        width: 175px;
    }

    .phone-item span {
        display: none;
    }

    .hj-search {
        max-width: 280px;
    }

    .hj-nav-list > li > a {
        padding: 0 10px;
        font-size: 12px;
    }

}
@media (max-width: 991px) {

    .hj-main-header {
        height: 70px;
    }


    .hj-main-row {
        justify-content: space-between;
        gap: 8px;
    }


    .hj-logo {
        min-width: auto;
    }


    .hj-logo img {
        width: 145px;
        height: 58px;
    }


    .store-item,
    .phone-item,
    .hj-search,
    .hj-location,
    .hj-gold-scheme,
    .hj-action-icon {
        display: none;
    }


    .hj-menu-toggle {
        display: flex;
    }


    .hj-navigation {
        display: none;
    }

}

@media (max-width: 480px) {

    .hj-logo img {
        width: 125px;
    }

    .hj-mobile-menu {
        width: 300px !important;
    }

    

}

.premium-hero {
    width: 100%;
    overflow: hidden;
}


.hero-slide {
    height: 620px;
    position: relative;

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
}

.hero-slide-1 {
    background-image:
        url("../images/slider1.jpg");
}


.hero-slide-2 {
    background-image:
        url("../images/slider2.jpg");
}


.hero-slide-3 {
    background-image:
        url("../images/slider3.jpg");
}


.hero-slide-4 {
    background-image:
        url("../images/slider4.jpg");
}


.hero-slide-5 {
    background-image:
        url("../images/slider5.jpg");
}


.hero-slide-6 {
    background-image:
        url("../images/slider6.jpg");
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(44, 8, 17, 0.92) 0%,
            rgba(44, 8, 17, 0.68) 35%,
            rgba(44, 8, 17, 0.20) 70%,
            rgba(44, 8, 17, 0.05) 100%
        );
}

.hero-slide-content {
    position: relative;
    z-index: 3;

    max-width: 620px;

    color: #fff;

    padding-left: 50px;
}

.hero-label {
    display: inline-block;

    color: #e7cb89;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 4px;

    margin-bottom: 20px;
}

.hero-slide-content h1 {
    font-family: var(--heading-font);

    font-size: clamp(55px, 6vw, 82px);

    line-height: 0.92;

    font-weight: 500;

    margin: 0 0 25px;
}


.hero-slide-content h1 span {
    display: block;

    color: #e4c77d;

    font-style: italic;
}

.hero-slide-content p {
    max-width: 500px;

    color: rgba(255,255,255,0.82);

    font-size: 13px;

    line-height: 1.9;

    margin-bottom: 30px;
}

.hero-btn {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    background: #c9a45c;

    color: #fff;

    padding: 15px 27px;

    font-size: 10px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    transition: all 0.3s ease;
}


.hero-btn:hover {
    background: #a77c32;

    color: #fff;

    gap: 17px;
}

.hero-arrow {
    width: 48px;
    height: 48px;

    border: 1px solid rgba(255,255,255,0.55);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 13px;

    transition: 0.3s;
}


.carousel-control-prev:hover .hero-arrow,
.carousel-control-next:hover .hero-arrow {
    background: #c9a45c;

    border-color: #c9a45c;
}


.carousel-control-prev {
    width: 90px;
    justify-content: center;
}


.carousel-control-next {
    width: 90px;
    justify-content: center;
}

.premium-hero .carousel-indicators {
    bottom: 28px;

    margin-bottom: 0;

    gap: 8px;

    z-index: 5;
}


.premium-hero .carousel-indicators button {
    width: 28px;
    height: 3px;

    border: 0;

    margin: 0;

    opacity: 0.45;

    background: #fff;

    transition: all 0.4s ease;
}


.premium-hero .carousel-indicators button.active {
    width: 55px;

    opacity: 1;

    background: #d5b46a;
}


.carousel-fade .carousel-item {
    transition:
        opacity 1s ease-in-out;
}


.carousel-item.active
.hero-slide-content {
    animation:
        heroTextReveal 1s ease forwards;
}


@keyframes heroTextReveal {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@media (max-width: 991px) {

    .hero-slide {
        height: 580px;
    }

    .hero-slide-content {
        padding-left: 35px;
        max-width: 580px;
    }

    .hero-slide-content h1 {
        font-size: 65px;
    }

    .hero-arrow {
        width: 42px;
        height: 42px;
    }

}

@media (max-width: 767px) {

    .hero-slide {
        height: 600px;

        background-position: center;
    }


    .hero-slide-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(44,8,17,0.90),
                rgba(44,8,17,0.55)
            );
    }


    .hero-slide-content {
        padding: 0 35px;

        max-width: 100%;
    }


    .hero-label {
        font-size: 8px;

        letter-spacing: 2.5px;

        margin-bottom: 15px;
    }


    .hero-slide-content h1 {
        font-size: 52px;

        line-height: 0.95;
    }


    .hero-slide-content p {
        font-size: 11px;

        line-height: 1.8;

        max-width: 390px;
    }


    .hero-btn {
        padding: 13px 21px;

        font-size: 9px;
    }


    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
    }


    .hero-arrow {
        width: 35px;
        height: 35px;

        font-size: 10px;
    }


    .premium-hero .carousel-indicators {
        bottom: 20px;
    }


    .premium-hero .carousel-indicators button {
        width: 18px;
    }


    .premium-hero .carousel-indicators button.active {
        width: 38px;
    }

}


@media (max-width: 480px) {

    .hero-slide {
        height: 570px;
    }


    .hero-slide-content {
        padding: 0 25px;
    }


    .hero-slide-content h1 {
        font-size: 44px;
    }


    .hero-slide-content p {
        font-size: 10px;

        max-width: 320px;
    }


    .hero-arrow {
        width: 32px;
        height: 32px;
    }

}
/* =========================================================
   RATE
========================================================= */

.rate-section {
    margin-top: 15px;
    position: relative;
    z-index: 10;
}

.rate-card {
    background: #fff;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 35px rgba(50,20,20,0.10);
}

.rate-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.rate-card small {
    font-size: 9px;
    letter-spacing: 2px;
    color: #999;
}

.rate-card h4 {
    font-family: var(--heading-font);
    font-size: 26px;
    margin: 2px 0;
    color: var(--wine);
}

.rate-card span {
    font-size: 9px;
    color: #888;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
    margin-bottom: 50px;
}

.section-heading > span,
.section-heading span {
    color: var(--gold-dark);
    font-size: 10px;
    letter-spacing: 4px;
    font-weight: 600;
}

.section-heading h2 {
    font-family: var(--heading-font);
    font-size: 54px;
    font-weight: 500;
    color: var(--wine);
    margin: 10px 0;
}

.section-heading p {
    max-width: 600px;
    margin: 10px auto 15px;
    color: #777;
    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   CATEGORY
========================================================= */

.category-section {
    background: var(--cream);
}

.category-card {
    display: block;
    background: #fff;
    overflow: hidden;
}

.category-image {
    height: 350px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.08);
}

.category-content {
    padding: 22px;
    border: 1px solid var(--border);
    border-top: 0;
}

.category-content h4 {
    font-family: var(--heading-font);
    color: var(--wine);
    font-size: 25px;
    margin-bottom: 8px;
}

.category-content span {
    color: #888;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.category-content i {
    color: var(--gold-dark);
    margin-left: 7px;
    transition: 0.3s;
}

.category-card:hover .category-content i {
    margin-left: 12px;
}


/* =========================================================
   PRODUCTS
========================================================= */

.products-section {
    background: var(--ivory);
}

.products-section .section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.products-section .section-heading h2 {
    margin-bottom: 0;
}

.view-all {
    color: var(--wine);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 6px;
}

.view-all i {
    margin-left: 7px;
    color: var(--gold-dark);
}

.product-card {
    background: #fff;
}

.product-image {
    height: 390px;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--wine);
    color: #fff;
    padding: 7px 10px;
    font-size: 8px;
    letter-spacing: 1px;
    z-index: 2;
}

.wishlist {
    position: absolute;
    right: 15px;
    top: 15px;
    border: 0;
    background: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    z-index: 2;
    color: var(--wine);
}

.product-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    text-align: center;
    transition: 0.4s;
}

.product-overlay a {
    display: inline-block;
    background: var(--wine);
    color: #fff;
    padding: 13px 25px;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-card:hover .product-overlay {
    bottom: 15px;
}

.product-info {
    padding: 20px 5px;
}

.product-info > span {
    color: var(--gold-dark);
    font-size: 9px;
    letter-spacing: 2px;
}

.product-info h4 {
    font-family: var(--heading-font);
    color: var(--wine);
    font-size: 22px;
    margin: 6px 0;
}

.product-info p {
    margin: 0;
    color: #555;
    font-weight: 600;
    font-size: 13px;
}


/* =========================================================
   ROYAL BANNER
========================================================= */

.royal-banner {
    min-height: 580px;
    background-image:
        url("../images/diamond-jewellary.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.royal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(53,12,22,0.94),
        rgba(53,12,22,0.40),
        rgba(53,12,22,0.10)
    );
}

.royal-content {
    position: relative;
    color: #fff;
    max-width: 550px;
}

.royal-content > span {
    color: var(--gold-light);
    font-size: 10px;
    letter-spacing: 4px;
}

.royal-content h2 {
    font-family: var(--heading-font);
    font-size: 65px;
    line-height: 0.95;
    font-weight: 500;
    margin: 20px 0;
}

.royal-content p {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}
.btn-gold{
    color: #fff !important;
}

/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-section {
    background: var(--cream);
}

.feature-card {
    text-align: center;
    background: #fff;
    padding: 45px 25px;
    border: 1px solid var(--border);
    height: 100%;
    transition: 0.4s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(50,20,20,0.08);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border: 1px solid var(--gold);
    color: var(--gold-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 22px;
}

.feature-card h4 {
    font-family: var(--heading-font);
    font-size: 25px;
    color: var(--wine);
}

.feature-card p {
    color: #777;
    font-size: 12px;
    line-height: 1.8;
    margin: 10px 0 0;
}


/* =========================================================
   HERITAGE
========================================================= */

.heritage-section {
    background: var(--ivory);
}

.heritage-images {
    position: relative;
    padding: 0 40px 40px 0;
}

.heritage-main-image {
    width: 100%;
    height: 570px;
    object-fit: cover;
}

.year-badge {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 160px;
    height: 160px;
    background: var(--wine);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.year-badge strong {
    font-family: var(--heading-font);
    font-size: 50px;
    color: var(--gold-light);
    line-height: 1;
}

.year-badge span {
    font-size: 9px;
    letter-spacing: 2px;
    margin-top: 7px;
}

.section-label {
    color: var(--gold-dark);
    font-size: 10px;
    letter-spacing: 4px;
    font-weight: 600;
}

.heritage-content h2 {
    font-family: var(--heading-font);
    color: var(--wine);
    font-size: 58px;
    line-height: 0.95;
    font-weight: 500;
    margin: 20px 0 30px;
}

.heritage-content h2 span {
    display: block;
    color: var(--gold-dark);
    font-style: italic;
}

.heritage-content p {
    color: #777;
    font-size: 13px;
    line-height: 2;
}

.btn-dark-gold {
    background: var(--wine);
    color: #fff;
    margin-top: 15px;
}

.btn-dark-gold:hover {
    background: var(--gold-dark);
    color: #fff;
}


/* =========================================================
   COUNTER
========================================================= */

.counter-section {
    background: var(--wine);
    padding: 70px 0;
}

.counter-box {
    color: #fff;
    border-right: 1px solid rgba(255,255,255,0.15);
}

.counter-box:last-child {
    border-right: 0;
}

.counter-box h2 {
    font-family: var(--heading-font);
    color: var(--gold-light);
    font-size: 55px;
    margin: 0;
}

.counter-box span {
    color: rgba(255,255,255,0.7);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* =========================================================
   TESTIMONIAL
========================================================= */

.testimonial-section {
    background: var(--cream);
}

.testimonial-card {
    max-width: 750px;
    margin: auto;
    text-align: center;
    background: #fff;
    padding: 55px;
    border: 1px solid var(--border);
}

.quote-icon {
    color: var(--gold);
    font-size: 25px;
}

.stars {
    color: var(--gold-dark);
    letter-spacing: 4px;
    margin: 18px 0;
}

.testimonial-card p {
    font-family: var(--heading-font);
    font-size: 28px;
    line-height: 1.4;
    color: var(--wine);
}

.testimonial-card h5 {
    margin: 20px 0 4px;
    font-size: 12px;
    letter-spacing: 1px;
}

.testimonial-card span {
    font-size: 10px;
    color: #999;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
    background-image: none;

    width: 48px;
    height: 48px;

    background-color: #7a2033;

    border: 1px solid #c69b36;

    border-radius: 50%;

    position: relative;
}

.carousel-control-next-icon::after {
    content: "\f054";

    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    color: #d6b254;

    font-size: 15px;

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
}

.carousel-control-prev-icon::after {
    content: "\f053";

    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    color: #d6b254;
    

    font-size: 15px;

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
}
/* =========================================================
   JEWELLERY VIDEO SECTION
========================================================= */

.hj-video-section {

    padding: 90px 0;

    background: #faf8f4;

}

.hj-section-heading {

    margin-bottom: 50px;
}


.hj-subtitle {

    display: block;

    margin-bottom: 8px;

    color: #b18a32;

    font-family: "Montserrat", sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;
}


.hj-section-heading h2 {

    margin: 0;

    color: #651529;

    font-family: "Cormorant Garamond", serif;

    font-size: 44px;

    font-weight: 600;
}


.hj-section-heading h2 em {

    color: #b18a32;

    font-style: italic;
}


.hj-section-heading p {

    max-width: 600px;

    margin: 10px auto 15px;

    color: #777;

    font-family: "Montserrat", sans-serif;

    font-size: 13px;

    line-height: 1.8;
}


.hj-heading-line {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;
}


.hj-heading-line span {

    width: 45px;

    height: 1px;

    background: #c8a24b;
}


.hj-heading-line i {

    color: #c8a24b;

    font-size: 11px;
}

.hj-video-card {

    background: #fff;

    border: 1px solid #eadfcf;

    overflow: hidden;

    box-shadow:
        0 10px 35px rgba(75, 40, 20, 0.07);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.hj-video-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(75, 40, 20, 0.14);
}

.hj-video-wrapper {

    position: relative;

    width: 100%;

    height: 390px;

    overflow: hidden;

    background: #2b1017;
}


.hj-video {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.7s ease;
}


.hj-video-card:hover .hj-video {

    transform: scale(1.05);
}

.hj-video-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(40, 8, 18, 0.72),
            transparent 55%
        );

    pointer-events: none;
}

.hj-video-category {

    position: absolute;

    left: 20px;

    bottom: 18px;

    color: #fff;

    font-family: "Montserrat", sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

    z-index: 2;
}

.hj-video-play {

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 65px;
    height: 65px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.8);

    background: rgba(105, 21, 42, 0.88);

    color: #d9b65b;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 18px;

    cursor: pointer;

    z-index: 5;

    transition: all 0.3s ease;
}


.hj-video-play:hover {

    background: #c39a36;

    color: #fff;

    transform:
        translate(-50%, -50%)
        scale(1.1);
}


.hj-video-play i {

    margin-left: 3px;
}

.hj-video-content {

    padding: 25px 25px 27px;
}


.hj-video-content h3 {

    margin: 0 0 8px;

    color: #641428;

    font-family: "Cormorant Garamond", serif;

    font-size: 25px;

    font-weight: 600;
}


.hj-video-content p {

    margin: 0 0 15px;

    color: #777;

    font-family: "Montserrat", sans-serif;

    font-size: 11px;

    line-height: 1.7;
}


.hj-video-content a {

    color: #b08a35;

    font-family: "Montserrat", sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.8px;

    text-decoration: none;

    text-transform: uppercase;
}


.hj-video-content a i {

    margin-left: 6px;

    transition: transform 0.3s ease;
}


.hj-video-content a:hover {

    color: #69152a;
}


.hj-video-content a:hover i {

    transform: translateX(5px);
}

@media (max-width: 991px) {

    .hj-video-section {

        padding: 70px 0;
    }

    .hj-section-heading h2 {

        font-size: 38px;
    }

    .hj-video-wrapper {

        height: 340px;
    }

}

@media (max-width: 575px) {

    .hj-video-section {

        padding: 55px 15px;
    }


    .hj-section-heading {

        margin-bottom: 30px;
    }


    .hj-section-heading h2 {

        font-size: 32px;
    }


    .hj-section-heading p {

        font-size: 11px;
    }


    .hj-video-wrapper {

        height: 390px;
    }


    .hj-video-content {

        padding: 20px;
    }

}
/* =========================================================
   SHOWROOM
========================================================= */

.showroom-section {
    background: var(--ivory);
}

.showroom-card {
    padding: 35px 25px;
    border: 1px solid var(--border);
    background: #fff;
    height: 100%;
    transition: 0.4s;
}

.showroom-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.showroom-icon {
    color: var(--gold-dark);
    font-size: 22px;
    margin-bottom: 18px;
}

.showroom-card h4 {
    font-family: var(--heading-font);
    color: var(--wine);
    font-size: 25px;
}

.showroom-card p {
    color: #888;
    font-size: 12px;
    line-height: 1.7;
}

.showroom-card a {
    color: var(--wine);
    font-size: 11px;
    font-weight: 600;
}

.showroom-card a i {
    color: var(--gold-dark);
    margin-right: 5px;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter-section {
    background: var(--cream);
    padding: 80px 0;
}

.newsletter-box {
    background: var(--wine);
    color: #fff;
    padding: 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-box span {
    color: var(--gold-light);
    font-size: 9px;
    letter-spacing: 3px;
}

.newsletter-box h2 {
    font-family: var(--heading-font);
    font-size: 42px;
    margin: 8px 0;
}

.newsletter-box p {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    margin: 0;
}

.newsletter-form {
    min-width: 420px;
    display: flex;
    border-bottom: 1px solid var(--gold);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: 0;
    outline: 0;
    padding: 15px 5px;
    color: #fff;
    font-size: 11px;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form button {
    background: transparent;
    border: 0;
    color: var(--gold-light);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #210b11;
    color: #fff;
    padding: 80px 0 0;
}

.footer .brand-main {
    color: #fff;
}

.brand-logo {
    display: flex;
    align-items: center;
}

.brand-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.hindustan-logo {
    width: 145px;
    height: 72px;

    object-fit: contain;

    display: block;

    transition: transform 0.3s ease;
}

.brand-logo-link:hover .hindustan-logo {
    transform: scale(1.03);
}

@media (max-width: 991px) {

    .hindustan-logo {
        width: 125px;
        height: 60px;
    }

}


@media (max-width: 575px) {

    .hindustan-logo {
        width: 115px;
        height: 55px;
    }

}

.footer > .container > .row > div > p {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    line-height: 1.9;
    margin-top: 25px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.social-links a {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.footer h5 {
    color: var(--gold-light);
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.footer li {
    margin-bottom: 12px;
}

.footer li a {
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    transition: 0.3s;
}

.footer li a:hover {
    color: var(--gold-light);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    gap: 12px;
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.footer-contact i {
    color: var(--gold-light);
    margin-top: 4px;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 60px;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p,
.footer-bottom a {
    color: rgba(255,255,255,0.4);
    font-size: 10px;
    margin: 0;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}


/* =========================================================
   FLOATING BUTTONS
========================================================= */

.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-buttons a,
.floating-buttons button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.18);
}

.float-call {
    background: #671327;
    border: 2px solid #d3ad55;
}

.float-whatsapp {
    background: #25D366;
}

.float-top {
    background: var(--hj-gold);
    cursor: pointer;
}

@media (max-width: 991px) {

    .navbar-collapse {
        background: #fff;
        padding: 20px;
        margin-top: 15px;
        border-top: 1px solid var(--border);
    }

    .nav-actions {
        margin-top: 15px;
    }

    .hero-section {
        min-height: 650px;
    }

    .hero-content h1 {
        font-size: 65px;
    }

    .rate-section {
        margin-top: 0;
        padding-top: 25px;
    }

    .category-image {
        height: 300px;
    }

    .royal-content h2 {
        font-size: 55px;
    }

    .newsletter-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-form {
        min-width: 100%;
        width: 100%;
    }

}


@media (max-width: 767px) {

    .section-padding {
        padding: 70px 0;
    }

    .offer-bar {
        font-size: 9px;
    }

    .offer-content {
        gap: 7px;
        text-align: center;
    }

    .brand-main {
        font-size: 24px;
    }

    .hero-section {
        min-height: 650px;
        background-position: 65% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(38,7,15,0.88),
                rgba(38,7,15,0.60)
            );
    }

    .hero-content {
        padding: 50px 15px;
    }

    .hero-content h1 {
        font-size: 56px;
    }

    .hero-content p {
        font-size: 12px;
    }

    .section-heading h2 {
        font-size: 43px;
    }

    .products-section .section-heading {
        display: block;
    }

    .view-all {
        display: inline-block;
        margin-top: 15px;
    }

    .product-image {
        height: 340px;
    }

    .royal-banner {
        min-height: 550px;
    }

    .royal-content {
        padding: 30px 15px;
    }

    .royal-content h2 {
        font-size: 48px;
    }

    .heritage-images {
        padding-right: 20px;
        padding-bottom: 20px;
    }

    .heritage-main-image {
        height: 430px;
    }

    .year-badge {
        width: 125px;
        height: 125px;
    }

    .year-badge strong {
        font-size: 38px;
    }

    .heritage-content h2 {
        font-size: 47px;
    }

    .counter-section {
        padding: 50px 0;
    }

    .counter-box {
        margin-bottom: 30px;
        border-right: 0;
    }

    .counter-box h2 {
        font-size: 42px;
    }

    .testimonial-card {
        padding: 40px 25px;
    }

    .testimonial-card p {
        font-size: 22px;
    }

    .newsletter-box {
        padding: 35px 25px;
    }

    .newsletter-box h2 {
        font-size: 35px;
    }

    .newsletter-form {
        min-width: auto;
        width: 100%;
    }

    .footer {
        padding-top: 60px;
    }

    .footer-bottom {
        flex-direction: column;
    }

}


@media (max-width: 480px) {

    .offer-content span:nth-of-type(2) {
        display: none;
    }

    .hero-section {
        min-height: 620px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-small-title {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .rate-card {
        padding: 18px;
    }

    .category-image {
        height: 330px;
    }

    .product-image {
        height: 360px;
    }

    .royal-content h2 {
        font-size: 42px;
    }

    .heritage-main-image {
        height: 380px;
    }

    .floating-buttons {
        right: 12px;
        bottom: 15px;
    }

    .floating-buttons a,
    .floating-buttons button {
        width: 44px;
        height: 44px;
    }

}

/* =========================================================
   FLOATING CHATBOT
========================================================= */

.hj-chatbot {

     position: fixed;

    left: 25px;
    bottom: 25px;

    z-index: 99999;

    font-family: "Montserrat", sans-serif;
}

.hj-chat-button {

    position: relative;

    width: 60px;
    height: 60px;

    border: 2px solid #d3ad55;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #7a1832,
            #591024
        );

    color: #dcb75e;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 22px;

    cursor: pointer;

    box-shadow:
        0 8px 25px rgba(80, 20, 35, 0.30);

    transition: all 0.35s ease;
}


.hj-chat-button:hover {

    transform: translateY(-4px) scale(1.04);

    box-shadow:
        0 12px 30px rgba(80, 20, 35, 0.38);

}


.chat-close-icon {

    display: none;
}


.hj-chatbot.open .chat-open-icon {

    display: none;
}


.hj-chatbot.open .chat-close-icon {

    display: block;
}

.hj-chat-notification {

    position: absolute;

    top: -3px;
    right: -2px;

    width: 19px;
    height: 19px;

    border-radius: 50%;

    background: #c49a39;

    color: #fff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 9px;

    font-weight: 700;

    border: 2px solid #fff;
}

.hj-chat-window {
    position: absolute;

    left: 0;
    bottom: 75px;

    width: 355px;

    background: #fff;

    border-radius: 12px;

    overflow: hidden;

    border: 1px solid #eadfc9;

    box-shadow:
        0 18px 50px rgba(40, 15, 20, 0.20);

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(15px)
        scale(0.96);

    transform-origin: bottom left;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}

.hj-chatbot.open .hj-chat-window {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0)
        scale(1);
}


.hj-chat-header {

    padding: 15px 17px;

    background:
        linear-gradient(
            135deg,
            #7a1832,
            #5a1024
        );

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #fff;
}


.hj-chat-brand {

    display: flex;

    align-items: center;

    gap: 10px;
}


.hj-chat-logo {

    width: 40px;
    height: 40px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.12);

    border: 1px solid #d4ae54;

    color: #d8b45c;

    font-size: 16px;
}


.hj-chat-brand h4 {

    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: 19px;

    font-weight: 600;
}


.hj-chat-brand span {

    display: block;

    margin-top: 2px;

    color: #dfc57d;

    font-size: 9px;
}


.hj-chat-brand span i {

    color: #6ed08b;

    font-size: 6px;

    margin-right: 4px;
}


.hj-chat-close {

    border: 0;

    background: transparent;

    color: #fff;

    font-size: 16px;

    cursor: pointer;

    opacity: 0.8;
}


.hj-chat-close:hover {

    opacity: 1;

    color: #d8b45c;
}

.hj-chat-body {

    height: 320px;

    padding: 18px;

    overflow-y: auto;

    background: #fcfaf7;
}

.hj-bot-message {

    display: flex;

    gap: 9px;

    margin-bottom: 18px;
}


.hj-bot-avatar {

    flex-shrink: 0;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    background: #7a1832;

    color: #d8b45c;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 11px;
}


.hj-message-content {

    max-width: 250px;

    padding: 11px 13px;

    background: #fff;

    border: 1px solid #eee3d3;

    border-radius: 3px 12px 12px 12px;

    box-shadow:
        0 3px 10px rgba(0,0,0,0.04);
}


.hj-message-content span {

    display: block;

    margin-bottom: 4px;

    color: #69152a;

    font-size: 12px;

    font-weight: 600;
}


.hj-message-content p {

    margin: 0;

    color: #777;

    font-size: 10px;

    line-height: 1.6;
}

.hj-quick-options {

    display: flex;

    flex-direction: column;

    gap: 8px;

    padding-left: 39px;
}


.hj-quick-options button {

    width: 100%;

    padding: 10px 12px;

    text-align: left;

    border: 1px solid #e6dac5;

    border-radius: 5px;

    background: #fff;

    color: #641428;

    font-size: 10px;

    cursor: pointer;

    transition: all 0.25s ease;
}


.hj-quick-options button i {

    width: 20px;

    color: #b48a30;
}


.hj-quick-options button:hover {

    background: #7a1832;

    border-color: #7a1832;

    color: #fff;

    transform: translateX(3px);
}


.hj-quick-options button:hover i {

    color: #e1bd61;
}

.hj-user-message {

    display: flex;

    justify-content: flex-end;

    margin: 10px 0;
}


.hj-user-message span {

    max-width: 240px;

    padding: 9px 12px;

    background: #7a1832;

    color: #fff;

    border-radius: 12px 3px 12px 12px;

    font-size: 10px;

    line-height: 1.5;
}

.hj-response-message {

    display: flex;

    margin: 8px 0;

    padding-left: 39px;
}


.hj-response-message span {

    max-width: 245px;

    padding: 9px 12px;

    background: #fff;

    border: 1px solid #eadfcf;

    color: #666;

    border-radius: 3px 10px 10px 10px;

    font-size: 10px;

    line-height: 1.6;
}

.hj-chat-input {

    display: flex;

    padding: 10px;

    border-top: 1px solid #eee3d4;

    background: #fff;

    gap: 7px;
}


.hj-chat-input input {

    flex: 1;

    min-width: 0;

    height: 38px;

    padding: 0 12px;

    border: 1px solid #e1d6c6;

    border-radius: 20px;

    outline: none;

    font-size: 10px;

    color: #444;
}


.hj-chat-input input:focus {

    border-color: #bd963b;
}


.hj-chat-input button {

    width: 38px;
    height: 38px;

    border: 0;

    border-radius: 50%;

    background: #7a1832;

    color: #d9b45a;

    cursor: pointer;

    transition: 0.25s;
}


.hj-chat-input button:hover {

    background: #bd963b;

    color: #fff;
}
@media (max-width: 575px) {

    .hj-chatbot {

        left: 15px;
        bottom: 15px;

        right: auto;
    }

    .hj-chat-button {

        width: 55px;
        height: 55px;

        font-size: 20px;
    }

    .hj-chat-window {

        position: fixed;

        left: 12px;
        right: 12px;

        bottom: 80px;

        width: auto;

        max-width: none;

        transform-origin: bottom left;
    }

}