 #featured-section {
     background: #fff;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     
 }

 .fs-wrap {
     width: 100%;
     max-width: 1320px;
     padding: 0 40px;
 }

 /* SWIPER */
 .featuredSwiper {
     width: 100%;
     overflow: hidden;
     padding: 20px 20px 0px 20px !important;

 }

 .swiper-slide {
     height: auto;
 }

 /* SLIDE CARD — 3-col grid */
 .slide-card {
     display: grid;
     grid-template-columns: 420px 1fr 330px;
     align-items: center;
     justify-items: center;
     min-height: 520px;
     position: relative;
     background: #fff;
 }

 /* ── LEFT ── */
 .s-left {
     padding: 0 0 64px 0;
     z-index: 3;
 }

 .s-label {
     font-size: 1.72rem;
     color: #888;
     font-weight: 500;
     letter-spacing: 0.04em;
     margin-bottom: 4px;
 }

 .s-title {
     font-size: 5.2rem;
     font-weight: 900;
     color: #111;
     text-transform: uppercase;
     letter-spacing: -0.02em;
     line-height: 1;
     margin-bottom: 28px;
 }

 .s-name {
     font-size: 2.05rem;
     font-weight: 700;
     color: #111;
     line-height: 1.45;
     margin-bottom: 20px;
 }

 .s-price {
     font-size: 2.4rem;
     font-weight: 800;
     color: #111;
     letter-spacing: -0.04em;
     margin-bottom: 26px;
 }

 .s-actions {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .s-actions form {
     display: flex;
     margin: 0;
     line-height: 0;
     flex: 0 0 auto;
 }

 .s-actions form:first-child {
     flex: 1 1 170px;
     min-width: 150px;
     max-width: 170px;
 }

.s-actions .btn-buy { 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    background: #002AC4;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    max-width: 170px;
    width: 100%;
    height: 60px;
    font-size: 14px;
    transition: background 0.25s, transform 0.2s;
}

.s-actions .btn-buy:hover {
    background: #002AC4;
    color: #fff;
    transform: scale(1.04);
}

 .btn-circ {
     width: 44px;
     height: 44px;
     border-radius: 50%;
     border: 1.8px solid #c0bdb8;
     background: #fff;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     flex-shrink: 0;
     transition: border-color 0.2s, background 0.2s;
 }

 .btn-circ:hover {
     border-color: #002AC4;
     background: #ede9ff;
 }

 .btn-circ svg {
     width: 16px;
     height: 16px;
     fill: none;
     stroke: #444;
     stroke-width: 1.8;
     stroke-linecap: round;
     stroke-linejoin: round;
     transition: stroke 0.2s;
 }

 .btn-circ:hover svg {
     stroke: #002AC4;
 }

 .btn-wish.active svg {
     fill: #e84545;
     stroke: #e84545;
 }

 /* ── CENTER IMAGE ── */
 .s-center {
     position: relative;
     display: flex;
     align-items: flex-end;
     justify-content: center;
     z-index: 2;
     min-height: 520px;
 }

 .circle-bg {
     position: absolute;
     width: 390px;
     height: 390px;
     background: #d4d0c8;
     border-radius: 50%;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -52%);
     z-index: 0;
 }

 .s-center img {
     position: relative;
     z-index: 1;
     width: 400px;
     height: 660px;
     object-fit: cover;
     object-position: top center;
     display: block;
 }

 /* ── RIGHT SPECS ── */
 .s-right {
     padding: 0 0 64px 36px;
     display: flex;
     flex-direction: column;
     gap: 24px;
     z-index: 3;
 }

 .spec-lbl {
     font-size: 1.68rem;
     color: #999;
     font-weight: 500;
     letter-spacing: 0.05em;
     margin-bottom: 3px;
 }

 .spec-val {
     font-size: 2.05rem;
     font-weight: 700;
     color: #111;
     line-height: 1.25;
 }

 /* ── NAV — absolute inside slide-card ── */
 .slide-nav {
     position: absolute;
     bottom: 0px;
     right: 0px;
     display: flex;
     z-index: 10;
 }

 .fd-prev,
 .fd-next {
     width: 100px;
     height: 100px;
     border: none;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: background 0.2s;
 }

 .fd-prev {
     background: #888;
 }

 .fd-next {
     background: #111;
 }

 .fd-prev:hover {
     background: #666;
 }

 .fd-next:hover {
     background: #333;
 }

 .fd-prev svg,
 .fd-next svg {
     width: 50px;
     height: 50px;
     stroke: #fff;
     fill: none;
     stroke-width: 2.2;
     stroke-linecap: round;
     stroke-linejoin: round;
 }

 /* ── RESPONSIVE ── */
 @media (max-width: 880px) {
     .slide-card {
         grid-template-columns: 1fr 1fr;
         grid-template-rows: auto auto;
         min-height: unset;
     }

     .s-center {
         grid-column: 1 / 3;
         grid-row: 1;
         min-height: 300px;
     }

     .circle-bg {
         width: 260px;
         height: 260px;
     }

     .s-center img {
         width: 200px;
         height: 320px;
     }

     .s-left {
         grid-column: 1;
         grid-row: 2;
         padding: 24px 12px 28px 0;
     }

     .s-right {
         grid-column: 2;
         grid-row: 2;
         padding: 24px 0 28px 16px;
     }
 }

 @media (max-width: 560px) {
     .fs-wrap {
         padding: 0 18px;
     }

     .slide-card {
         grid-template-columns: 1fr;
         grid-template-rows: auto auto auto;
     }

     .s-center {
         grid-column: 1;
         grid-row: 1;
         min-height: 260px;
     }

     .s-center img {
         width: 100%;
         height: 100%;

     }

     .circle-bg {
         width: 100%;
         height: 100%;
     }

     .s-left {
         grid-column: 1;
         grid-row: 2;
         padding: 20px 0 10px;
         width: 100%;
     }

     .s-title {
         font-size: 2.4rem;
     }

     .s-right {
         grid-column: 1;
         grid-row: 3;
         padding: 10px 0 28px;
         display: grid;
         grid-template-columns: 1fr 1fr;
         gap: 16px;
         margin-bottom: 90px;
     }
 }
