 .bsp-section {
     background: #fff;
     padding: 60px 0 80px;

     overflow: hidden;
 }

 /* ── Header ── */
 .bsp-header {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 36px;
     padding: 0 24px;
     justify-content: center;
 }

 .bsp-title {

     font-weight: 600;
     font-size: 42px;
     color: #111;
     line-height: 40px;
     text-transform: uppercase;
     margin: 0;
 }

 .bsp-title-arrow {
     font-size: clamp(1.4rem, 4vw, 2.4rem);
     color: #111;
     line-height: 1;
     text-decoration: none;
     transition: transform 0.3s;
     display: inline-block;
 }

 .bsp-title-arrow:hover {
     transform: translate(4px, -4px);
     color: #111;
 }

 /* ── Tabs ── */
 .bsp-tabs {
     display: flex;
     gap: 0;
     padding: 0 24px;
     margin-bottom: 40px;
     overflow-x: auto;
     scrollbar-width: none;
     justify-content: center;
 }

 .bsp-tabs::-webkit-scrollbar {
     display: none;
 }

 .bsp-tab {
     color: #888;
     background: none;
     border: none;
     padding: 10px 28px 14px;
     position: relative;
     white-space: nowrap;
     transition: color 0.25s;
     letter-spacing: 0.01em;

     font-size: 24px;
     line-height: 100%;
     font-weight: 600;
 }

 .bsp-tab::after {
     content: '';
     position: absolute;
     bottom: -1.5px;
     left: 0;
     right: 0;
     height: 2.5px;
     background: #5b3ef5;
     transform: scaleX(0);
     transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
 }

 .bsp-tab.active {
     color: #5b3ef5;

     font-size: 24px;
     line-height: 100%;
     font-weight: 600;
 }

 .bsp-tab.active::after {
     transform: scaleX(1);
 }

 /* ── Carousel wrapper ── */
 .bsp-carousel-outer {
     position: relative;
     padding: 0 0px;
 }

 .bsp-carousel-track {
     display: flex;
     gap: 18px;
     overflow-x: auto;
     scroll-snap-type: x mandatory;
     -webkit-overflow-scrolling: touch;
     scrollbar-width: none;
     padding-bottom: 4px;
     transition: scroll 0.4s;
 }

 .bsp-carousel-track::-webkit-scrollbar {
     display: none;
 }

 .bsp-carousel-track {
     transition: opacity 0.3s ease, transform 0.3s ease;
 }

 /* ── Product Card ── */
 .bsp-card {
     flex: 0 0 260px;
     scroll-snap-align: start;
     background: #fff;
     border-radius: 12px;
     overflow: hidden;
     border: 1px solid #ede9e0;
     transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
         box-shadow 0.35s cubic-bezier(0.25, 1, 0.5, 1);

     /* scroll reveal */
     opacity: 0;
     transform: translateY(50px);
 }

 .bsp-card.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .bsp-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
 }

 /* staggered delays */
 .bsp-card:nth-child(1) {
     transition-delay: 0s;
 }

 .bsp-card:nth-child(2) {
     transition-delay: 0.08s;
 }

 .bsp-card:nth-child(3) {
     transition-delay: 0.16s;
 }

 .bsp-card:nth-child(4) {
     transition-delay: 0.24s;
 }

 .bsp-card:nth-child(5) {
     transition-delay: 0.32s;
 }

 .bsp-card-img-wrap {
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
     position: relative;
 }

 .bsp-card-img-link {
     display: block;
     text-decoration: none;
     color: inherit;
 }

 .bsp-card-img-wrap img {
     width: 100%;
     height: 100%;
     object-fit: contain;
     object-position: center;
     transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
 }

 .bsp-card:hover .bsp-card-img-wrap img {
     transform: scale(1.07);
 }

 .bsp-card-body {
     padding: 16px 18px 18px;
 }

 .bsp-card-cat {
     font-size: 10px;
     font-weight: 400;
     color: #aaa;
     letter-spacing: 0%;
     margin-bottom: 4px;
 }

 .bsp-card-info {
     display: flex;
     align-items: flex-end;
     justify-content: space-between;
     margin-bottom: 14px;
     gap: 8px;
 }

 .bsp-card-name {
     font-size: 14px;
     font-weight: 400;
     letter-spacing: 0%;
     color: #111;
     line-height: 1.35;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
     text-overflow: ellipsis;
     min-height: 37.8px;
     word-break: break-word;
 }

 .bsp-card-price {

     font-weight: 700;
     font-size: 1.5rem;
     color: #111;
     white-space: nowrap;
 }

 .bsp-card-actions {
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .bsp-btn-buy {
     background: #002AC4;
     color: #fff;
     border: none;
     border-radius: 40px;
     font-size: 9.91px;
     font-weight: 500;
     padding: 9px 20px;
     max-width: 124px;
     height: 43.88px;
     cursor: pointer;
     letter-spacing: 0.02em;
     transition: background 0.25s, transform 0.2s;
     flex: 1;
 }

 .bsp-btn-buy:hover {
     background: #4a2fe0;
     transform: scale(1.02);
 }

 .bsp-icon-btn {
     width: 43.88px;
     height: 43.88px;
     border-radius: 50%;
     border: 1.5px solid #e0ddd6;
     background: #fff;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: border-color 0.25s, background 0.25s;
     flex-shrink: 0;
 }

 .bsp-icon-btn:hover {
     border-color: #5b3ef5;
     background: #f0ecff;
 }

 .bsp-icon-btn svg {
     width: 16px;
     height: 16px;
     stroke: #555;
     fill: none;
     stroke-width: 1.8;
     transition: stroke 0.25s;
 }

 .bsp-icon-btn:hover svg {
     stroke: #5b3ef5;
 }

 /* ── Nav arrows ── */
 .bsp-nav {
     display: flex;
     justify-content: center;
     gap: 12px;
     margin-top: 40px;
 }

 .bsp-nav-btn {
     width: 52px;
     height: 52px;
     border-radius: 4px;
     border: 1.5px solid #ccc;
     background: #fff;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: background 0.25s, border-color 0.25s;
 }

 .bsp-nav-btn.next {
     background: #111;
     border-color: #111;
 }

 .bsp-nav-btn svg {
     width: 18px;
     height: 18px;
     stroke: #555;
     fill: none;
     stroke-width: 2;
 }

 .bsp-nav-btn.next svg {
     stroke: #fff;
 }

 .bsp-nav-btn:hover:not(.next) {
     border-color: #5b3ef5;
     background: #f0ecff;
 }

 .bsp-nav-btn:hover:not(.prev) {
     border-color: #5b3ef5;
     background: #f0ecff;
 }


 .bsp-nav-btn:hover:not(.next) svg {
     stroke: #fff;
 }

 .bsp-nav-btn:hover:not(.prev) svg {
     stroke: #fff;
 }

 .bsp-nav-btn.next:hover {
     background: #5b3ef5;
     border-color: #5b3ef5;
 }

 .bsp-nav-btn.prev:hover {
     background: #5b3ef5;
     border-color: #5b3ef5;
 }

 /* ── Responsive ── */
 @media (max-width: 575.98px) {
     .bsp-card {
         flex: 0 0 330px !important;
     }

     .bsp-card-img-wrap {
         height: 170px;
     }

     .bsp-tab {
         padding: 10px 6px 14px;
         font-size: 10px;
     }

     .bsp-tab.active {
         font-size: 10px;
     }

     .bsp-title { 
         font-size: 32px; 
     }
 }
