.herobanner .swiper-slide {
    display: grid;
    align-items: end
}

.herobanner .swiper-slide>* {
    grid-area: 1/1
}

.herobanner .swiper-slide .inner-container {
    width: 100%;
    max-width: 1920px;
    padding-left: 10rem
}

.herobanner .swiper-wrapper+.container .col-lg-10 {
    position: relative
}

.herobanner .col-lg-10 {
    width: 100%
}

.herobanner .inner-container {
    padding-bottom: 8em
}

.herobanner .banner-content {
    padding: 2.5em 2em;
    background: #202020bb;
    width: fit-content;
    translate: 0 5em;
    opacity: 0;
    animation-delay: 1s
}

.herobanner picture {
    position: relative
}

.herobanner picture::after {
    content: '';
    position: absolute;
    inset: 0;
    height: 35%;
    background: transparent linear-gradient(180deg, #000000 0%, #00000000 100%) 0% 0% no-repeat padding-box;
    opacity: .5
}

.herobanner .swiper-controls {
    position: absolute;
    bottom: 30px;
    right: 0;
    width: 23em;
    z-index: 5;
    display: flex;
    align-items: center;
    column-gap: 2rem
}

.herobanner .swiper-navs :is(.swiper-button-next, .swiper-button-prev) {
    border-color: var(--color-white)
}

.herobanner .swiper-navs :is(.swiper-button-next, .swiper-button-prev):hover {
    border-color: var(--color-accent)
}

.herobanner .swiper-navs :is(.swiper-button-next, .swiper-button-prev)::after {
    font-size: .8em;
    color: var(--color-white)
}

.herobanner .swiper-progress {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    position: relative
}

.herobanner .swiper-progress .swiper-pagination-progress {
    font-size: var(--text-20);
    top: 50%;
    translate: 0 -50%;
    width: calc(100% - (1.4em * 2));
    left: 1.4em;
    background: transparent;
    border-bottom: 1px solid var(--color-white)
}

.herobanner .swiper-pagination-progress .swiper-pagination-progressbar-fill {
    background: var(--color-white)
}

.herobanner .swiper-progress .swiper-pagination-fraction {
    width: 100%;
    display: flex;
    justify-content: space-between
}

.herobanner .swiper-progress .swiper-pagination-fraction span {
    font-size: var(--text-20);
    color: var(--color-white)
}

.herobanner .inner-container .link-icon {
    translate: 0 5em;
    opacity: 0;
    animation-delay: 2.5s
}

.herobanner .inner-container span {
    font-size: var(--text-16);
    color: var(--color-secondary);
    animation-delay: 1.2s
}

.herobanner .inner-container p {
    font-size: var(--text-32);
    max-width: 11em;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: .35em;
    translate: 0 2em;
    opacity: 0;
    animation-delay: 2s
}

.herobanner .swiper-slide.swiper-slide-active p {
    animation-name: fade-up;
    animation-duration: 1s;
    animation-fill-mode: both
}

.herobanner .inner-container span {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transition-duration: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s all;
    -ms-transition: 1s all;
    -o-transition: 1s all
}

.herobanner .swiper-slide.swiper-slide-active span {
    animation-name: clip-horizontal;
    animation-duration: 1s;
    animation-fill-mode: forwards
}

.herobanner .swiper-slide.swiper-slide-active .banner-content {
    animation-name: fadeRight;
    animation-duration: 1s;
    animation-fill-mode: both
}

.herobanner .swiper-slide.swiper-slide-active .link-icon {
    animation-name: fade-up;
    animation-duration: 1s;
    animation-fill-mode: forwards
}

@keyframes clip-horizontal {
    from {
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%)
    }

    to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
    }
}

@keyframes fade-up {

    /* from{
        translate: 0 30%; opacity: 0;
    } */
    to {
        translate: 0 0%;
        opacity: 1;
    }
}

@keyframes fadeRight {

    /* from{
        translate: 0 30%; opacity: 0;
    } */
    to {
        translate: 0% 0;
        opacity: 1;
    }
}

@media (max-width:768px) {
    .herobanner .swiper-slide picture {
        height: 100vh;
        min-height: 350px
    }

    .herobanner .swiper-slide picture img {
        height: 100%;
        width: 100%;
        object-fit: cover
    }
}

@media (max-width:575px) {
    .herobanner .swiper-slide {
        align-items: end
    }

    .herobanner .swiper-slide picture {
        height: calc(100dvh - 70px)
    }

    .herobanner .swiper-slide .inner-container {
        padding-bottom: 2em;
        text-align: center;
        padding-inline: 1.3rem
    }

    .herobanner .inner-container p {
        margin-inline: auto;
        max-width: 12em
    }

    .herobanner .inner-container .link-icon {
        margin-inline: auto
    }

    .herobanner .swiper-controls {
        display: none
    }

    .herobanner .swiper-navs :is(.swiper-button-next, .swiper-button-prev)::after {
        margin-top: 2px
    }
}

/* =============================
PRODUCT RANGE SECTION
============================= */

.product-range {
    background: #F4F3EF;
    overflow: hidden;
    position: relative;
    padding: 90px 0 70px;
}


/* =============================
CONTAINER
============================= */

.product-range .container {
    max-width: 1280px;
    margin: auto;
    padding-left: 40px;
    padding-right: 40px;
    position: relative;
}

.product-range .row {
    align-items: center;
    min-height: 420px;
}

.product-range .col-lg-6 {
    padding-left: 40px;
    padding-right: 40px;
}


/* =============================
LEFT CONTENT
============================= */

.section-title {
    font-size: 46px;
    font-weight: 700;
    color: #7a2e2a;
    line-height: 1.2;
    margin-bottom: 18px;
}

.heading-top {
    color: #7d7d7d;
    font-size: 18px;
    display: block;
    margin-bottom: 12px;
    letter-spacing: .3px;
}

.section-desc {
    color: #6f6f6f;
    max-width: 520px;
    line-height: 1.7;
    font-size: 16px;
}


/* vertical divider */

.left-content-divider {
    position: relative;
    padding-right: 60px;
}

.left-content-divider:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    height: 100%;
    width: 1px;
    background: #DCC7A1;
}


/* =============================
RIGHT CONTENT
============================= */

.product-range .tab-content {
    max-width: 560px;
    margin-left: auto;
    position: relative;
}


/* equal height */

.product-range .tab-pane .row {
    display: flex;
    align-items: center;
    min-height: 320px;
}


/* image */

.product-range .img-wrap {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.product-img {
    max-height: 320px;
    width: 100%;
    object-fit: contain;
    transition: transform .6s ease;
    will-change: transform;
}

.img-wrap:hover .product-img {
    transform: scale(1.08);
}


/* text */

.category-title {
    font-size: 22px;
    font-weight: 600;
    color: #7a2e2a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-range .tab-pane p {
    font-size: 16px;
    color: #6f6f6f;
    margin-bottom: 14px;
    max-width: 260px;
}


/* button */

.btn-theme-accent {
    background: #c96b3c;
    color: white;
    border-radius: 6px;
    padding: 10px 22px;
    border: none;
    font-size: 14px;
    transition: .3s;
}

.btn-theme-accent:hover {
    background: #a5552c;
    color: #fff;
}


/* spacing between image and text */

.product-range .tab-pane .col-7 {
    padding-right: 25px;
}

.product-range .tab-pane .col-5 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10px;
}


/* =============================
TABS
============================= */

.product-tabs {
    border-top: 1px solid #DCC7A1;
    border-bottom: 1px solid #DCC7A1;
    padding: 18px 0;
    gap: 40px;
    flex-wrap: nowrap;
    overflow: auto;
    white-space: nowrap;
    justify-content: center;
}

.product-tabs::-webkit-scrollbar {
    display: none;
}

.product-tabs .nav-link {
    border: none;
    color: #777;
    font-weight: 500;
    padding: 6px 20px;
    font-size: 15px;
    position: relative;
}

.product-tabs .nav-link.active {
    color: #c96b3c;
    background: none;
}

/* Vertical divider */
.product-tabs .nav-link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1.5px;
    height: 20px;
    background: #DCC7A1;
}

/* Remove divider for last tab */
.product-tabs .nav-link:last-child::after {
    display: none;
}


/* =============================
MANDALA DECORATION
============================= */

.mandala {
    position: absolute;
    pointer-events: none;
    animation: mandalaRotate 40s linear infinite;
}

@keyframes mandalaRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.mandala-top {
    top: -230px;
    right: 30px;
    width: 450px;
}

.mandala-bottom {
    bottom: -150px;
    left: 30px;
    width: 280px;
    transform: rotate(180deg);
}


/* =============================
TAB ANIMATION
============================= */

.product-range .tab-pane {
    opacity: 0;
    transform: translateY(20px);
    transition: all .45s ease;
    display: block;
    position: absolute;
    width: 100%;
}

.product-range .tab-pane.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}


/* =============================
RESPONSIVE
============================= */

@media (min-width:1400px) {

    .product-img {
        max-height: 360px;
    }

    .category-title {
        font-size: 24px;
    }

}


/* laptop */

@media(max-width:1200px) {

    .product-range {
        padding: 70px 0 60px;
    }

    .section-title {
        font-size: 38px;
    }

    .product-range .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .product-range .col-lg-6 {
        padding-left: 25px;
        padding-right: 25px;
    }

    .product-img {
        max-height: 300px;
    }

    .product-tabs {
        gap: 28px;
    }

}


/* tablet */

@media(max-width:991px) {

    .product-range {
        padding: 60px 0 50px;
    }

    .product-range .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .product-range .col-lg-6 {
        padding-left: 15px;
        padding-right: 15px;
    }

    .left-content-divider {
        padding-right: 15px;
    }

    .left-content-divider:after {
        display: none;
    }

    .section-title {
        font-size: 32px;
    }

    .section-desc {
        max-width: 100%;
    }

    .product-range .col-lg-6:last-child {
        margin-top: 30px;
    }

    .product-range .tab-content {
        margin: 0 auto;
        max-width: 100%;
    }

    .product-range .tab-pane .row {
        min-height: auto;
    }

    .product-img {
        max-height: 260px;
        margin-bottom: 10px;
    }

    .category-title {
        font-size: 20px;
    }

    .product-range .tab-pane p {
        max-width: 100%;
    }

    .product-tabs {
        justify-content: flex-start;
        gap: 22px;
        margin-top: 40px;
        padding-left: 10px;
    }

    .mandala-top {
        width: 170px;
        top: -40px;
        right: -40px;
    }

    .mandala-bottom {
        width: 170px;
        bottom: -40px;
        left: -40px;
    }

}


/* mobile */

@media(max-width:575px) {

    .product-range .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section-title {
        font-size: 26px;
    }

    .heading-top {
        font-size: 14px;
    }

    .product-tabs .nav-link {
        font-size: 14px;
    }

    .product-img {
        max-height: 190px;
    }

    .category-title {
        font-size: 18px;
    }

    .product-range .tab-pane p {
        font-size: 13px;
    }

    .btn-theme-accent {
        padding: 8px 16px;
        font-size: 13px;
    }

}


/* very small mobile */

@media(max-width:420px) {

    .product-img {
        max-height: 170px;
    }

    .category-title {
        font-size: 17px;
    }

}

/* =============================
PRODUCT RANGE SECTION END
============================= */

/* =============================
Product Highlight Section
============================= */
/* SECTION */

.spotlight-section {
    width: 100%;
    padding: 40px 0 60px;
    overflow: hidden;
}

.spotlight-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    /* padding:0 40px; */
}

/* HEADER */

.spotlight-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
}

.spotlight-title h2 {
    font-size: 44px;
    font-weight: 700;
    color: #7f2f2b;
    line-height: 1.2;
    margin-bottom: 12px;

}

.spotlight-line {
    width: 320px;
    height: 1px;
    background: #c2c1c0;
}

.view-all-btn {
    background: #c96b3c;
    color: white;
    border-radius: 6px;
    padding: 10px 22px;
    font-weight: 500;

    white-space: nowrap;
    border: none;
    font-size: 14px;
    transition: .3s ease;
}

.view-all-btn:hover {
    background: #a5552c;
    color: #fff;
}

/* SLIDER */

.spotlight-grid {
    display: flex;
    gap: 34px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;

    padding-bottom: 10px;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;
}

.spotlight-grid::-webkit-scrollbar {
    display: none;
}

/* CARD */

/* .product-card{
    flex:0 0 calc(20% - 28px);
    min-width:0;

    scroll-snap-align:start;
} */
.product-card {
    flex: 0 0 calc(20% - 28px);
    overflow: hidden;
    min-width: 0;
    scroll-snap-align: start;
    transition: border-color .2s, transform .2s;
}

/* IMAGE */

.product-image {
    position: relative;
    aspect-ratio: 3 / 4;
    background: #f0efe8;
    overflow: hidden;
    border-radius: 15px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

/* RATING */

.rating-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.264);
    color: #fff;
    border-radius: 99px;
    font-size: 11px;
    padding: 2px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.rating-stars {
    color: #0db84c;
    font-size: 10px;
}

/* CONTENT */

.product-content {
    padding: 10px 12px 13px;
}

.product-title {
    font-size: 13px;
    color: var(--clr-text);
    line-height: 1.45;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 5px;
}

.price {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.old-price {
    font-size: 12px;
    text-decoration: line-through;
    color: #aaa9a0;
}


.discount {
    font-size: 11px;
    font-weight: 500;
    color: var(--clr-green);
    background: var(--clr-green-lt);
    padding: 1px 6px;
    border-radius: 99px;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

/* DOTS */

.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(109, 53, 23, .25);
    cursor: pointer;
    transition: .3s ease;
}

.dot.active {
    width: 34px;
    border-radius: 20px;
    background: #6d3517;
}

/* LARGE TABLET */

@media(max-width:1200px) {

    .product-card {
        flex: 0 0 calc(25% - 26px);
    }

    .spotlight-title h2 {
        font-size: 48px;
    }

}

/* TABLET */

@media(max-width:900px) {

    .product-card {
        flex: 0 0 calc(33.333% - 23px);
    }

}

/* MOBILE */

@media(max-width:768px) {

    .spotlight-section {
        padding: 28px 0 40px;
    }

    .spotlight-container {
        padding: 0 16px;
    }

    .spotlight-top {
        align-items: center;
        margin-bottom: 20px;
    }

    .spotlight-title h2 {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .spotlight-line {
        width: 140px;
    }

    .view-all-btn {
        padding: 12px 18px;
        font-size: 15px;
        border-radius: 6px;
    }

    .spotlight-grid {
        gap: 16px;
    }

    .product-card {
        flex: 0 0 calc(50% - 8px);
    }

    .product-image {
        border-radius: 12px;
    }

    .rating-badge {
        left: 8px;
        bottom: 8px;
        padding: 4px 7px;
        font-size: 11px;
        gap: 4px;
    }

    .rating-stars {
        font-size: 10px;
    }

    .product-content {
        padding-top: 12px;
    }

    .product-title {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .price-row {
        gap: 6px;
    }

    .price {
        font-size: 15px;
    }

    .old-price,
    .discount {
        font-size: 12px;
    }

    .slider-dots {
        margin-top: 20px;
    }

}

/* SMALL MOBILE */

@media(max-width:420px) {

    .product-card {
        flex: 0 0 calc(50% - 7px);
    }

    .spotlight-title h2 {
        font-size: 26px;
    }

}

/* Wishlist */
.wishlist-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e2da;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    color: #6b6b63;
    transition: color .15s, border-color .15s;
    z-index: 2;
}

.wishlist-btn:hover,
.wishlist-btn.active {
    color: #E24B4A;
    border-color: #f5c1c1;
}




/* ===== Product by district section ===== */
.odisha-craft-map {
    --indigo: #1f3c5a;
    --turmeric: #d4a017;
    --terracotta: #c45a2d;
    --cream: #f6f1e9;
    position: relative;
    background: #fff;
    padding: 80px 20px;
    overflow: hidden;
}

/* HEADER */
.odisha-craft-map .ocm-header {
    text-align: center;
    margin-bottom: 50px;
}

/* =============================
MANDALA DECORATION
============================= */

.ocm-mandala {
    position: absolute;
    pointer-events: none;
}


.ocm-mandala-top {
    bottom: 150px;
    left: -5px;
    width: 750px;
    z-index: 1;
    opacity: 0.3;
}

.ocm-mandala-bottom {
    animation: mandalaRotate 40s linear infinite;
    bottom: -180px;
    width: 450px;
    right: -150px;
    transform: rotate(180deg);
    opacity: 0.6;


}

@keyframes mandalaRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* LAYOUT */
.odisha-craft-map .ocm-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

/* District Labels */
.ocm-label {
    font-size: 12rem;
    /* adjust based on your SVG size */
    fill: #000000;
    text-anchor: middle;
    dominant-baseline: middle;
    pointer-events: none;
    font-weight: 600;
}

.ocm-district {
    fill: #d9a066;
    stroke: #fff;
    stroke-width: 3px;
    cursor: pointer;
    transition: .3s;
}

.ocm-district:hover {
    fill: var(--turmeric);

}

.ocm-active {
    fill: #7a2e2a !important;
    stroke: var(--turmeric);
    stroke-width: 2;
    filter: drop-shadow(0 0 10px rgba(212, 160, 23, .7));
}

/* POPUP */
.ocm-popup {
    width: 360px;
    background: #f0edeb;
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    color: #000000;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.35s ease;
}

.ocm-popup.active {
    opacity: 1;
    transform: translateY(0);
}

.ocm-popup img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.ocm-popup-content {
    padding: 20px;
}

.ocm-popup h3 {
    color: var(--turmeric);
    margin: 0;
}

.ocm-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: var(--terracotta);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
}

.ocm-btn:hover {
    background: #7a2e2a;
    color: #fff;
}

/* MOBILE */
@media(max-width:768px) {
    .odisha-craft-map .ocm-layout {
        flex-direction: column;
    }

    .ocm-mandala-top {
        /* bottom: -100px; */
        left: 0;
        top: 50px;
        width: 300px;
    }

    .ocm-mandala-bottom {
        bottom: -150px;
        right: -100px;
        width: 300px;
    }

    .ocm-popup {
        order: 1;
        width: 100%;
    }

    .ocm-map {
        order: 2;
        width: 100%;
    }
}

/* Story SECTION */
.craft-stories {
    background: #811515;
    color: #fff;
    padding-block: 6em;
}

/* HEADING */
.craft-stories .heading {
    margin-bottom: 1.5em;
}

.craft-stories .heading h3 {
    color: #fff;
}

.craft-stories .section-title {
    color: #fff;
}

/* SLIDER WRAPPER */
.craft-stories-slider {
    margin-top: 3rem;
}

/* SWIPER */
.craftSwiper {
    padding-bottom: 4rem;
}

.craftSwiper .swiper-wrapper {
    align-items: center;
}

/* SLIDE */
.craftSwiper .swiper-slide {
    height: auto;
    margin-right: 20px;
}

/* IMAGE */
.craftSwiper figure {
    position: relative;
}

.craftSwiper figure::after {
    content: '';
    position: absolute;
    inset: 0;
    transform: translate(1em, 2em);
    background: #000;
    opacity: 0.2;
    filter: blur(2em);
    z-index: -1;
}

.craftSwiper figure img {
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
}

/* TEXT */
.craftSwiper h5 {
    margin-top: 1rem;
    font-size: 14px;
}

/* BUTTON */
.craftSwiper .btn-link .link-icon {
    background-color: #e3e0e0;
}

.craftSwiper .btn-link:hover .link-icon {
    background: #000;
}

/* NAV */
.craft-stories .swiper-button-next,
.craft-stories .swiper-button-prev {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
}

.craft-stories .swiper-button-next::after,
.craft-stories .swiper-button-prev::after {
    font-size: 12px;
    color: #000;
}

/* RESPONSIVE */
@media (min-width: 992px) {
    .craftSwiper .swiper-slide {
        width: 22%;
    }
}

@media (max-width: 991px) {
    .craft-stories {
        background: #ec3237;
    }

    .craft-stories .heading,
    .craft-stories .content {
        text-align: center;
    }
}

/* =============================
About Section
============================= */
.about-section {
    background: #ffffff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* LEFT BIG ART - reduced size */
.about-art {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    height: auto;
    z-index: 0;
    pointer-events: none;
}

.about-art img {
    width: 320px;
    max-width: none;
}

/* CONTENT ABOVE ART */
.about-section .container {
    position: relative;
    z-index: 2;
}

/* HEADING */
.heading-top {
    font-size: 18px;
    font-weight: 600;
    color: #6b6b6b;
    margin-bottom: 10px;
}

.section-title {
    font-size: 44px;
    font-weight: 700;
    color: #7f2f2b;
    line-height: 1.2;
    margin-bottom: 20px;
}

.heading p {
    color: #6b6b6b;
    font-size: 16px;
    line-height: 1.7;
    max-width: 480px;
}

/* STATS */
.statistics {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.stats {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* ICON CIRCLE */
.icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon img {
    width: 34px;
}

/* COLORS */
.bg-orange {
    background: #c57759;
}

.bg-green {
    background: #5f7353;
}

.bg-red {
    background: #9b4a43;
}

/* COUNT TEXT */
.count {
    font-size: 36px;
    font-weight: 700;
    color: #7f2f2b;
}


/* RESPONSIVE */
@media(max-width:1200px) {

    .about-art img {
        width: 520px;
    }

}

@media(max-width:991px) {

    .about-art {
        display: none;
    }

    .about-section {
        text-align: center;
        padding: 80px 0;
    }

    .statistics {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .stats {
        width: 45%;
        justify-content: center;
    }

    .section-title {
        font-size: 32px;
    }

}

@media(max-width:576px) {

    .section-title {
        font-size: 26px;
    }

    .stats {
        width: 100%;
    }

    .icon {
        width: 60px;
        height: 60px;
    }

    .count {
        font-size: 26px;
    }

}

/* =============================
About Section End
============================= */
.about {
    padding-block: 2em 4em;
    position: relative
}

.about .floating {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    background: var(--color-light);
    max-width: 30%
}

.about .stats .text {
    font-size: var(--text-16);
    font-weight: 700
}

.about .stats {
    display: flex;
    align-items: center;
    column-gap: .77em;
    width: fit-content;
    padding-right: 3rem;
    padding-left: 3rem
}

.about .statistics {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 11.33%;
    background: var(--color-light);
    position: relative
}

.about .statistics::before,
.about .statistics::after {
    content: '';
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    width: 15%;
    height: .1em;
    background: #d9d9d9
}

.about .statistics::before {
    right: calc(100% - 3em)
}

.about .statistics::after {
    left: calc(100% - 3em)
}

.abt-des {
    padding-top: 8rem;
    position: relative
}

.abt-left {
    position: relative
}

.abt-left figure {
    position: relative
}

.abt-left figure .playVideo {
    bottom: 50%;
    right: 50%;
    translate: 50% 50%;
    width: 8rem
}

.abt-dec-img figure {
    position: absolute
}

.abt-dec-img .abt-img1 {
    position: absolute;
    bottom: -2.3rem;
    left: -17rem
}

.abt-dec-img .abt-img2 {
    position: absolute;
    bottom: -2.3rem;
    left: -7.5rem
}

.abt-right {
    padding-left: 7em;
    padding-right: 0;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.abt-right h5 {
    font-size: var(--text-18);
    font-weight: 700;
    color: #231f27
}

.abt-right h3 {
    font-size: var(--text-40);
    font-weight: 400;
    margin-bottom: 1.6rem;
    color: var(--color-black);
    padding-right: 1em;
    line-height: 1
}

.abt-right h3 span {
    color: var(--color-accent);
    font-weight: 700
}

.abt-right p {
    font-size: var(--text-13);
    padding-right: 6rem;
    margin-bottom: 6rem
}

.abt-point {
    background-color: var(--color-black);
    padding: 14px 6px;
    border-radius: 10px;
    position: absolute;
    bottom: 2rem;
    left: -5rem
}

.abt-point ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-left: 0;
    margin-bottom: 0
}

.abt-point ul li {
    position: relative;
    padding-right: 2rem;
    padding-left: 2rem;
    text-align: center
}

.abt-point ul li a {
    color: #fff;
    text-decoration: none;
    font-size: var(--text-16)
}

.abt-point ul li::after {
    content: '';
    display: block;
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-secondary);
    right: 0;
    top: 50%
}

.abt-point ul li:last-child::after {
    display: none
}

.about .responsive-embed iframe {
    aspect-ratio: 5/3;
    width: 100%;
    overflow: hidden
}

.about+.social-media {
    padding-top: 0
}

@media (max-width:1800px) {
    .abt-right h3 {
        padding-right: 0
    }
}

@media (max-width:1600px) {
    .abt-right {
        padding-left: 6em
    }

    .content {
        padding-left: rem
    }

    .new-arrivals {
        margin-left: 9rem;
        padding: 5.4em 4em 3.4em
    }

}

@media screen and (max-width:1450px) {
    .new-arrivals {
        padding: 2.4em 2em 0
    }
}

@media screen and (max-width:1366px) {

    .new-arrivals {
        padding: 2.4em 2em 0;
        margin-left: 4rem
    }
}

@media (max-width:1299px) {
    .abt-point {
        padding-inline: 0
    }

}

@media (max-width:991px) {
    .abt-right {
        padding-left: 0
    }

    .abt-right :is(p, h5, h3) {
        display: none
    }

    .abt-left {
        margin-inline: auto;
        margin-bottom: 2rem
    }

    .abt-left .abt-dec-img {
        display: none
    }

    .abt-point {
        background: transparent;
        position: relative;
        left: 0
    }

    .abt-point ul li a {
        color: var(--color-dark);
        font-size: 14px;
        font-weight: 500
    }

    .abt-point ul li::after {
        background-color: var(--color-accent)
    }

    .about .statistics {
        padding-inline: 0
    }

    .about .statistics::before,
    .about .statistics::after {
        display: none
    }

    .about .heading {
        padding-inline: 2rem
    }

    .abt-des {
        padding-top: 3em
    }

    .new-arrivals {
        margin-left: 0
    }
}

@media (max-width:768px) {
    .about .statistics {
        flex-direction: column
    }

    .about .statistics .stats {
        flex-direction: column;
        position: relative;
        width: 200px;
        padding-block: 1em 1.5em;
        border-bottom: 1px solid #e0e0e0
    }

    .about .stats .text {
        text-align: center
    }

    .about .heading {
        margin-bottom: 1.5rem
    }

    .abt-point ul li {
        padding-inline: 10px
    }

    .abt-point ul li:first-child {
        padding-left: 0
    }

    .abt-point ul li:last-child {
        padding-right: 0
    }
}

@media (max-width:360px) {
    .abt-point ul li a {
        font-size: 12px
    }
}

.media-news .container {
    background: var(--color-white);
    padding-block: 6.5em;
    border-radius: 1.54em;
    -webkit-border-radius: 1.54em;
    -moz-border-radius: 1.54em;
    -ms-border-radius: 1.54em;
    -o-border-radius: 1.54em
}

.media-news .link-icon {
    filter: drop-shadow(2px 0 2px rgba(0, 0, 0, .3));
    -webkit-filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, .15))
}

.media-news .inner-container {
    display: grid;
    grid-template-columns: 38.8% 29% 29%;
    gap: 1.23em
}

.media-news .news-heading {
    display: flex;
    align-items: center;
    justify-content: center
}

.media-news .news-heading .heading {
    max-width: 21em;
    margin-block: auto
}

.media-news .news-thumb {
    position: relative;
    overflow: hidden
}

.media-news .news-thumb figure img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.media-news .news-thumb {
    color: var(--color-white)
}

.media-news .news-thumb a::before {
    content: '';
    position: absolute;
    inset: 0
}

.media-news .news-thumb:nth-child(2) {
    grid-column: 2/span 2;
    display: flex;
    flex-direction: row-reverse
}

.media-news .news-thumb:nth-child(2) .desc {
    background-color: var(--color-accent);
    width: 47%;
    padding: 2.5em;
    color: #fff;
    border-radius: .77em 0 0 .77em;
    -webkit-border-radius: .77em 0 0 .77em;
    -moz-border-radius: .77em 0 0 .77em;
    -ms-border-radius: .77em 0 0 .77em;
    -o-border-radius: .77em 0 0 .77em
}

.media-news .news-thumb:nth-child(2) figure {
    flex-grow: 1
}

.media-news .news-thumb:nth-child(2) h4 {
    margin-top: 1.15em
}

.media-news .news-thumb:nth-child(2) a:hover {
    color: var(--color-white)
}

.media-news :is(.news-thumb:nth-child(3), .news-thumb:nth-child(4)) {
    border-radius: 0 0 .77em .77em;
    -webkit-border-radius: 0 0 .77em .77em;
    -moz-border-radius: 0 0 .77em .77em;
    -ms-border-radius: 0 0 .77em .77em;
    -o-border-radius: 0 0 .77em .77em
}

.media-news :is(.news-thumb:nth-child(3), .news-thumb:nth-child(4)) figure {
    height: 100%
}

.media-news :is(.news-thumb:nth-child(3), .news-thumb:nth-child(4)) figure img {
    height: 100%;
    object-fit: cover
}

.media-news :is(.news-thumb:nth-child(3), .news-thumb:nth-child(4)) .desc {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to top, rgba(0, 0, 0, .7)3%, rgba(0, 0, 0, 0)40%);
    display: flex;
    align-items: flex-end;
    padding: 1em 1.2em;
    column-gap: 1.55em
}

.media-news :is(.news-thumb:nth-child(3), .news-thumb:nth-child(4)) time {
    font-size: var(--text-21);
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.8em;
    min-width: 2.8em;
    aspect-ratio: 1/1;
    background: var(--color-accent);
    border-radius: .5em;
    -webkit-border-radius: .5em;
    -moz-border-radius: .5em;
    -ms-border-radius: .5em;
    -o-border-radius: .5em
}

.media-news :is(.news-thumb:nth-child(3), .news-thumb:nth-child(4)) time span {
    font-size: var(--text-14)
}

.media-news :is(.news-thumb:nth-child(3), .news-thumb:nth-child(4)) time span:last-child {
    display: none
}

.media-news :is(.news-thumb:nth-child(3), .news-thumb:nth-child(4)) h4 {
    font-size: var(--text-16);
    font-weight: 300;
    margin-bottom: .7em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.media-news .news-thumb:nth-child(5) .desc {
    background: transparent linear-gradient(247deg, #231f27 0%, #382e43 100%) 0% 0% no-repeat padding-box;
    height: 100%;
    padding: 2.3em;
    border-radius: .77em;
    -webkit-border-radius: .77em;
    -moz-border-radius: .77em;
    -ms-border-radius: .77em;
    -o-border-radius: .77em
}

.media-news :is(.news-thumb:nth-child(5), .news-thumb:nth-child(2)) h4 {
    font-size: var(--text-21);
    font-weight: 400
}

.media-news :is(.news-thumb:nth-child(5), .news-thumb:nth-child(2)) time {
    font-size: var(--text-10)
}

.media-news .news-thumb:nth-child(5) time {
    position: relative;
    display: block;
    width: 100%
}

.media-news .news-thumb:nth-child(5) time::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: calc(100% - 8em);
    height: 1px;
    background: var(--color-white);
    opacity: .2
}

.media-news .news-thumb:nth-child(5) h4 {
    margin-top: 1.5em;
    font-weight: 300;
    padding-right: 2em
}

@media (max-width:1600px) {
    .media-news .news-thumb:nth-child(5) h4 {
        padding-right: 4em
    }
}

@media (max-width:1300px) {
    .media-news .news-thumb:nth-child(5) h4 {
        padding-right: 0
    }
}

@media (max-width:992px) {
    .media-news {
        padding-top: 3em;
        border-top: 2px solid #fff
    }

    .media-news .container {
        padding-block: 0 2em;
        background-color: transparent;
        position: relative
    }

    .media-news .container::before {
        content: '';
        position: absolute;
        inset: 0;
        top: auto;
        height: calc(100% - 8em);
        background-color: #fff;
        border-radius: .77em;
        -webkit-border-radius: .77em;
        -moz-border-radius: .77em;
        -ms-border-radius: .77em;
        -o-border-radius: .77em
    }

    .media-news .inner-container {
        grid-template-columns: 45% auto
    }

    .media-news .news-heading {
        grid-column: 1/span 2;
        margin-bottom: 4rem;
        margin-bottom: 3em
    }

    .media-news .news-heading .heading {
        max-width: 100%;
        text-align: center
    }

    .media-news .news-heading a {
        margin-inline: auto
    }

    .media-news .news-thumb:nth-child(2) {
        grid-column: 1/span 2
    }

    .media-news .news-thumb:last-child {
        display: none
    }
}

.product-range {
    background-color: #eee
}

@media (max-width:575px) {
    .media-news .news-thumb:nth-child(2) {
        grid-row: 3
    }

    .media-news .news-thumb:nth-child(2) figure {
        display: none
    }

    .media-news .inner-container {
        grid-template-columns: 100%;
        column-gap: 0
    }

    .media-news .news-thumb:nth-child(2) .desc {
        flex-grow: 1;
        border-radius: .77em;
        -webkit-border-radius: .77em;
        -moz-border-radius: .77em;
        -ms-border-radius: .77em;
        -o-border-radius: .77em
    }

    .media-news .news-thumb:nth-child(4) {
        display: none
    }

    .media-news .news-heading {
        margin-bottom: 2em
    }

    .media-news .news-thumb:nth-child(3) {
        border-radius: .77em;
        -webkit-border-radius: .77em;
        -moz-border-radius: .77em;
        -ms-border-radius: .77em;
        -o-border-radius: .77em
    }

    .media-news :is(.news-thumb:nth-child(5), .news-thumb:nth-child(2)) h4 {
        font-size: 1.8rem
    }

    .herobanner .banner-content {
        width: 100%
    }

    .herobanner .inner-container p {
        font-size: 2.4rem
    }

    .herobanner .inner-container span {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        display: block;
        font-weight: 700
    }

    header .navbar-brand {
        max-width: 140px
    }

    .new-arrivals {
        margin-left: 3rem;
        padding: 4.4em 4em .4em
    }
}

@media (max-width:370px) {
    .herobanner .banner-content {
        width: 100%;
        padding: 2.5em 0
    }
}

@media (max-width:345px) {
    .media-news .container::before {
        content: '';
        position: absolute;
        inset: 0;
        top: auto;
        height: calc(100% - 10em)
    }
}

@media screen and (min-width:2500px) {
    .herobanner picture img {
        height: 85rem;
        object-fit: cover
    }
}


.pcs-section{
    min-height:100vh;
    background:#F6EEE7;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px;
}

.pcs-container{
    width:min(1200px,95vw);
    min-height:520px;
    display:grid;
    grid-template-columns:45% 55%;
    align-items:center;
    position:relative;
}

/* LEFT */

.pcs-left h1{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(42px,5vw,65px);
    line-height:1.05;
    color:#7B4616;
    font-weight:400;
    max-width:650px;
}

.subtitle{
    margin-top:20px;
    font-size:clamp(16px,1.3vw,18px);
    line-height:1.4;
}


 .pcs-right{
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
    width:100%;
}
.pcs-cards{
    position:relative;
    width:min(100%,750px);
    height:420px;
    margin:auto;
    overflow:hidden; /* IMPORTANT */
}
.pcs-card{
    position:absolute;
    left:50%;
    top:50%;

    width:clamp(220px,32vw,500px);
    aspect-ratio:1.7;

    border-radius:14px;
    overflow:hidden;
    cursor:pointer;

    transition:.7s cubic-bezier(.22,1,.36,1);

    box-shadow:0 20px 40px rgba(0,0,0,.18);
}

.pcs-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.pcs-card {
    position: absolute;
    overflow: hidden;
}

/* Overlay */
.pcs-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 1;
    border-radius: inherit; /* optional */
}

/* Explore button */
.pcs-explore-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.9);

    padding: 10px 18px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;

    opacity: 0;
    pointer-events: none;
    transition: all .3s ease;
    z-index: 2;
}

/* Show overlay and button only on active card hover */
.pcs-card.center:hover::before {
    opacity: 1;
}

.pcs-card.center:hover .pcs-explore-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.pcs-cards-shadow{
    position:absolute;
    width:min(450px,60%);
    height:70px;
    left:50%;
    bottom:15%;
    transform:translateX(-50%);
    background:rgba(183,145,108,.25);
    filter:blur(35px);
    border-radius:50%;
}

/* BOTTOM BAR */

.pcs-bottom-bar{
    position:absolute;
    left:0;
    right:0;
    bottom:20px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.pcs-categories{
    display:flex;
    flex-wrap:wrap;
}

.pcs-category{
    background:none;
    border:none;
    cursor:pointer;
    text-align:left;
    padding:0 25px;
    font-size:15px;
    position:relative;
}

.pcs-category:first-child{
    padding-left:0;
}

.pcs-category:not(:last-child)::after{
    content:"";
    position:absolute;
    right:0;
    top:0;
    width:1px;
    height:42px;
    background:#d5c3b0;
}

.pcs-category.active{
    color:#c45f38;
}

.pcs-ornament{
    width:45%;
    margin-right:-55px;
}

/* TABLET */

@media(max-width:1200px){

.pcs-container{
    grid-template-columns:1fr 1fr;
}

.pcs-category{
    font-size:14px;
    padding:0 18px;
}


}

/* MOBILE */

@media(max-width:991px){

.pcs-section{
    padding:50px 20px;
}

.pcs-container{
    display:flex;
    flex-direction:column;
    min-height:auto;
}

.pcs-left{
    text-align:center;
}

.pcs-left h1{
    max-width:100%;
}

.pcs-right{
    width:100%;
}

.pcs-cards{
    width:100%;
    max-width:420px;
    height:280px;
}

.pcs-card{
    width:260px;
}

.pcs-bottom-bar{
        position: relative;
        margin-top: 25px;
        bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .pcs-categories{
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 12px;
    }

    .pcs-category{
        padding: 0 12px;
        font-size: 13px;
        text-align: center;
        white-space: nowrap;
    }

    

    .pcs-ornament{
        width: 100%;
        margin: 0;
    }
}
@media(max-width:480px){

    .pcs-left h1{
        font-size:42px;
    }

    .pcs-cards{
        height:240px;
    }

    .pcs-card{
        width:260px;
    }

    .pcs-categories{
        gap: 10px;
    }

    .pcs-category{
        font-size: 12px;
        padding: 0 8px;
    }

    

    .pcs-explore-btn{
        font-size:10px;
        padding:8px 8px;
    }

}