

.core-banner-section {
    position: relative;
    width: 100%;
    min-height: 90vh;
    overflow: hidden;
    background: #000;
}

/* Image */
.core-banner-image {
    position: absolute;
    inset: 0;
}

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

/* Dark Overlay */
.core-banner-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.45) 0%,
            rgba(0,0,0,0.20) 40%,
            rgba(0,0,0,0.10) 100%
        );
    z-index: 1;
}

/* Content */
.core-banner-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 80px;
    z-index: 2;

    max-width: 1400px;
    margin: 0 auto;
    /* padding: 0 80px; */

    display: flex;
    /* align-items: flex-end; */
    justify-content: space-between;
    /* gap: 80px; */
}

/* Left Title */
.core-banner-title {
    flex: 0 0 260px;
}

.core-banner-title h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(3rem, 6vw, 3.5rem);
    line-height: 0.95;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Right Text */
.core-banner-text {
    /* max-width: 750px; */
}

.core-banner-text p {
    margin: 0;
    color: #fff;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .core-banner-content {
        padding: 0 40px;
        gap: 40px;
        bottom: 60px;
    }

    .core-banner-title {
        flex: 0 0 180px;
    }

    .core-banner-text p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .core-banner-section {
        min-height: 70vh;
    }

    .core-banner-content {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 40px;

        flex-direction: column;
        align-items: flex-start;
        gap: 24px;

        padding: 0 20px;
    }

    .core-banner-title {
        flex: unset;
    }

    .core-banner-title h1 {
        font-size: 3rem;
    }

    .core-banner-text {
        max-width: 100%;
    }

    .core-banner-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

  .stone-slider-section {
    padding: 120px 80px;
    background: #fff;
    overflow: hidden;
  }

.stone-swiper-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.stoneSwiper {
    width: 100%;
    overflow: hidden;
    padding: 40px 0 !important;
}

.stoneSwiper .swiper-wrapper {
    align-items: center;
}

.stoneSwiper .swiper-slide {
    /* width: 600px !important; */
    height: 360px;
    transition: all 0.6s ease;
    transform: scale(0.82);
    opacity: 0.6;
}

.stoneSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stoneSwiper .swiper-slide-active {
    transform: scale(1.3);
    opacity: 1;
    z-index: 5;
}

.stoneSwiper .swiper-slide-prev,
.stoneSwiper .swiper-slide-next {
    transform: scale(1.1);
    opacity: 0.85;
    /* width:360px !important; */
    height:260px !important;
}

.csr-slide-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.csr-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

  /* ── static bottom text ── */
  .stone-info {
    text-align: center;
    padding-top: 28px;
  }

  .stone-info h3 {

    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
  }

  .stone-info p {
    font-size: 16px;
    color: #201e1e;
    max-width: 600px;
    margin: 0 auto 16px;
    /* line-height: 1.65; */
    font-weight: 500;
  }

  .stone-info .stone-cat {
 font-size: 14px;
    letter-spacing: 5px;
    color: #0f0e0e;
    text-transform: uppercase;
    display: block;
  }
  
.stoneSwiper{
    overflow:visible !important;
}

  /* ── Mobile ── */
  @media(max-width:768px){
    .stone-slider-section{
        padding: 80px 0px;
    }
  }
  @media (max-width: 576px) {
    /* .stoneSwiper .swiper-slide { width: 260px; height: 220px; } */
    .stone-info h3 { font-size: 19px; }
    .stone-info p  { font-size: 13px; padding: 0 16px; }
  }
  /* @media (max-width: 576px) {
    .stoneSwiper .swiper-slide {
        width: 240px;
        height: 220px;
    } */
  /* Navigation */
.stone-nav{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin-top:40px;
}

.stone-prev,
.stone-next{
    width:55px;
    height:55px;
    border:1px solid #d9d9d9;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:all .3s ease;
    background:#fff;
}

.stone-prev i,
.stone-next i{
    font-size:16px;
    color:#000;
}

.stone-prev:hover,
.stone-next:hover{
    background:#eb252e;
    border-color:#eb252e;
}

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

@media(max-width:768px){
    .stone-nav{
        margin-top:25px;
        gap:15px;
    }

    .stone-prev,
    .stone-next{
        width:45px;
        height:45px;
    }
.stoneSwiper .swiper-slide{
  height:fit-content!important;
}
