* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
}

::selection {
    background-color: #124c43a1;
    color: #fff;
}

.hero-swiper {
    width: 100%;
    overflow: hidden;
}

.hero-swiper .swiper-wrapper {
    height: 720px;
}

.hero-swiper .swiper-slide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: space-between;
    min-height: auto;
    background: #eef4f3;
}

.hero-swiper .hero-content {
    padding-left: 10%;
    max-width: 700px;
    width: 100%;
}

.hero-swiper .hero-content h1 {
    font-size: 50px;
    color: #0b4942;
    font-weight: 900;
    line-height: 60px;
    margin-bottom: 20px;
}

.hero-swiper .hero-content p {
    color: #000;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 30px;
}

.custom-btn {
    display: inline-block;
    background: #124c43;
    border: 1px solid #124c43;
    font-size: 16px;
    color: white;
    padding: 12px 26px;
    text-decoration: none;
    transition: 0.3s;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.custom-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #fff;
    transition: 0.3s;
    z-index: -1;
}
.custom-btn:hover::after {
    width: 100%;
}
.custom-btn:hover {
    color: #124c43;
}

.hero-swiper .hero-image img {
    width: 100%;
    object-fit: cover;
    display: block;
    height: 720px;
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: #0b4942;
    background: rgba(255, 255, 255, 0.85);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    transition: background 0.25s;
}
.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background: #0b4942;
}

.hero-swiper .swiper-button-next:hover i,
.hero-swiper .swiper-button-prev:hover i {
    color: #fff;
}

.hero-swiper .swiper-button-next:hover::after,
.hero-swiper .swiper-button-prev:hover::after {
    color: #fff;
}
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}

.hero-swiper .swiper-pagination {
    display: none;
}

.hero-swiper .swiper-pagination-bullet {
    background: #124c43;
    opacity: 0.35;
    width: 10px;
    height: 10px;
}
.hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 28px;
    border-radius: 5px;
    transition: width 0.3s;
}

.swiper-slide .hero-content h1,
.swiper-slide .hero-content p,
.swiper-slide .hero-content .c-btn {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
}
.swiper-slide-active .hero-content h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}
.swiper-slide-active .hero-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}
.swiper-slide-active .hero-content .c-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1s;
}

@media (max-width: 767px) {
    .hero-swiper .swiper-slide {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        min-height: unset;
    }
    .hero-swiper .hero-content h1 {
        font-size: 26px;
        line-height: 34px;
    }

    .hero-swiper .hero-content p,
    .custom-btn {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 20px;
    }
    .hero-swiper .swiper-wrapper {
        height: 520px;
    }
    .hero-swiper .hero-image img {
        height: 270px !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hero-content h1 {
        font-size: 36px;
        line-height: 45px;
    }

    .hero-content p {
        font-size: 18px;
        line-height: 28px;
    }
    .hero-image img {
        height: 500px;
    }
}

@media (max-width: 991px) {
    .hero-swiper .swiper-slide {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-swiper .hero-content {
        padding: 50px 20px 50px;
        max-width: 100%;
    }
    .hero-swiper .hero-content {
        min-height: auto;
    }
    .hero-swiper .hero-image img {
        width: 100%;
        height: 450px;
    }
}

@media (min-width: 1024px) and (max-width: 1200px) {
    .hero-swiper .hero-content h1 {
        font-size: 45px;
        line-height: 55px;
    }
}

/*Category*/

/* .category-section {
    padding-bottom: 0px !important;
}

.category-section .container-fluid,
.design-section .container-fluid {
    padding: 0;
}

.section-bg-color {
    background: #fff4f4;
    padding: 60px 30px;
}

.section-title {
    font-size: 45px;
    font-weight: 700;
    color: #0b4942;
    padding-bottom: 30px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
}

.category-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    aspect-ratio: 3/4;
}

.category-card::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgb(0 0 0 / 30%);
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.category-card img {
    width: 100%;
    height: 100%;
    transition: all 0.5s ease-in-out;
}

.category-card:hover::before {
    opacity: 1;
    transition: all 0.4s ease-in-out;
}

.category-card:hover img {
        filter: blur(2px);
}

.category-label {
    background: #fff;
    font-size: 16px;
    color: white;
    padding: 12px 26px;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    overflow: hidden;
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    max-width: 85%;
    margin: 0 auto;
    text-align: center;
}
.category-label::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #124c43;
    transition: 0.3s;
    z-index: -1;
    border: 1px solid #124c43;
}
.category-label:hover::after {
    width: 100%;
}
.category-label:hover a {
    color: #fff;
}

.category-label a {
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
} */

/* DESIGN YOUR OWN*/

/* .design-section.section-bg-color {
    padding-bottom: 0px;
}

.design-section .design-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1320px;
    margin: 0 auto;
    padding-top: 30px;
}

.design-inner .design-content {
    max-width: 550px;
}

.design-inner .design-content h4 {
    font-size: 30px;
    color: #1b1b1b;
    line-height: 40px;
    font-weight: 400;
    text-transform: uppercase;
}

.design-inner .design-content h3 {
    font-size: 42px;
    color: #1b1b1b;
    line-height: 50px;
    margin-bottom: 10px;
    font-weight: 700;
}

.design-inner .design-content p {
    font-size: 16px;
    line-height: 26px;
    color: #1b1b1b;
    margin-bottom: 0;
    font-weight: 400;
}

.cta-row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 50px;
}

.cta-row .custom-btn {
    padding: 10px 30px;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0px;
    margin-bottom: 0px;
}

.cta-row .custom-btn::after {
    border-radius: 0px;
}

.design-inner .design-content p.design-note {
    font-size: 16px;
    line-height: 20px;
    color: #1b1b1b;
    font-weight: 400;
}

.design-inner .design-content .design-note a {
    color: #124c43;
    text-decoration: underline;
}

.diamond-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    gap: 60px;
}

.diamond-wrapper .ring-image {
    text-align: center;
}

.diamond-wrapper .diamond-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.diamond-wrapper .diamond-grid .shape {
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.diamond-wrapper.diamond-grid .shape img {
    width: 60px;
    margin-bottom: 10px;
}

.diamond-wrapper .diamond-grid .shape p {
    font-size: 14px;
    color: #444;
    margin-bottom: 0px;
}

.diamond-wrapper .diamond-grid .shape:hover {
    transform: translateY(-5px);
}

.diamond-wrapper .diamond-grid .shape:hover p {
    color: #0b4942;
} */

/*Product grid*/

/* .product-grid-section {
    background: #fff;
    margin: auto;
    padding: 60px 30px;
}
.product-grid-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
}

.product-grid-section .swiper-nav {
    display: flex;
    gap: 10px;
}

.product-grid-section .swiper-button-next,
.product-grid-section .swiper-button-prev {
    position: static;
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
}

.product-grid-section .swiper-nav .custom-next i,
.product-grid-section .swiper-nav .custom-prev i {
    font-size: 16px;
    color: #454545;
}

.product-grid-section .swiper-nav .custom-next i:hover,
.product-grid-section .swiper-nav .custom-prev i:hover {
    color: #000;
}

.product-grid-section .product-card {
    text-align: left;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.product-grid-section .product-card img {
    margin-bottom: 10px;
    width: 100%;
}

.product-grid-section .product-card h4 {
    font-size: 16px;
    margin: 5px 0;
    color: #454545;
}

.product-grid-section .product-card p {
    font-size: 14px;
    color: #454545;
}

.product-grid-section .product-card .price {
    margin-top: 8px;
    font-size: 14px;
}

.product-grid-section .price .current {
    font-weight: bold;
    margin-right: 8px;
}

.product-grid-section .price .old {
    text-decoration: line-through;
    color: #999;
}

.product-grid-section .badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 20px;
    color: #fff;
}

.product-grid-section .badge.new {
    background: #000;
}

.product-grid-section .badge.trending {
    background: orange;
}

.product-grid-section .badge.sale {
    background: red;
}

.product-grid-section .badge.top {
    background: #0a7d5e;
}

.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: 0.3s;
}

.product-actions a {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 16px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.product-actions a:hover {
    background: #0b4942;
    color: #fff;
}

.add-cart-btn {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    cursor: pointer;
    opacity: 0;
    transition: 0.3s;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-card:hover .add-cart-btn {
    opacity: 1;
    bottom: 110px;
}

.product-grid-section .swiper-wrapper {
    height: auto;
}

/*Quick view modal*/

/* .quick-view-modal-wrapper  .modal-dialog {
    max-width: 820px;
}

.quick-view-modal-wrapper  .modal-content {
    border: none;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.quick-view-modal-wrapper  .modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid #ccc;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    color: #777;
    z-index: 10;
    transition:
        border-color 0.2s,
        color 0.2s;
}
.quick-view-modal-wrapper  .modal-close:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.quick-view-modal-wrapper  .qv-wrap {
    display: flex;
    min-height: 420px;
}

.quick-view-modal-wrapper  .qv-image {
    flex: 0 0 340px;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
}
.quick-view-modal-wrapper  .qv-image img {
    max-width: 240px;
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
    transition: transform 0.4s ease;
}
.quick-view-modal-wrapper  .qv-image img:hover {
    transform: scale(1.04) rotate(-1deg);
}

.quick-view-modal-wrapper  .qv-detail {
    flex: 1;
    background: #fafaf9;
    padding: 38px 36px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}


.quick-view-modal-wrapper  .qv-title {
    font-size: 26px;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
    line-height: 1.2;
}


.quick-view-modal-wrapper .qv-price {
    font-size: 22px;
    font-weight: 400;
    color: #454545;
    margin-bottom: 6px;
}

.quick-view-modal-wrapper  .qv-action {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
}

.quick-view-modal-wrapper  .qv-qty {
    width: 60px;
    height: 46px;
    border: 1.5px solid #000;
    background: #fff;
    text-align: center;
    font-size: 15px;
    color: #000;
    outline: none;
    transition: border-color 0.2s;
}
.quick-view-modal-wrapper  .qv-qty:focus {
    border-color: #000;
}

.quick-view-modal-wrapper  .qv-add {
    flex: 1;
    height: 46px;
    background: var(--gold);
    color: #fff;
    border: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s;
}

.quick-view-modal-wrapper  .qv-divider {
    border: none;
    border-top: 1px solid #000;
    margin: 4px 0 20px;
}

.quick-view-modal-wrapper  .qv-desc {
    font-size: 13.5px;
    color: #454545;
    line-height: 1.8;
    flex: 1;
}

.quick-view-modal-wrapper  .qv-share-label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 12px;
    margin-top: 20px;
}

.quick-view-modal-wrapper  .qv-share-icons {
    display: flex;
    gap: 10px;
}

.quick-view-modal-wrapper  .qv-share-icons a {
    width: 38px;
    height: 38px;
    border: 1px solid #454545;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #454545;
    font-size: 15px;
    text-decoration: none;
    transition:
        border-color 0.2s,
        color 0.2s,
        background 0.2s;
}
.quick-view-modal-wrapper  .qv-share-icons a:hover {
    border-color: #0b4942;
    color: #fff;
    background: #0b4942;
}


@media (max-width: 640px) {
    .quick-view-modal-wrapper  .qv-wrap {
        flex-direction: column;
    }
   .quick-view-modal-wrapper  .qv-image {
        flex: none;
        padding: 30px;
    }
   .quick-view-modal-wrapper   .modal-dialog {
        margin: 12px;
    }
} */

/* .quick-view-modal-wrapper .modal.fade .modal-dialog {
    transform: translateY(20px) scale(0.98);
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}
.quick-view-modal-wrapper .modal.show .modal-dialog {
    transform: translateY(0) scale(1);
} */

/*realtime*/
/* .realtime-wrapper {
    padding: 40px 0;
    background-image: url("../images/bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.realtime-wrapper .realtime-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.realtime-wrapper .realtime-content {
    max-width: 600px;
}

.realtime-wrapper .realtime-content h4 {
    font-size: 32px;
    letter-spacing: 2px;
    color: #0b4942;
    margin-bottom: 10px;
}

.realtime-wrapper .realtime-content h2 {
    font-size: 45px;
    color: #0b4942;
    margin-bottom: 20px;
    font-weight: 700;
}

.realtime-wrapper .realtime-content p {
    font-size: 16px;
    color: #1b1b1b;
    line-height: 26px;
    margin-bottom: 25px;
}

.realtime-wrapper .realtime-content a {
    padding: 0;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    color: #232323;
}

.realtime-wrapper .realtime-content a:hover {
    color: #0b4942;
    border-bottom: 1px solid #0b4942;
} */

/*Collection*/

/* .Crowning .section-header {
    text-align: center;
}

.Crowning .section-header .section-title {
    padding-bottom: 10px;
}

.section-header .section-desc {
    font-size: 16px;
    color: #1b1b1b;
    font-weight: 300;
    max-width: 450px;
    line-height: 26px;
    margin: 0 auto;
}

.Crowning .layout {
    padding-top: 80px;
}

.Crowning .collection-box {
    position: relative;
    padding-bottom: 50px;
    max-width: 50%;
}

.collection-box.right {
    float: right;
}

.collection-box.right .content {
    left: -20%;
}

.collection-box .content {
    max-width: 365px;
    background: #fff;
    padding: 30px;
    position: absolute;
    top: 50%;
    left: -5%;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
}

.collection-box .content:hover {
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.2);
}

.collection-box .content h3 {
    font-size: 22px;
    color: #232323;
    font-weight: 300;
    line-height: 26px;
    margin-bottom: 15px;
}

.collection-box .content p {
    font-size: 16px;
    color: #232323;
    font-weight: 300;
    line-height: 26px;
}

.collection-box .content a {
    color: #232323;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
}

.collection-box .content a:hover {
    color: #0b4942;
}

.collection-box .content a:after {
    background: #fdc6c7;
    content: "";
    display: block;
    height: 7px;
    position: absolute;
    right: 0;
    top: 11px;
    transition: right 0.4s ease-out;
    width: 100%;
    z-index: -1;
}

.collection-box .c1__photo img {
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.3);
    transform: scale(1);
    transition: all 0.5s ease-in-out;
}

.collection-box .c1__photo img:hover {
    transform: scale(1.02);
    transition: all 0.5s ease-in-out;
} */

/*Gift Section*/
/* .gift-section-banner .inner {
    position: relative;
}

.gift-section-banner .gift-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.gift-section-banner .gift-info {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.gift-section-banner .gift-info h4 {
    font-size: 30px;
    color: #fff;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 10px;
}

.gift-section-banner .gift-info p {
    font-size: 18px;
    line-height: 26px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 50px;
}

.gift-section-banner .gift-info a {
    padding: 10px 30px;
    font-size: 15px;
    font-weight: 300;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0px;
    background: #fff;
    color: #000;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: block;
    width: fit-content;
}

.gift-section-banner .gift-info a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #0b4942;
    color: #fff;
    transition: 0.3s;
    z-index: -1;
    border: 1px solid #124c43;
}

.gift-section-banner .gift-info a:hover::after {
    width: 100%;
}

.gift-section-banner .gift-info a:hover {
    color: #fff;
} */

/*Grid box*/

/* .grid-box .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.grid-box .grid-box-inner {
    overflow: hidden;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
    border: none;
    background: transparent;
    border-radius: 0px;
}

.grid-box .grid-box-inner:hover {
    transform: translateY(-6px);
}

.grid-box .grid-box-inner .card-content {
    padding: 20px 0 0;
}

.grid-box .grid-box-inner img {
    width: 100%;
    object-fit: cover;
    border-radius: 0px;
}

.grid-box .grid-box-inner h3 {
    font-size: 28px;
    color: #454545;
    margin-bottom: 6px;
    font-weight: 600;
}

.grid-box .grid-box-inner p {
    font-size: 16px;
    color: #454545;
    font-weight: 300;
} */

/*Features*/
/* .cover-section {
    background: #0b4942;
    text-align: center;
    padding: 60px 20px;
}

.cover-section h2 {
    font-size: 36px;
    color: white;
    margin-bottom: 40px;
    font-weight: 600;
}

.cover-section .features {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.cover-section .feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cover-section .icon-circle {
    transition: 0.3s;
}

.cover-section .feature-box:hover .icon-circle {
    transform: scale(1.03);
}

.cover-section .feature-box p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #ffffff;
} */

/*breadcrumb-item*/
/* .breadcrumb {
    margin: 0px;
    padding: 20px 15px;
}
.breadcrumb .breadcrumb-item a {
    font-size: 16px;
    color: #454545;
    text-decoration: none;
}

.breadcrumb .breadcrumb-item.active {
    color: #454545;
    font-weight: 600;
} */

/*Collection page*/
/* .collection-page-step {
    width: 100%;
    margin: 10px 0px 30px 0px;
    padding: 0px 15px 0px;
}

.stepper-wrapper {
    border: 1px solid #c0c0c0;
    background: #f0f0f0;
    overflow: hidden;
}

.stepper {
    display: flex;
    width: 100%;
    position: relative;
}

.step {
    position: relative;
    flex: 1;
    padding: 10px 16px 10px 20px;
    background: #fbfbfb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

.step.step-second,
.step.step-third {
    padding-left: 40px;
}

.step:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 0;
    right: -21px;
    width: 0;
    height: 0;
    border-top: 37px solid transparent;
    border-bottom: 37px solid transparent;
    border-left: 20px solid #c0c0c0;
    z-index: 3;
}

.step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: -18px;
    width: 0;
    height: 0;
    border-top: 37px solid transparent;
    border-bottom: 37px solid transparent;
    border-left: 20px solid #fbfbfb;
    z-index: 4;
}

.step.active {
    background: #ffffff;
    outline: 1px solid #c0c0c0;
    z-index: 2;
}

.step.active::after {
    border-left-color: #ffffff;
    z-index: 4;
}

.step-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-number {
    font-size: 38px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1;
}

.step-text small {
    font-size: 13px;
    color: #656565;
    display: block;
    font-weight: 400;
}

.step-text span {
    font-size: 12px;
    letter-spacing: 1.2px;
    font-weight: 600;
    color: #1a1a1a;
    display: block;
}

.step-image {
    border: 1px dashed #c0c0c0;
    border-radius: 4px;
    height: 38px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.filter-toggle-btn {
    display: none;
    align-items: center;
    gap: 8px;
    border: 1px solid #bbb;
    background: #fff;
    padding: 9px 18px;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    margin: 16px 20px;
    text-transform: uppercase;
}
.filter-toggle-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.filter-panel {
    padding: 20px 28px 16px;
}

.type-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}
.type-toggle button {
    padding: 8px 24px;
    border: 1px solid #afafaf;
    background: #fbfbfb;
    font-size: 14px;
    letter-spacing: 0.3px;
    cursor: pointer;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.12s;
    outline: none;
}
.type-toggle button:first-child {
    border-right: none;
}
.type-toggle button.active {
    background: #fff;
    border: 1.5px solid #000;
}
.type-toggle button svg {
    width: 12px;
    height: 10px;
}

.filter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 40px;
    row-gap: 22px;
}

.filter-label {
    font-size: 15px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.help-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    border: 1px solid #1b1b1b;
    border-radius: 50%;
    font-size: 10px;
    color: #1b1b1b;
    cursor: help;
    flex-shrink: 0;
    line-height: 1;
}

.shape-row {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}
.shape-btn {
    width: 45px;
    height: 45px;
    border: 1px solid #d0d0d0;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 0;
    padding: 0;
    transition: border-color 0.12s;
    flex-shrink: 0;
}
.shape-btn.active {
    border: 1.5px solid #000;
}
.shape-btn:hover:not(.active) {
    border-color: #888;
}
.shape-btn svg {
    width: 20px;
    height: 20px;
}

.slider-section {
    width: 100%;
}

.dual-slider {
    position: relative;
    height: 18px;
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}
.slider-track-bg {
    position: absolute;
    left: 0;
    right: 0;
    height: 2.5px;
    background: #c8c8c8;
    border-radius: 1px;
}
.slider-fill {
    position: absolute;
    height: 2px;
    background: #1a1a1a;
    border-radius: 1px;
    pointer-events: none;
}
.thumb {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #a1a1a1;
    transform: translateX(-50%);
    cursor: grab;
    z-index: 3;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
    touch-action: none;
}
.thumb:active {
    cursor: grabbing;
    border-color: #555;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 2px;
}
.slider-labels span {
    font-size: 15px;
    color: #656565;
}

.carat-inputs {
    display: flex;
    justify-content: space-between;
    margin-top: 7px;
}
.spin-wrap {
    display: flex;
    border: 1px solid #d0d0d0;
    width: 76px;
}
.spin-wrap input {
    border: none;
    outline: none;
    font-size: 12px;
    padding: 5px 6px;
    width: 100%;
    background: transparent;
    -moz-appearance: textfield;
}
.spin-wrap input::-webkit-inner-spin-button,
.spin-wrap input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}
.spin-arrows {
    display: flex;
    flex-direction: column;
    border-left: 1px solid #d0d0d0;
    flex-shrink: 0;
}
.spin-arrows button {
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 2px 5px;
    font-size: 7px;
    color: #888;
    line-height: 1.2;
}
.spin-arrows button:first-child {
    border-bottom: 1px solid #d0d0d0;
}

.price-inputs {
    display: flex;
    justify-content: space-between;
    margin-top: 7px;
}
.price-box {
    border: 1px solid #d0d0d0;
    padding: 5px 8px;
    font-size: 12px;
    width: 96px;
    outline: none;
    background: transparent;
}


.filter-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
    padding-top: 12px;
}
.advanced-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    font-size: 14px;
    letter-spacing: 0.2px;
    cursor: pointer;
    color: #1a1a1a;
}
.plus-circle {
    width: 17px;
    height: 17px;
    border: 1px solid #bbb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #888;
    line-height: 1;
}
.clear-btn {
    background: none;
    border: none;
    font-size: 14px;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.2px;
}
.clear-btn:hover {
    text-decoration: underline;
}

.listing-header {
    padding: 20px 24px 0;
}

.header-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.title-block {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.listing-title {
    font-size: 22px;
    font-weight: 600;
    color: #1b1b1b;
}

.listing-count {
    font-size: 18px;
    font-weight: 400;
    color: #a19fa0;
}

.view-toggle {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}

.listing-header .view-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f8f8f8;
    background: #f8f8f8;
    cursor: pointer;
    color: #000;
    transition:
        background 0.15s,
        color 0.15s,
        border-color 0.15s;
}

.listing-header .view-btn:hover,
.listing-header .view-btn.active {
    border-color: #000;
}

.listing-header .view-btn svg {
    width: 16px;
    height: 16px;
    stroke-width: 1.6;
}

.listing-desc {
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
    margin-top: 8px;
}

.filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 24px;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border);
}

.filter-bar .filter-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-bar .filter-check {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    border: 1px solid #dfdfdf;
    padding: 10px 15px;
    border-radius: 30px;
}

.filter-bar .filter-check:hover {
    background: #f8f8f8;
}

.filter-bar .filter-check input[type="checkbox"] {
    width: 14px;
    height: 14px;
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 2px;
}

.filter-bar .filter-check span {
    font-size: 14px;
    color: #1b1b1b;
}

.filter-bar .filter-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-bar .select-group {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.filter-bar .select-label {
    font-size: 14px;
    color: #a1a1a1;
}

.filter-bar .select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.filter-bar .select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: none;
    border-bottom: 1px solid #c5c5c5;
    padding: 2px 20px 4px 0;
    font-size: 14px;
    color: #656565;
    cursor: pointer;
    outline: none;
    min-width: 200px;
    font-weight: 400;
    letter-spacing: 0.01em;
    transition: border-color 0.15s;
}

.filter-bar .select-wrapper select:focus,
.filter-bar .select-wrapper select:hover {
    border-color: var(--accent);
}

.filter-bar .select-caret {
    position: absolute;
    right: 2px;
    pointer-events: none;
    color: var(--text-secondary);
}

.filter-bar .select-caret svg {
    width: 12px;
    height: 12px;
}

.collection-product-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    transition: all 0.3s ease;
}

.collection-product-list.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.collection-product-list.list-view {
    grid-template-columns: 1fr;
} */

.pagination-page .pagination {
    justify-content: center;
    padding: 60px 0 0;
    margin: 0px;
}

.pagination-page .pagination li a {
    color: #000;
}

.pagination-page .pagination li a.active {
    color: #fff;
    background: #0b4942;

    border-color: #0b4942;
}

.pagination-page .pagination li a:focus {
    outline: none;
    box-shadow: none;
}

/*Faq collectioon*/
/* .section-padding {
    padding: 60px 20px;
}
.faq-section {
    padding: 0 20px 60px;
}
.faq-title {
    text-align: center;
    font-size: 45px;
    font-weight: 700;
    color: #0b4942;
    padding-bottom: 30px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-item input {
    display: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 10px;
    cursor: pointer;
    font-size: 18px;
    color: #000;
}

.faq-question:hover {
    color: #0b4942;
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 10px;
    color: #333333;
    font-size: 16px;
    line-height: 1.6;
    transition: all 0.4s ease;
}

.faq-item input:checked ~ .faq-answer {
    max-height: 200px;
    padding: 10px;
}

.faq-item input:checked ~ .faq-question .faq-icon {
    transform: rotate(45deg);
} */

/* .faq-item input:checked ~ label .faq-icon {
    transform: rotate(45deg);
} */

/*About us*/
/* .story-section {
    padding: 60px 20px;
    text-align: center;
    max-width: 1320px;
    margin: 0 auto;
}

.diamond-wrap {
    width: 120px;
    margin: 0px auto;
}

.diamond {
    width: 100%;
    animation: float 3s ease-in-out infinite;
}

.draw {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: draw 2s ease forwards;
}

.spark {
    animation: sparkle 1.5s infinite alternate;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes sparkle {
    0% {
        opacity: 0.2;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.story-section p {
    font-size: 16px;
    color: #1b1b1b;
    line-height: 1.6;
    margin-top: 8px;
}

.know-section {
    position: relative;
    background: #f0eeeb;
    overflow: hidden;
    padding: 60px 0;
    background-image: url(../images/bg-img-2.jpg);
}

.know-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 0;
}

.know-text {
    padding-right: 48px;
}

.know-text p {
    font-size: 16px;
    color: #1b1b1b;
    line-height: 1.6;
    margin-top: 8px;
}

.know-img-center {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.know-img-center img {
    width: 100%;
    max-width: 340px;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hover-img {
    overflow: hidden;
}

.hover-img img {
    transition: transform 0.5s ease;
}

.hover-img:hover img,
.hover-img:hover img {
    transform: scale(1.03);
}

.know-img-right {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    overflow: hidden;
}

.know-img-right img {
    width: 100%;
    max-width: 380px;
    height: 460px;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
}

.about-features-inner {
    max-width: 1320px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.about-features .feature-box {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.about-features .icon {
    margin-bottom: 15px;
}

.about-features .icon i {
    font-size: 30px;
}

.about-features .feature-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1b1b1b;
}

.about-features .feature-box p {
    font-size: 16px;
    color: #1b1b1b;
    line-height: 1.6;
}

.jewellery-inner {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.jewellery-inner .jewellery-img {
    flex: 1;
}

.jewellery-inner .jewellery-img img {
    width: 100%;
    display: block;
    border-radius: 4px;
}

.jewellery-inner .jewellery-content {
    flex: 1;
}

.jewellery-inner .jewellery-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: rgb(11, 73, 66);
}

.jewellery-inner .jewellery-content p {
    font-size: 16px;
    color: #1b1b1b;
    max-width: 500px;
}

.testimonial-section {
    position: relative;
    overflow: hidden;
    background: #f7f7f7;
}

.testimonial-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background-size: 320px 320px;
    background-repeat: repeat;
    opacity: 0.5;
    pointer-events: none;
}

.quote-oval {
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
}

.quote-oval-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border: 1.5px solid #000;
    border-radius: 50%;
    position: relative;
}

.quote-oval-inner svg {
    width: 35px;
    height: 35px;
}

.testimonial-section .swiper-outer {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 100px;
}

.testimonial-section .swiper {
    width: 100%;
    overflow: hidden;
}

.testimonial-section .swiper-slide {
    text-align: center;
}

.quote-text {
    font-size: 34px;
    font-weight: 400;
    color: #1b1b1b;
    line-height: 1.45;
    margin-bottom: 32px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.quote-author {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #1b1b1b;
}

.swiper-custom-arrow,
.swiper-custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #1a1612;
    transition: color 0.25s;
    width: 45px;
    height: 45px;
    border: 1px solid #9c9c9c;
    border-radius: 45px;
}

.swiper-custom-arrow:hover,
.swiper-custom-arrow:hover {
    background: #0b4942;
    border: 1px solid #0b4942;
}

.testimonial-section .swiper-button-prev {
    left: 0;
}
.testimonial-section .swiper-button-next {
    right: 0;
}

.testimonial-section .swiper-button-prev i,
.testimonial-section .swiper-button-next i {
    color: #9c9c9c;
    font-size: 16px;
}

.swiper-button-prev:hover i,
.swiper-button-next:hover i {
    color: #fff;
}

.testimonial-section .swiper-button-prev::after,
.testimonial-section .swiper-button-next::after {
    display: none;
}

.arrow-svg {
    width: 32px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
    display: none;
}

.marquee {
    width: 100%;
    overflow: hidden;
    background: #1a1612;
    color: #fff;
    padding: 20px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
}

.marquee-content span {
    margin: 0 25px;
    font-size: 18px;
    letter-spacing: 1px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
} */

/*Contact us page*/

/* .contact-form .head {
    text-align: center;
}

.contact-form .card {
    border: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    border-radius: 5px;
}

.contact-form .card .fom-inner {
    background-color: #fff;
    border-radius: 5px;
    padding: 3rem 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    animation: slideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form .form-header {
    margin-bottom: 2.2rem;
}

.contact-form .form-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2b1f17;
    line-height: 1.2;
}

.contact-form .form-header p {
    margin-top: 0.6rem;
    font-size: 16px;
    color: #1b1b1b;
    line-height: 1.6;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.2rem;
}

.contact-form .form-group label {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 0.45rem;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    font-size: 0.92rem;
    color: #2b1f17;
    background-color: #fff;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    padding: 0.75rem 1rem;
    outline: none;
    transition:
        border-color 0.25s,
        background-color 0.25s,
        box-shadow 0.25s;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    border-color: #000;
    background-color: #fff;
}

.contact-form .form-group input:hover,
.contact-form .form-group select:hover,
.contact-form .form-group textarea:hover {
    border-color: #000;
}

.contact-form .form-footer {
    text-align: center;
}

.contact-detail {
    background-color: #fff;
    border-radius: 5px;
    padding: 3rem 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    display: grid;
    border: 1px solid #e2e8f0;
    animation: slideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.contact-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    margin-bottom: 30px;
}

.contact-box:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #0b4942;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
}

.contact-text h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.contact-text a {
    margin: 4px 0 0;
    font-size: 16px;
    color: #1b1b1b;
    text-decoration: none;
} */

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*Product detail page*/
/* .Product-detail-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    margin: 0 auto;
    padding: 20px 30px;
    gap: 30px;
}

.Product-detail-wrapper .Product-img-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
}

.Product-img-left .img-cell img {
    height: 585px;
    width: 585px;
    object-fit: cover;
    aspect-ratio: 1;
}

.product-info-right {
    display: flex;
    flex-direction: column;
}

.Product-detail-wrapper .product-info-right .prod-title {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    line-height: 1.2;
    margin-bottom: 3px;
}
.product-info-right .prod-sub {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}
.gia-badge {
    background: #183872;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 2px;
    letter-spacing: 0.3px;
}
.product-info-right .prod-price {
    font-size: 25px;
    font-weight: 400;
    color: #000;
    margin-bottom: 12px;
}

.product-info-right .tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.product-info-right .tag {
    font-size: 12px;
    padding: 5px 10px;
    border: 1px solid #b4cfcf;
    background: #b4cfcf;
    border-radius: 20px;
    color: #183e40;
}

.product-info-right .going-fast {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.going-fast strong {
    color: #111;
}

.product-info-right .btn-ring {
    width: 100%;
    background: #fff;
    color: #124c43;
    border: 1px solid #124c43;
    padding: 12px 26px;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    margin: 15px 0;
}
.product-info-right .btn-ring:hover {
    background: #124c43;
    color: #fff;
}

.product-info-right .btn-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 10px;
}
.product-info-right .btn-row .btn-sm {
    background: #fff;
    border: 1px solid #d9d9d9;
    padding: 12px 26px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #000;
    letter-spacing: 0.5px;
}
.product-info-right .btn-row .btn-sm:hover {
    background: #f5f5f5;
}
.product-info-right .btn-row .btn-sm svg {
    width: 14px;
    height: 14px;
    stroke: #000;
    fill: none;
}

.product-info-right .order-note {
    font-size: 14px;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.product-info-right .promo {
    border: 1px solid #f4f4f4;
    background: #f4f4f4;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 12px;
    border-radius: 2px;
}
.product-info-right .promo-img {
    width: 60px;
    height: 60px;
    background: #f4f4f4;
    flex-shrink: 0;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-info-right .promo-label {
    font-size: 14px;
    color: #2c2c2c;
    margin-bottom: 2px;
}
.product-info-right .promo-title {
    font-size: 12px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 2px;
}
.product-info-right .promo-detail {
    font-size: 12px;
    color: #2c2c2c;
}

.product-info-right .covered {
    font-size: 14px;
    color: #2c2c2c;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.product-info-right .i-icon {
    border: 1px solid #bbb;
    border-radius: 50%;
    width: 13px;
    height: 13px;
    font-size: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #888;
    cursor: pointer;
}

.product-info-right .ship-row {
    display: flex;
    gap: 20px;
    padding: 10px 0 12px;
    border-top: 1px solid #eee;
    margin-bottom: 4px;
}
.product-info-right .ship-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #2c2c2c;
}
.product-info-right .ship-item svg {
    width: 25px;
    height: 25px;
    stroke: #2c2c2c;
    fill: none;
    flex-shrink: 0;
}

/* Accordion */
/* .product-info-right .accordion {
    border-top: 1px solid #e0e0e0;
}
.product-info-right .acc-hdr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #222;
}
.product-info-right .acc-hdr svg {
    width: 25px;
    height: 25px;
    stroke: #888;
    fill: none;
    transition: transform 0.2s;
}
.product-info-right .acc-hdr.open svg {
    transform: rotate(180deg);
}
.product-info-right .acc-body {
    display: none;
    padding-bottom: 10px;
}
.product-info-right .acc-body.open {
    display: block;
}

.product-info-right .d-list {
    display: flex;
    flex-direction: column;
}
.product-info-right .d-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 7px 0;
    font-size: 14px;
    border-bottom: 1px solid #f5f5f5;
}
.product-info-right .d-row:last-child {
    border-bottom: none;
}
.product-info-right .accordion .dv-left {
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
}
.product-info-right .accordion .ii {
    border: 1px solid #bbb;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    font-size: 7.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #999;
    cursor: pointer;
    flex-shrink: 0;
}
.product-info-right .accordion .dv-right {
    color: #222;
    text-align: right;
    max-width: 55%;
}

.product-info-right .product-info-links {
    display: flex;
    gap: 18px;
    padding: 18px 0 0;
    justify-content: center;
    font-size: 14px;
    margin-top: 20px;
}
.product-info-links a {
    color: #555;
    text-decoration: none;
}
.product-info-links a:hover {
    text-decoration: underline;
} */

/* .product-desciption ul {
    justify-content: center;
}

.product-desciption .nav-pills .nav-link.active {
    background: #0b4942;

    color: #fff;
}

.product-desciption .nav-pills .nav-link {
    background: #f4f4f4;
    color: #000;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 0px;
    width: 150px;
}

.product-desciption .tab-content {
    border: 1px solid #ccc;
    padding: 15px;
}

.star-field-label {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6b5e52;
    margin-bottom: 8px;
}

.stars-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
    margin-bottom: 24px;
}

.stars-input input[type="radio"] {
    display: none;
}

.stars-input label {
    font-size: 26px;
    color: #000;
    cursor: pointer;
    transition:
        color 0.15s,
        transform 0.15s;
    line-height: 1;
    user-select: none;
}

.stars-input label:hover,
.stars-input label:hover ~ label {
    color: goldenrod;
    transform: scale(1.15);
}

.stars-input input[type="radio"]:checked ~ label {
    color: goldenrod;
}

.review-layout .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.review-layout .field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.review-layout .field-group label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    color: #000;
}

.review-layout .field-group input[type="text"],
.review-layout .field-group input[type="email"],
.review-layout .field-group textarea {
    background: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 2px;
    padding: 11px 14px;
    font-size: 14px;
    color: #2a2320;
    outline: none;
    width: 100%;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.review-layout .field-group input::placeholder,
.review-layout .field-group textarea::placeholder {
    color: #000;
}

.review-layout .field-group input:focus,
.review-layout .field-group textarea:focus {
    border-color: #0b4942;
}

.review-layout .field-group textarea {
    resize: vertical;
    min-height: 100px;
} */

/* .signature-banner {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 260px;
    background: #fff;
    padding-bottom: 60px;
    overflow: hidden;
}

.signature-banner .banner-image {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
}

.signature-banner .banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.signature-banner .banner-content {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 48px;
    background: #fff;
    gap: 14px;
}

.signature-banner .banner-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin-bottom: 0px;
}

.signature-banner .banner-content p {
    font-size: 20px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 0px;
} */

/* .product-diamond-section {
  background: #f5f5f5;
}

.product-diamond-section .inner{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.product-diamond-section .image-wrapper {
  overflow: hidden;
  border-radius: 40px;
}

.product-diamond-section .image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s ease-in-out;
}

.product-diamond-section .image-wrapper img:hover{
    transform: scale(1.05);
}

.product-diamond-section .custom-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #ddd;
  background: transparent;
}

.product-diamond-section .custom-accordion .accordion-button {
  background: transparent;
  box-shadow: none;
  font-weight: 500;
  padding: 1.2rem 0;
  font-size: 18px;
}

.product-diamond-section .custom-accordion .accordion-button:not(.collapsed) {
  color: #000;
}

.product-diamond-section .custom-accordion .accordion-button:focus {
  box-shadow: none;
}

.product-diamond-section .custom-accordion .accordion-body {
  padding: 0 0 1.2rem 0;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

.product-diamond-section .accordion-button::after {
  filter: grayscale(1);
} */

/* .bg-info-inner {
    background: url("../images/product-detail-bg.png") no-repeat center / cover;
    padding: 150px 20px;
    text-align: center;
}

.bg-info-inner p{
    font-size: 18px;
    color: #fff;
    max-width: 1020px;
    line-height: normal;
    margin: 0 auto;
} */
/*
.recommended-products{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
} */

input:where([type="text"]):focus,
input:where(:not([type])):focus,
input:where([type="email"]):focus,
input:where([type="url"]):focus,
input:where([type="password"]):focus,
input:where([type="number"]):focus,
input:where([type="date"]):focus,
input:where([type="datetime-local"]):focus,
input:where([type="month"]):focus,
input:where([type="search"]):focus,
input:where([type="tel"]):focus,
input:where([type="time"]):focus,
input:where([type="week"]):focus,
select:where([multiple]):focus,
textarea:focus,
select:focus {
    border-color: #000 !important;
    box-shadow: none !important;
}
