    .select-with-arrow {
  position: relative;
  display: inline-block;
  width: 90%;
}

.select-with-arrow select {
  width: 100%;
  padding: 10px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  font-size: 16px;
  cursor: pointer;
}

/* Down arrow */
.select-with-arrow::after {
  content: '▼';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 14px;
  color: #555;
}

/* Optional: hide arrow on focus (if you want) */
.select-with-arrow select:focus + ::after {
  content: '';
}

.hero__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 600px;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* ULTRA-AGGRESSIVE Hero White Space Removal */
.hero, section.hero {
    margin: 0 !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.hero__image, .hero__image * {
    margin: 0 !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.hero *, .hero *::before, .hero *::after {
    margin: 0 !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

picture, picture * {
    margin: 0 !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

source {
    margin: 0 !important;
    padding: 0 !important;
}

img {
    vertical-align: top !important;
    display: block !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.hero__items, .hero__items * {
    margin: 0 !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.offer-banner {
    margin: 0 !important;
    padding: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.hero + .offer-banner {
    margin-top: 0 !important;
    padding-top: 0 !important;
    margin: 0 !important;
}

.hero + * {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

@media (max-width: 768px) {
    .hero__image img {
        max-height: 400px;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .hero {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .hero__image {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    /* Force remove any white space after hero */
    section.hero {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .hero + * {
        margin-top: 0 !important;
    }
    
    /* Remove any spacing from the hero image container */
    .hero__image {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .hero__image * {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .offer-banner {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding: 15px 0;
    }
    
    /* Remove any white space or lines after header */
    .header {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        border-bottom: none !important;
    }
    
    .header::after {
        display: none !important;
    }
    
    /* Ensure no spacing between header and content */
    .header + * {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}

.offer-banner {
    background-color: #000;
    color: #fff;
    padding: 25px 0;
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.offer-banner p {
    line-height: 1;
    color: white;
    white-space: nowrap;
    display: inline-block;
    padding-left: 100%;
    font-size: 1rem;
    font-weight: 500;
    animation: scroll-left 12s linear infinite;
}

@keyframes scroll-left {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

.categories-section {
    padding: 50px 0;
    background: linear-gradient(180deg, #fff, #f9f9f9);
}

.categories-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
}

.categories-wrapper-mobile {
    display: none;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0 20px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.categories-wrapper-mobile::-webkit-scrollbar {
    display: none;
}

.category-item {
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border-radius: 12px;
    transition: transform 0.3s ease-in-out;
    flex: 0 0 auto;
}

.category-item:hover {
    transform: scale(1.06);
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.category-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #8A0707;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-in-out;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-name {
    margin-top: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #8A0707;
    text-align: center;
    white-space: normal;
}

.explore-all .category-image {
    border: 2px dashed #8A0707;
}

.explore-all:hover .category-image {
    border-color: #A50909;
    background-color: #f8f8f8;
}

.explore-all .category-name {
    color: #A50909;
}

/* Mobile */
@media (max-width: 768px) {
    .categories-wrapper {
        display: none;
    }
    .categories-wrapper-mobile {
        display: flex;
        gap: 15px;
        padding-left: 10px;
    }
    .category-image {
        width: 70px;
        height: 70px;
        border-width: 2px;
    }
    .category-name {
        font-size: 0.8rem;
        margin-top: 6px;
    }
    
    .offer-banner {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding: 15px 0;
    }
}

/* Product Card Styling */
.product-card {
    background: #8A0707;
    color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    width: 280px;
    padding-bottom: 12px;
    text-align: center;
    margin-right: 15px;
    flex: 0 0 auto;
    position: relative;
}

.product-card:hover {
    transform: scale(1.05);
    z-index: 10;
}

.image-container {
    position: relative;
    width: 100%;
    height: 350px;
    background: white;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.product-img {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.33, 0.66, 0.66, 1);
}

.primary {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 1;
}

.secondary {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    z-index: 2;
}

.product-card:hover .primary {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
}

.product-card:hover .secondary {
    opacity: 1;
    visibility: visible;
    transform: scale(1.05);
}

.card-body {
    padding: 15px;
}

.card-title {
    font-size: 1rem;
    font-weight: bold;
    color: black;
    margin-bottom: 5px;
}

.product-card select {
    width: 100%;
    padding: 6px;
    margin-top: 10px;
    border-radius: 6px;
    border: 2px solid white;
    background: white;
    color: black;
    font-size: 0.85rem;
    cursor: pointer;
}

.product-card .btn {
    width: 100%;
    color: white;
    font-weight: bold;
    border: 2px solid white;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.85rem;
    background: #8A0707;
    margin-top: 10px;
    transition: 0.3s ease;
    cursor: pointer;
}

.product-card .btn:hover {
    background: white;
    color: #8A0707;
}

.product-card .btn.added {
    background: white;
    color: #8A0707;
}

/* Ribbon Label Styling */
.ribbon-label {
    position: absolute;
    top: 10px;
    left: -40px;
    background: #FFD700;
    color: #8A0707;
    font-weight: bold;
    font-size: 0.75rem;
    padding: 4px 40px;
    transform: rotate(-45deg);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

/* Popup Styling */
#popup {
    position: fixed;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #8A0707;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    z-index: 9999;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: bottom 0.4s ease, opacity 0.4s ease;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
}

#popup.show {
    bottom: 20px;
    opacity: 1;
}

#popup .go-to-cart-btn {
    background-color: #fff;
    color: #8A0707;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    text-decoration: none;
    font-weight: 600;
}

.best-seller-heading {
    font-size: 2.25rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #8A0707;
    position: relative;
    padding-bottom: 12px;
    margin: 0 auto 30px;
    width: fit-content;
    text-align: center;
}

.best-seller-heading::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #8A0707;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    border-radius: 2px;
    transition: width 0.3s ease-in-out;
}

.best-seller-heading:hover::after {
    width: 80px;
}

.product-card:hover {
    box-shadow: 0 8px 20px rgba(138, 7, 7, 0.4);
    background: #750606;
}


.products-scroll-container {
    display: flex;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    margin: 0 -15px;
}

.products-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.products-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.products-scroll-container::-webkit-scrollbar-thumb {
    background: #8A0707;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .product-card {
        width: 240px;
    }

    .best-seller-heading {
        font-size: 2rem;
    }
}

.see-all-btn {
    display: inline-block;
    padding: 10px 24px;
    background-color: #E1306C;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.see-all-btn:hover {
    background-color: #c3205a;
}

.latest.spad {
    padding-bottom: 80px;
}

.reviews-carousel {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    background: #f8f9fa;
    position: relative;
}

.carousel-container {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollReviews 45s linear infinite;
}

@keyframes scrollReviews {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.review-card {
    flex: 0 0 auto;
    width: 280px;
    min-height: 380px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.12);
}

.review-image {
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.review-content {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    white-space: normal;
    overflow: hidden;
}

.review-date {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 8px;
}

.review-date img {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

.review-title {
    font-size: 16px;
    font-weight: 600;
    margin: 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 44px;
}

.instagram {
    font-size: 13px;
    color: #E1306C;
    font-weight: 500;
    margin: 8px 0;
}

.instagram i {
    margin-right: 5px;
}

.rating {
    margin-top: auto;
    padding-top: 10px;
}

.rating i {
    font-size: 16px;
    color: #FFD700;
    margin: 0 1px;
}

@media (max-width: 768px) {
    .review-card {
        width: 240px;
        min-height: 360px;
    }

    .review-image {
        height: 140px;
    }

    .review-title {
        font-size: 15px;
    }
}
.vertical-badge {
    position: fixed;
    top: 40%;
    left: 0;
    transform: translateY(-50%);
    background: #8A0707;
    color: #fff;
    padding: 12px 10px;
    font-size: 14px;
    font-weight: 800;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-align: center;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    cursor: pointer;
    z-index: 1000;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.3);
  }
  
  .vertical-badge:hover {
    background: #c62828;
    transform: translateY(-50%) translateX(5px);
  }
  
  .vertical-badge::after {
    content: "Click to Copy";
    font-size: 10px;
    color: #fff;
    writing-mode: vertical-rl;
    opacity: 0;
    display: block;
    margin-top: 10px;
    transition: opacity 0.3s ease;
  }
  
  .vertical-badge:hover::after {
    opacity: 1;
  }
  /* Spotify Popup Styles */
.spotify-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.4s ease;
}

.spotify-modal-content {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 14px;
  max-width: 360px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  animation: slideUp 0.5s ease;
}

.spotify-modal-content h2 {
  font-size: 25px;
  margin-bottom: 10px;
  color: #111;
}

.spotify-modal-content p {
  color: #444;
  margin-bottom: 20px;
}

.spotify-modal-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.spotify-btn-cancel,
.spotify-btn-go {
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
}

.spotify-btn-cancel {
  background: #f1f1f1;
  color: #555;
}

.spotify-btn-go {
  background: #1DB954;
  color: white;
  transition: background 0.3s;
}

.spotify-btn-go:hover {
  background: #17a94d;
}

/* Animations */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

