 #duffel-collections {
     background-color: #1a1a1a; 
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 60px 20px;
     
 }

 .duffel-wrapper {
     width: 100%;
     max-width: 1400px;
     margin: 0 auto;
 }

 /* ── HEADING ── */
 .duffel-heading { 
     font-size: clamp(2.2rem, 5vw, 3.6rem);
     letter-spacing: 0.08em;
     color: #d4f542;
     display: inline-flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 40px;
 }

 .duffel-heading .arrow-icon {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 44px;
     height: 44px;
     border: 2.5px solid #d4f542;
     border-radius: 50%;
     font-size: 1.1rem;
     transform: rotate(-40deg);
     transition: transform 0.3s ease;
 }

 .duffel-heading:hover .arrow-icon {
     transform: rotate(0deg);
 }

 /* ── SWIPER CONTAINER ── */
 .swiper {
     width: 100%;
     padding-bottom: 60px !important;
 }

 .swiper-slide {
     height: auto;
 }

 /* ── PRODUCT CARD ── */
 .product-card {
     background: #ffffff;
     border-radius: 16px;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     height: 100%;
     transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
         box-shadow 0.35s ease;
 }

 .product-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 24px 60px rgba(212, 245, 66, 0.18);
 }

 /* ── CARD IMAGE AREA ── */
 .card-img-wrap {
     position: relative;
     width: 100%;
     aspect-ratio: 4/3;
     overflow: hidden;
     background: #f0ede8;
 }

 .card-img-wrap img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

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

 .card-badge {
     position: absolute;
     top: 12px;
     left: 12px;
     background: #1a1a1a;
     color: #d4f542;
     font-size: 0.65rem;
     font-weight: 600;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     padding: 4px 10px;
     border-radius: 20px;
 }

 /* ── CARD BODY ── */
 .card-info {
     padding: 16px 18px 18px;
     display: flex;
     flex-direction: column;
     flex: 1;
     gap: 12px;
 }

 .card-category {
     font-size: 10px;
     font-weight: 400;
     margin-bottom: 10px;
     color: #9e9e9e;
     text-transform: uppercase;
     line-height: 100%; 
 }
 

 .card-name {
     font-size: 14px;
     font-weight: 400;
     color: #1a1a1a; 
     line-height: 1.4;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
     min-height: 39.2px;
     word-break: break-word;
 }

 .card-footer-row {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 10px;
     margin-top: auto;
 }

 .card-footer-row form {
     display: flex;
     margin: 0;
     line-height: 0;
     flex: 0 0 auto;
 }

 .card-footer-row form:first-child {
     flex: 1 1 124px;
     min-width: 104px;
     max-width: 124px;
 }

 .card-price {
     font-size: 15.79px;
     font-weight: 700;
     color: #1a1a1a;
     letter-spacing: -0.02em;
 }

 
 .color-green h2{
    color: #FBFF0D;
 }
 .color-green a{
    color: #FBFF0D;
 }

 .btn-wishlist {
     width: 43.88px;
     height: 43.88px;
     border-radius: 50%; 
     background: transparent;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: border-color 0.25s, background 0.25s;
     flex-shrink: 0;
 }

 .btn-wishlist:hover {
     border-color: #e84545;
     background: #fff0f0;
 }

 .btn-wishlist svg {
     width: 16px;
     height: 16px;
     fill: none;
     stroke: #888;
     stroke-width: 2;
     transition: stroke 0.25s;
 }

 .btn-wishlist i {
     font-size: 16px;
     color: #888;
     line-height: 1;
 }

 .btn-wishlist:hover svg {
     stroke: #e84545;
  }

 .btn-wishlist:hover i {
     color: #e84545;
 }

 /* ── SWIPER NAVIGATION ── */
 .swiper-nav-wrapper {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 12px;
     margin-top: 8px;
 }

 .swiper-button-prev-custom,
 .swiper-button-next-custom {
     width: 44px;
     height: 44px;
     border-radius: 0%;
     border: 2px solid #444;
     background: transparent;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     color: #ccc;
     transition: border-color 0.25s, background 0.25s, color 0.25s;
 }

 .swiper-button-prev-custom:hover,
 .swiper-button-next-custom:hover {
     border-color: #d4f542;
     background: #d4f542;
     color: #1a1a1a;
 }

 .swiper-button-prev-custom svg,
 .swiper-button-next-custom svg {
     width: 18px;
     height: 18px;
 }

 /* Hide default Swiper nav arrows */
 .swiper-button-next::after,
 .swiper-button-prev::after {
     display: none;
 }

 /* ── PAGINATION ── */
 .swiper-pagination-bullet {
     background: #555 !important;
     opacity: 1 !important;
     width: 8px !important;
     height: 8px !important;
     transition: background 0.3s, width 0.3s;
 }

 .swiper-pagination-bullet-active {
     background: #d4f542 !important;
     width: 24px !important;
     border-radius: 4px !important;
 }
 .card-footer-row .btn-buy{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    background: #002AC4;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-size: 9.91px;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 7px 0;
    cursor: pointer;
    max-width: 124px;
    width: 100%;
    height: 43.88px;
    transition: background 0.25s, transform 0.2s;
 }
 .card-footer-row .btn-buy:hover{
    background: #002AC4;
    color: #fff;
    transform: scale(1.04);
 }
 .d-flex-box > div{
    text-align: left;
 }

 /* ── RESPONSIVE TWEAKS ── */
 @media (max-width: 576px) {
     .card-info {
         padding: 12px 14px 14px;
     }

     .btn-buy {
         padding: 7px 14px;
         font-size: 0.75rem;
     }
      .swiper { 
     padding-bottom: 15px !important;
 }
 }
