@font-face { font-family: 'Narnoor'; src: url('/core/static/fonts/Aptos.ttf') format('truetype'); font-weight: normal; font-style: normal; }
@font-face { font-family: 'Narnoor'; src: url('/core/static/fonts/Aptos-ExtraBold.ttf') format('truetype'); font-weight: bold; font-style: normal; }
@font-face { font-family: 'Narnoor'; src: url('/core/static/fonts/Aptos-ExtraBold.ttf') format('truetype'); font-weight: 800; font-style: normal; }
@font-face { font-family: 'Narnoor'; src: url('/core/static/fonts/Aptos-Bold.ttf') format('truetype'); font-weight: 500; font-style: normal; }
@font-face { font-family: 'Narnoor'; src: url('/core/static/fonts/Aptos-SemiBold.ttf') format('truetype'); font-weight: 600; font-style: normal; }


.promo-banner {
    width: 100%;
    max-height: 50vh;
    object-fit: fill;
    background-color: #fff;
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 2px;
    overflow: hidden;
  }
  .promo-banner img {
    max-width: 100%;
    height: auto;
  }
  .promo-placeholder {
    font-size: 1.25rem;
    color: #333;
  }

  .carousel-container { 
    position: relative; 
    width: 93vw;
    justify-self: center;
    height: 500px; 
    overflow: hidden; 
    margin: 20px auto; 
  }
  .hero-slide img, .promo-slide img, .trend-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  
  /* === Collections Section === */
  .collections-static {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    width: 70vw;
    margin: 2rem auto;
  }
  
  .collection-card {
    position: relative;
    display: block;
    text-decoration: none;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1 / 1;
  }
  
  .image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
  }
  
  .collection-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 8px rgba(0,0,0,0.5);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  
  .collection-card:hover img {
    filter: blur(3px);
  }
  
  .collection-card:hover .collection-name {
    opacity: 1;
  }

  /* PROMO GRID */
  .promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 2em 4em;
    background: #fff;
  }
  
  .promo-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 70vh;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: flex-end;
  }
  
  /* purple gradient overlay */
  .promo-overlay {
    display: none;
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(200, 150, 255, 0.6), transparent 60%);
    pointer-events: none;
  }
  
  .promo-body {
    display: none;
    position: relative;
    padding: 1.5rem;
    z-index: 1;
  }
  
  .promo-title {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    color: #000;
    font-family: 'Narnoor', sans-serif;
    font-weight: bold;
  }
  
  .promo-copy {
    margin: 0 0 1rem;
    font-size: 1rem;
    color: #111;
    font-family: 'Narnoor', sans-serif;
    font-weight: 500;
  }
  
  .promo-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #E5FF66;
    color: #000;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
  }
  .favorites-section {
    padding: 2rem 1rem;
    background: #fff;
  }
  
  .favorites-header {
    display: flex;
    justify-content: right;
    align-items: baseline;
    margin-bottom: 1.5rem;
  }
  
  .favorites-link {
    font-size: 0.95rem;
    color: #2ebb77;
    text-decoration: none;
    font-family: 'Narnoor', sans-serif;
    font-weight: 200;
  }
  
  .favorites-link:hover {
    text-decoration: underline;
  }
  
  .favorites-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
    margin: 0 auto;
  }
  .favorite-card {
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    text-decoration: none;
    color: inherit;
  }
  
  .favorite-card img {
    width: 100%;
    height: 60%;
    object-fit: cover;
    display: block;
  }
  
  .favorite-info {
    margin-top: 0.75rem;
  }
  
  .favorite-name {
    font-size: 1rem;
    font-family: 'Narnoor', sans-serif;
    font-weight: 500;
    margin: 0;
    color: #111;
    text-align: center;
  }
  
  /* Price section wrapper */
  .product-card__prices {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-top: 0.5rem;
    justify-content: center;
  }

  /* Old price: gray + strikethrough */
  .product-card__old-price {
    color: #777;
    text-decoration: line-through;
    font-size: 0.9rem;
  }

  /* New price: bold/black */
  .product-card__new-price {
    color: #111;
    font-weight: 600;
    font-size: 1rem;
  }

  /* Percent off: slightly smaller & accent color */
  .product-card__percent {
    color: #2ebb77;
    font-size: 0.85rem;
  }
  .static-image-set {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0 0 5em 0;
  }
  .static-image-item {
    flex: 1;
    text-align: center;
  }
  .static-image-item img {
    width: 100%;
    max-width: 300px;
    border-radius: 5px;
  }

  .section-intro {
    width: 100%;
    padding: 5rem 1rem 4rem 1rem;
    background: #fff;
    text-align: center;
    font-family: 'Narnoor', sans-serif;
  }
  
  .section-intro__title {
    margin: 0;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #111;
    font-family: 'Narnoor', sans-serif;
  }
  
  .section-intro__subtitle {
    margin: 0.5rem 0 0;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #555;
    text-transform: uppercase;
    font-family: 'Narnoor', sans-serif;
  }
  .product-card__stock {
    font-size: 0.85rem;
    font-family: 'Narnoor', sans-serif;
    font-weight: bold;
    color: rgb(128, 31, 31);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
  }

  .product-image-wrapper .price-percent.image-overlay {
    display: none;
  }






  @media (max-width: 1023px) {

    .hero-slide img, .promo-slide img, .trend-slide img {
      height: 40%;
    }

    .section-intro{
      padding: 2em 1em 1em 1em;
    }
    .section-intro__title{
      font-size: 1em;
    }
    .section-intro__subtitle{
      font-size: 0.8em;
    }
    .carousel-container {
      height: 200px;
    }

    .collections-static {
      display: flex;
      flex-direction: rows;
      gap: 0.5em;
      width: 93vw;
      margin: 2em 0.5em;
      justify-self: center;
    }
    .collection-name {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      opacity: 1 !important;
      background: rgba(0,0,0,0.4);
      padding: 0.5rem 1rem;
      border-radius: 5px;
      font-size: 1em;
      width: 100%;
      text-align: center;
    }
    .collection-card {
      height: 20vh;
      width: 30vw;
    }
    .promo-grid {
      display: flex;
      flex-direction: row;
      padding: 12% 4% 0;
      gap: 3em;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
    .promo-card{
      scroll-snap-align: center;
      height: 50vh;
      flex: 0 0 100%;
    }
    .promo-indicators {
      display: flex;
      justify-content: center;
      padding: 1rem 0 12%;
      background: #fff;
    }
    .promo-indicators .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #ccc;
      margin: 0 6px;
      transition: background 0.3s;
    }
    .promo-indicators .dot.active {
      background: #888989;
    }
    .promo-title {
      font-size: 5vh;
      font-family: 'Narnoor', sans-serif;
    }
    
    .promo-copy {
      font-size: 2vh;
      font-family: 'Narnoor', sans-serif;
      font-weight: 500;
    }
    .product-image-wrapper {
      position: relative;
      height: 30vh;
    }
    .product-image-wrapper .price-percent.image-overlay {
      display: block;
      position: absolute;
      bottom: 8px;
      left: 8px;
      background: rgba(0, 0, 0, 0.5);
      color: #fff;
      padding: 2px 6px;
      font-size: 0.75rem;
      font-weight: 600;
      border-radius: 4px;
      white-space: nowrap;
    }
  }
  

