@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

:root {
    --bg-primary: #e52c35;
    --text-black: #111;
    --bg-dark: #1c1c1c;

    /* typography */
    --text-sm: 12px;
    --h2-size: 38px;
    --text-medium: 16px;
    --text-button: 14px;
    --h5-size: 16px;
}


* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #444;
}

.text-sm {
    font-size: var(--text-sm);
}

.text-medium {
    font-size: 16px;
}

.text-button {
    font-size: 14px;
}


.main-heading {
    font-size: 38px;
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-style: normal;
}

.product-name {
    font-size: var(--h5-size);
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-style: normal;
    color: var(--text-black);
    padding-top: 15px;
}

.home-category-section {
    padding-top: 20px;
}

.bg-dark {
    background-color: var(--bg-dark);
}


.primary-color {
    color: var(--bg-primary);
}


.container {
    max-width: 1440px;
}

/* subheader css Start */

.sub-header {
    padding: 10px 0;
}

/* subheader css End */

.top-bar {
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.contact-btn {
    background-color: var(--bg-primary);
    color: white;
    border: none;
    padding: 8px 22px;
    border-radius: 5px;
    text-decoration: none;
}

.nav-button {
    text-decoration: none;
    color: #fff;
}

::placeholder {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #858585;
}

.nav-item a {
    font-size: var(--text-medium);
    color: var(--text-black);
}

.main-nav {
    background: #f9f9f9;
    padding: 10px 0;
}

.nav-item:hover a {
    color: var(--bg-primary);
}

.nav-item:active a {
    color: var(--bg-primary);
}

.nav-icon {
    width: 100%
}

.nav-icon img {
    width: 20px
}

.search-bar {
    width: 200px;
}

.custom-search-wrapper {
    display: flex;
    align-items: center;
    background: #f2f2f2;
    border-radius: 50px;
    padding: 2px 10px 2px 20px;
    width: 100%;
}

.custom-search-input {
    border: none;
    outline: none;
    background: transparent;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    flex: 1;
    padding: 10px 10px;
}

.custom-search-icon-btn {
    border: none;
    border-radius: 50%;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-banner {
    display: none;
}

.custom-search-icon-btn i {
    font-size: 16px;
    color: #555;
}

.custom-search-icon-btn:hover {
    background: #d4d4d4;
}

.search-button {
    background-color: #e52c35;
    border: none;
    font-size: 16px;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

.search-button button:hover {
    background-color: #e52c35;

}

.member-section {
    background-color: #f9f9f9;
    padding: 20px 0;
}

.member-card .card {
    border: none;
}

.all-product-section {
    padding: 60px 0;
}

.product-slider {
    margin-top: 40px;
}

.product-img {
    width: 140px;
    margin: auto;
}

.product-img img {
    width: 100%;
}

form .form-control,
form .form-select {
    border-radius: 6px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: #333;
    padding: 10px 14px;
    box-shadow: none;
    transition: border-color 0.2s;
}

form .form-control:focus,
form .form-select:focus {
    border-color: #e52c35;
    box-shadow: 0 0 0 0.15rem rgba(144, 33, 46, 0.25);
    background-color: #fff;
}

/* Button styling */
form .form-button .btn-primary {
    background-color: #e52c35;
    border-color: #e52c35;
    font-weight: 500;
    padding: 10px;
    border-radius: 6px;
    font-family: "Poppins", sans-serif;
}

form .form-button .btn-primary:hover {
    background-color: #7a1c27;
    border-color: #7a1c27;
}

.form-section {
    background-color: #f9f9f9;
}

.form-div {
    padding: 60px 0;
}

.form-text {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: var(--text-black);
}

.form-button button {
    background-color: var(--bg-primary);
    border: none;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
}

.form-button button:hover {
    background-color: #e52c35;
}

.detail {
    font-size: 16px;
    color: #111;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

.form-dropdown {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #858585;
}

.gemstone-section {
    padding: 40px 0;
}

.gemstone-img img {
    border-radius: 10px;
}

.gem-img-text {
    position: absolute;
    right: 30px;
    top: 50px;
    color: #fff;
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    z-index: 1;
}

.call-to-action {
    background: linear-gradient(to right, #1e2c5c, #e31c23);
}

.call-to-action-heading {
    font-size: 38px;
    color: #fff;
    font-family: "Playfair Display", serif;
    font-weight: 600;
    padding-bottom: 15px;
}

.call-action-btn {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
}

.call-to-action-description {
    font-size: 16px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

.cta-btn {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    text-align: center;
    color: #fff;
    transition: background-color 0.3s ease;
}

/* Button color variations */
.cta-orange {
    background-color: #FFA500;
    color: #fff;
}

.cta-orange:hover {
    background-color: #d6900f;
    color: #fff;
}

.cta-yellow {
    background-color: #fec341;
    color: #fff;
}

.cta-yellow:hover {
    background-color: #e0a100;
    color: #fff;
}

.cta-blue {
    background-color: #3366cc;
    color: #fff;
}

.cta-blue:hover {
    background-color: #1f489b;
    color: #fff;
}

a:hover {
    text-decoration: none;
}

.call-to-action-img {
    width: 100%;
}

.call-to-action-img img {
    width: 200px;
}

.semi-gem-title {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: #111;

}

.rudraksha-section {
    background-color: #efefef;
}

.rudraksha-title {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: #858585;
}

.rudraksha-product-title {
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: #111;
}

.container {
    overflow: hidden;

    .slider {
        animation: slidein 30s linear infinite;
        white-space: nowrap;

        .logos {
            width: 100%;
            display: inline-block;
            margin: 0px 0;

            .fab {
                width: calc(100% / 5);
                animation: fade-in 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
            }
        }
    }
}

@keyframes slidein {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.brand-logo-img {
    width: 180px;
    height: 80px;
    object-fit: contain;
}

.limelight-slider {
    height: 100px;
}

.logos {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: scroll-logos 25s linear infinite;
}

.logo-item {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 80px;
}

.logo-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.logo-item img:hover {
    filter: grayscale(0%);
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.schedule-div {
    margin-top: 20px;
}

.schedule-section-title {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: #ee7855;
    margin-bottom: 10px;
}

.Schedule-section {
    background-color: #efefef;
    padding-top: 50px;
}

.schedule-img {
    width: 450px;
}

.schedule-points {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.schedule-description {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.schedule-button a {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    background-color: #e52c35;
    color: #fff;
    border: none;
    padding: 12px 80px;
}

.schedule-button a:hover {
    background-color: #e52c35;
}

/* .faq-section {
    padding: 50px 0;
} */

.main-heading {
    margin-bottom: 20px;
}

.nav-logo {
    width: 100%;
}

.nav-logo img {
    width: 70px;
}

.faq-section {
    background-color: #f9f9f9;
}

.custom-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}

.custom-accordion .accordion-button {
    background-color: #fff;
    color: #1c1c1c;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    box-shadow: none;
    border-radius: 0;
    padding: 16px 20px;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.custom-accordion .accordion-button::after {
    content: '+';
    font-size: 22px;
    color: #000;
    background-image: none;
    margin-left: auto;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    content: '−';

}

.custom-accordion .accordion-body {
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: #333;
    padding: 16px 20px;
    background-color: #fff;
}

.accordion-item {
    border-radius: 8px;
    border: 1px solid #ddd;
    overflow: hidden;
    background-color: #fff;
}

.accordion-button {
    font-size: 16px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: #1c1c1c;
}

.accordion-body {
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    background: #f9f9f9;
}

.showroom-section {
    padding: 50px 0;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
}

.showroom-card {
    border: none;
    border-radius: 10px;
}

.showroom-card img {
    border-radius: 10px;
}

.card-detail {
    padding: 20px 0;
}

.showroom-heading {
    margin-bottom: 30px;
}


.location-icon img {
    width: 20px !important;
    margin-right: 5px;
}

.card-text {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

.showroom-section .owl-prev,
.owl-next,
.owl-dots {
    display: none;
}


.footer-links {
    padding-left: 0;
    list-style: none;
}

.footer-links li {
    display: block;
}

.footer-links a {
    color: #fff;
    display: inline-block;
    position: relative;
    overflow: hidden;
    padding: 0 0 5px 0;
}

.footer-links a::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transition: all ease-in-out 0.2s;
}

.footer-section {
    background-color: #0c1a3b;

}

.footer-section a {
    color: #ccc;
    text-decoration: none;
}

.footer-section a:hover {
    color: #fff;
}

.text-orange {
    color: #ff6a00;
}

.text-pink {
    color: #f94f91;
}

.text-red {
    color: #e63737;
}

.btn-orange {
    background-color: #ff6a00;
    color: #fff;
    border: none;
}

.btn-orange:hover {
    background-color: #e65c00;
}

.social-icons a {
    color: #fff;
    font-size: 18px;
}

.social-icons a:hover {
    color: #ff6a00;
}


.footer-links li {
    margin-bottom: 6px;
}

.footer-links li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
}



.social-icons a {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease;
}

.subscribe-form input {
    background-color: #2a2a2a;
    border: none;
    color: #fff;
    font-size: 14px;
}

.subscribe-form input::placeholder {
    color: #aaa;
}

.subscribe-form .btn {
    padding: 8px 14px;
}

.location-section {
    background: #fff;
    padding: 20px 20px;
    border-radius: 12px;
    text-align: center;
}

.footer-box-text {
    font-size: 20px;
    color: #111;
    font-family: "Poppins", sans-serif;
}

.detail {
    font-size: 15px;
    color: #858585;
    font-family: "Poppins", sans-serif;
    margin-bottom: 0;
}

.footer-links a:active,
.footer-links a:focus,
.footer-links a:hover {
    color: #fff;
}

.footer-links a:hover::before {
    left: 0%;
}

.footer-links.inline li {
    display: inline-block;
}

.site-footer .social-icons {
    text-align: right;
}

.site-footer .social-icons a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-left: 6px;
    margin-right: 0;
    border-radius: 100%;
    background-color: #33353d;
}

.icon-img {
    width: 50px;
    height: auto;
}

.copyright-text {
    margin: 0;
}

.social-icons {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.social-icons li {
    display: inline-block;
    margin-bottom: 4px;
}

.social-icons li.title {
    margin-right: 15px;
    text-transform: uppercase;
    color: #96a2b2;
    font-weight: 700;
    font-size: 13px;
}

.social-icons a {
    background-color: #dc3545;
    color: #818a91;
    font-size: 16px;
    display: inline-block;
    line-height: 44px;
    width: 44px;
    height: 44px;
    text-align: center;
    margin-right: 8px;
    border-radius: 100%;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.social-icons a:hover {
    background-color: #a71a28;
}

.custom-footer {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;

}

.copyright-area {
    background-color: #dc3545;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ffffffb3;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-links a:hover {
    color: #ffffff;
}

.social-icons a {
    font-size: 1.25rem;
    transition: color 0.3s ease-in-out;
}

.social-icons a:hover {
    color: #e52c35;
}

.newsletter-form input[type="email"] {
    flex: 1 1 auto;
    min-width: 0;
}

.newsletter-form button {
    white-space: nowrap;
}

.copyright-area a {
    font-size: 14px;
}

.social-icons.size-sm a {
    line-height: 34px;
    height: 34px;
    width: 34px;
    font-size: 14px;
}

.header-section-mob {
    display: none;
}

/* Product Page Css */

.card-title {
    font-size: 17px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
}

.product-sku-code {
    font-size: 15px;
    color: #858585;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    margin-bottom: 5px;

}

.bold-text {
    font-weight: 500;
}

.card-text-price {
    font-size: 18px;
    color: #e52c35;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.price-cut {
    font-size: 14px;
    font-weight: 400;
    color: #858585;
    font-family: "Poppins", sans-serif;
}

.range-slider input[type="range"] {
    width: 100%;
}

.form-control-sm {
    max-width: 80px;
}

.card-text-section {
    padding: 15px 0;
}

.product-image {
    border-radius: 16px;
}

.btn-cart,
.btn-buy {
    padding: 8px 12px;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.btn-buy {
    background-color: #e52c35;
    color: #fff;
}

.btn-buy:hover {
    background-color: #b8242c;
    color: #fff;
}

.price-wrap {
    line-height: 20px;
}

.page-item a {
    font-size: 16px;
}

.custom-pagination {
    font-family: 'Poppins', sans-serif;
    gap: 10px;
    flex-wrap: wrap;
}

.custom-pagination .page-item .page-link {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px 16px;
    font-weight: 500;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    background-color: #fff;
}

.custom-pagination .page-item .page-link:hover {
    background-color: #ffe5e7;
    border-color: #e52c35;
    color: #e52c35;
}

.custom-pagination .page-item.active .page-link {
    background-color: #e52c35;
    color: #fff;
    border: 1px solid #e52c35;
    border-radius: 10px;
    padding: 10px 18px;
}

.custom-pagination .page-item.disabled .page-link {
    color: #ccc;
    background-color: #fff;
    border-color: #eee;
    pointer-events: none;
}

.custom-pagination .page-link {
    font-size: 14px;
}

.testimonial-section {
    background-color: #eaeff4;
}

.testimonial-box {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.bg-light-blue {
    background-color: #f0f4ff;
}

.btn-outline-primary,
.btn-primary {
    height: 40px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-text {
    font-size: 15px;
    color: #555;
    font-family: 'Poppins', sans-serif;
    text-align: start;
}

.testimional-img {
    width: 60px;
    clip-path: circle();
}

.testimional-name {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-family: 600;
    margin-bottom: 0;
    color: #1c1c1c;
}


.testimional-title {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #e52c35;
    text-align: start;
}

.custom-slider-btn {
    background-color: #e52c35;
    color: #fff;
    border: none;
    width: auto;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.custom-slider-btn:hover {
    background-color: rgb(124, 37, 49);
}

.testimonial-carousel .testimonial-box {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    min-height: 300px;
}

.testimonial-carousel .testimonial-box:hover {
    transform: translateY(-5px);
}

.testimonial-text {
    font-size: 15px;
    color: #333;
    font-family: "Poppins", sans-serif;
    margin-bottom: 16px;
    text-align: left;
}

.owl-nav {
    display: none;
}

.product-sub-img {
    width: 100px;
}

.product-heading {
    font-size: 24px;
    font-family: "Playfair Display", serif;
    color: #33353d;
}

.product-sku {
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    margin-top: 10px;
}

.tex-include {
    font-size: 14px;
    color: #858585;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

.lebel-heading {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    color: #111;
    margin-bottom: 0;
    font-weight: 500;
}

.lebel-box {
    justify-content: right;
}

.custom-label {
    font-size: 16px;
    color: #333333;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.custom-select {
    font-size: 14px;
    color: #444444;
    border-radius: 5px;
    padding: 6px 12px;
    border: 1px solid #bbbbbb;
    font-family: "Poppins", sans-serif;
}

.label-option {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    color: #111;
    font-weight: 600;
}

.buy-now-btn button {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    background-color: #e52c35;
}

.breadcrumb-text a {
    font-size: 16px;
    color: #111;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
}

.decription-heading {
    font-size: 22px;
    font-family: "Poppins", sans-serif;
    color: #111;
}

.ruby-heading {
    font-size: 22px;
    font-family: "Playfair Display", serif;
    color: #212529;
}

.ruby-paragraph {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    color: #3c4247;
}

.ruby-orderlist {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    color: #3c4247;
}

.product-card-title {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    color: #3c4247;
}

.sub-heading {
    font-size: 28px;
    font-family: "Playfair Display", serif;
    color: #212529;
    padding-bottom: 30px;
}

.specification-detail {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    color: #3c4247;
    font-weight: 400;
    line-height: 30px;

}

.policy-section-heading {
    font-size: 18px;
    font-family: "Poppins", sans-serif;
}

.policy-title {
    font-size: 14px;
    font-family: "Poppins", sans-serif;

}

.policy-card {
    background-color: #f9f9f9;
    border-radius: 12px;
}

.policy-link {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: #dc3545;
}

.metal-hedaing {
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.option-card {
    width: 100px;
    text-align: center;
}

.option-link {
    display: block;
    padding: 8px;
    border: 1px solid transparent;
    border-radius: 5px;
    transition: 0.3s ease;
    background-color: #fff;
}

.option-link:hover {
    border: 1px solid #e52c35;
}

.option-img {
    width: 100%;
    border-radius: 5px;
}

.option-text {
    font-size: 13px;
    color: #333;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
}

.metal-option {
    display: block;
    padding: 8px;
    border: 1px solid #dadada;
    border-radius: 6px;
    transition: border 0.3s ease, background-color 0.3s ease;
    text-align: center;
    background-color: #fff;
}

.bottom-line {
    padding-bottom: 20px;
    border-bottom: 1px solid #d6d6d6;
}

.metal-option:hover,
.option-active {
    border: 1px solid #e52c35;
}

.option-img {
    border-radius: 5px;
    width: 100%;
}

.option-text {
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

.gemstone-title {
    font-size: 16px;
    color: #3d3d3d;
    font-family: "Poppins", sans-serif;
    margin-bottom: 40px;
}

.gem-card {
    border: 2px solid #f2f2f2;
    border-radius: 12px;
    padding: 20px;
    background-color: #fff;
    transition: box-shadow 0.3s ease;
}

.gem-card:hover {
    box-shadow: 0 4px 15px rgba(138, 138, 138, 0.1);
}

.gem-img {
    max-height: 180px;
    object-fit: contain;
    margin-bottom: 10px;
}

.product-text {
    font-size: 16px;
    color: #1c1c1c;
    font-family: "Poppins", sans-serif;
    background-color: #f2f2f2;
    padding: 10px 0;
    border-radius: 8px;
    margin: 0;
}

.gem-sub {
    font-size: 14px;
    color: #666;
}
.breadcrumb-text{
    font-style: 14px;
    color: #1c1c1c;
    font-family: "Poppins", sans-serif;
}


.phone-wrap a {
    font-size:14px;
}
