:root {
--default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans",
"Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--heading-font: "Nunito", sans-serif;
--nav-font: "Inter", sans-serif;
}

/* Smooth scroll */
:root {
scroll-behavior: smooth;
}

/* Import Bootstrap */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');

body {
margin: 0;
padding: 0;
font-family: 'Montserrat', sans-serif;
overflow-x: hidden;
color: #fff;
overflow-y: auto;
}

/* banner Section */
.breadcrumb-section {
  position: relative;
  background: #2a2c2eff url("/images/frame1.png") repeat;
  /* background-size: fill;  */
  text-align: center;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.breadcrumb-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:  rgba(42, 44, 46, 0.6); 
  z-index: 1;
}

.breadcrumb-container {
  position: relative;
  z-index: 2;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
}

.breadcrumb-home {
  color: rgba(255, 107, 0, 1); 
  cursor: pointer;
  position: relative;
  padding-right: 14px; 
}

.breadcrumb-home::after {
  color: #fff;
  position: absolute;
  right: 0;
}

.breadcrumb-current {
  color: #fff;
  margin-left: -14px; 
}

.banners2 {
      max-width: 70%;
      margin: 0 auto;
      padding: 20px 0;
      box-sizing: border-box;
    }

/* Beauty Product Brands Section  */
.offers-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      /* max-width: 85%; */
      margin: 2% auto;
      /* padding: 0 1rem 2rem; */
      justify-content: center;
    }

    /* Offer Card */
    .offer-card {
      background-color: #ffffff;
      border-radius: 15px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 100%;
      width: 230px;
    }

    .card-image-container {
      position: relative;
      overflow: hidden;
    }

    .card-image-container img {
      width: 100%;
      height: 180px;
      display: block;
      transition: transform 0.8s ease-in-out;
    }

    .card-image-container:hover img {
      transform: scale(1.1); 
}

    .heart-box {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 35px;
      height: 35px;
      background: #ffffff;
      border-radius: 20%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
      z-index: 10;
      transition: transform 0.3s ease;
    }

    .heart-box:hover {
      transform: scale(1.1);
    }

    /* Outline heart (default state) */
    .heart-box i {
      font-size: 20px;
      color: #ff4757;
      transition: color 0.3s ease;
    }

    /* Filled red heart when active */
    .heart-box.active i {
      font-weight: 900;
      color: #ff4757;
    }

    /* Create red fill using a pseudo-element */
    .heart-box::after {
      content: "\f004";
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      color: #ff4757;
      font-size: 28px;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      transform: scale(0.8);
      transition: opacity 0.3s ease, transform 0.3s ease;
      pointer-events: none;
    }

    .discount-badge {
      position: absolute;
      bottom: -1px;
      right: 0;
      background-color: #e53935;
      color: white;
      padding: 6px 18px;
      font-weight: 700;
      font-size: 16px;
    }

    .offer-content {
      padding: 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #fff;
      text-align: left;
    }

    .offer-desc {
      font-size: 14px;
      font-weight: 400;
      color: #333;
      flex-grow: 1;
      margin-right: 10px;
    }

    .rating {
      background-color: #263238;
      color: white;
      padding: 6px 12px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 4px;
      white-space: nowrap;
    }

    .rating .star {
      color: #ffd700;
    }

    /* ===============================
   Base Styles
   =============================== */
.cate {
  background: rgba(245, 245, 245, 1);
  padding: 20px 0;
  margin-top: 20px;
}

.categories-section {
  padding: 20px;
  max-width: 70%;
  margin: 0 auto;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* ---------- Header ---------- */
.categories-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  gap: 15px;
  flex-wrap: wrap;
}

.popular-text {
  font-weight: bold;
  font-size: 16px;
  color: #333;
}

.highlight {
  color: rgba(255, 107, 0, 1);
}

/* ---------- Search box ---------- */
.search-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 8px 12px;
  min-width: 220px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.search-box i {
  color: #999;
  margin-right: 8px;
  font-size: 14px;
}

.search-box input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  width: 100%;
}

/* ---------- Horizontal scroll wrapper ---------- */
.categories-wrapper {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
  padding: 10px;
  scroll-behavior: smooth;
}

.categories-wrapper::-webkit-scrollbar {
  height: 6px;
}

.categories-wrapper::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.categories-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

/* ---------- Category cards ---------- */
.category-card {
  flex: 0 0 auto;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  min-width: 70px;
}

.category-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 8px;
  transition: transform 0.3s;
}

.category-card .category-name {
  display: block;
  font-size: 15px;
  color: #333;
  white-space: nowrap;
  font-weight: 600;
}

.category-card .count {
  font-size: 13px;
  color: #777;
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-icon img {
      width: 32px;
      height: 32px;
      object-fit: contain;
    }

/* ---------- Active category ---------- */
.category-card.active img {
  border: 2px solid rgba(255, 107, 0, 1);
  border-radius: 50%;
  padding: 4px;
}

.category-card.active .category-name {
  color: rgba(255, 107, 0, 1);
  font-weight: bold;
}

/* show btn */
.show-more-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 12px 30px;
      background-color: #ffffff;
      color: rgba(255, 107, 0, 1);
      border: 1px solid #b0bec5;
      border-radius: 4px;
      font-size: 16px;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      cursor: pointer;
      transition: all 0.2s ease-in-out;
      display: block;
      margin: 2rem auto 0;
    }

    .show-more-btn:hover {
      background-color: #fafafa;
      border-color: #78909c;
    }

    .show-more-btn .icon {
      width: 18px;
      height: 18px;
      transition: transform 0.2s ease-in-out;
    }

    .show-more-btn:hover .icon {
      transform: translateY(2px);
    }

/* DOWNLOAD SECTION STYLING */
        .download-section {
            width: 100%;
            padding: 0;
            background-color: #f8f9fa;
            background-image: url("/images/frame2.png");
            box-sizing: border-box;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 2%;
        }

        .download-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 40px;
            max-width: 75%;
            padding: 0 20px;
            box-sizing: border-box;
        }

        /* LEFT COLUMN: TEXT CONTENT */
        .download-content {
            padding-right: 20px;
        }

        .download-heading {
            font-size: 1.5rem;
            font-weight: 700;
            color: #333;
            line-height: 1.3;
            margin-top: 0;
            margin-bottom: 20px;
        }

        .download-description {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 30px;
        }
        
        .download-stores-title {
            font-size: 0.9rem;
            color: #555;
            margin-bottom: 15px;
        }

        .download-buttons-wrapper {
            display: flex;
            gap: 15px;
        }

        .download-button {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            border: 1px solid #ccc;
            border-radius: 8px;
            background-color: #f8f9fa;
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }
        
        .download-button:hover {
            background-color: #fff;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }

        .download-button svg {
            width: 24px;
            height: 24px;
        }
        
        /* RIGHT COLUMN: IMAGE */
        .download-image-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden
        }
        
        .download-image-wrapper img {
            max-width: 100%;
            height: auto;
            max-height: 400px;
            transition: transform 0.4s ease-in-out; 
            display: block;  
            padding-top: 30px;
        }

        .download-image-wrapper:hover img {
    transform: scale(1.1); 
}

/* Events Section CSS */
.spotlight-section {
      /* width: 100%; */
      max-width: 70%;
      margin: 0 auto;
      padding: 2rem 1rem;
    }

    .more-events-link {
      font-size: 0.9rem;
      color: #f39c12;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .more-events-link:hover {
      color: #f1c40f;
    }

    /* --- Events Grid --- */
    .events-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin: 0 auto;
      width: 100%;
      margin-top: 1.5rem;
    }

    /* --- Event Card --- */
    .event-card {
      background-color: #ffffff;
      color: #2c3547;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      width: 100%;
    }

    .event-card:hover {
      /* transform: translateY(-8px); */
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }


    .card-image-container {
      position: relative;
      height: 180px;
    }

    .event-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .card-content {
      padding: 0 1rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      /* height: 160px; */
    }

    .event-title {
      font-size: 1.05rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      line-height: 1.3;
      flex-grow: 1;
    }

    /* This container holds the details that will be swapped out on hover */
    .event-card1 {
      position: relative;
      overflow: hidden;
      transition: 0.3s ease;
      text-align: start;
      cursor: pointer;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Event details */
    .event-details {
      list-style: none;
      font-size: 0.8rem;
      color: #55627a;
      margin: 0;
      padding: 0;
      transition: opacity 0.3s ease, transform 0.3s ease;
      position: absolute;
    }

    .event-details li {
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

     .buy-pass-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .buy-pass-btn button {
      background: rgba(255, 107, 0, 1);
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 6px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .buy-pass-btn button:hover {
      background: rgb(230, 96, 0);
    }

    /* On hover: hide details and show button */
    .event-card1:hover .event-details {
      opacity: 0;
      transform: translateY(-10px);
    }

    .event-card1:hover .buy-pass-btn {
      opacity: 1;
      pointer-events: auto;
    }

    .event-details i {
      width: 16px;
      color: #f39c12;
    }


    /* Main Deals Section Container */
       .promo-showcase {
            background-color: #2b313d;
            padding: 30px 5%;
        }

        /* "View All" Link */
        .view-all-link {
            color: #e5b49a;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .view-all-link:hover {
            color: #ffffff;
        }

        /* Responsive Card Grid */
        .promo-grid-layout {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 10px;
            margin-top: 2%;
        }

        /* Individual Offer Item Styling */
        .offer-item {
            background-color: #ffffff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .offer-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        /* Item Image Container */
        .item-image-container {
            position: relative;
            width: 100%;
            height: 200px;
        }
        
        .item-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        /* Favorite/Like Button */
        .favorite-button {
            position: absolute;
            top: 12px;
            right: 12px;
            background-color: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            font-size: 16px;
            color: #e74c3c;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        /* Item Content Area */
        .item-details {
            padding: 18px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .item-details h3 {
            font-size: 1rem;
            font-weight: 600;
            color: #333;
            margin: 0 0 5px 0;
            line-height: 1.4;
        }

        .item-details .item-category {
            font-size: 0.8rem;
            color: #888;
            margin: 0;
            flex-grow: 1;
            padding-bottom: 15px;
        }

        /* Item Footer (Discount & Rating) */
        .item-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
        }

        
        .review-score {
            font-size: 0.8rem;
            font-weight: 500;
            padding: 6px 10px;
            border-radius: 5px;
            color: #ffffff;
            background-color: #2b313d;
            white-space: nowrap;
        }

        .discount-label{
          font-weight: 500;
            padding: 6px;
            color: rgba(255, 107, 0, 1);
        }

        .review-score .fa-star {
            color: #f1c40f;
            margin-right: 5px;
        }



/* ===============================
   Responsive Styles
   =============================== */
/* ----- For 1200px to 1025px ----- */
@media (max-width: 1200px) {
  .categories-section {
    width: 95%;
  }

  .categories-wrapper {
    gap: 22px;
  }
}


/* ----- Perfect for 1024px ----- */
@media (max-width: 1024px) {
  .categories-section {
    width: 100%;
    padding: 15px;
  }

  .popular-text {
    font-size: 15px;
  }

  .search-box {
    min-width: 200px;
  }

  .category-card img {
    width: 46px;
    height: 46px;
  }

  .categories-wrapper {
    gap: 20px;
    padding: 8px;
  }

  .events-grid {
        grid-template-columns: repeat(3, 1fr);
      }
}

/* ----- Tablets (768px and below) ----- */
@media (max-width: 768px) {
   .categories-header {
    margin: 10px;
  }

  .search-box {
    width: 180px !important;
    padding: 8px 10px;
  }

  .category-card img {
    width: 42px;
    height: 42px;
  }

  .category-card .category-name {
    font-size: 13px;
  }

  .category-card .count {
    font-size: 11px;
  }

  .categories-wrapper {
    gap: 15px;
  }

   .category-bar {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 0.5rem;
        scrollbar-width: thin;
      }

      .category-bar::-webkit-scrollbar {
        height: 6px;
      }

      .category-bar::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 3px;
      }

      .category-bar::-webkit-scrollbar-track {
        background: transparent;
      }

       /* Download Section */
            .download-heading {
                font-size: 2rem;
            }
            .download-buttons-wrapper {
                flex-direction: column;
                align-items: center;
            }
            .download-button {
                width: 200px;
                justify-content: center;
            }
            .download-section {
                padding: 60px 0;
            }

            .events-grid {
        grid-template-columns: repeat(2, 1fr);
      }
}

/* ----- Small Mobile (480px and below) ----- */
@media (max-width: 480px) {
  .categories-section {
    padding: 10px;
  }

  .popular-text {
    font-size: 14px;
  }

  .categories-wrapper {
    gap: 12px;
  }

  .category-card img {
    width: 38px;
    height: 38px;
  }

  .category-card .category-name {
    font-size: 12px;
  }

  .category-card .count {
    font-size: 10px;
  }
}

@media (max-width: 425px) {
      .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        margin: 2% auto;
        justify-content: center;
      }
    }

    @media (max-width: 375px) {
      .offers-grid {
        grid-template-columns: repeat(1, 1fr);
        max-width: 100%;
        margin: 2% auto;
        gap: 1rem;
        justify-content: center;
      }
    }

@media (max-width: 360px) {
  .categories-wrapper {
    gap: 10px;
  }

  .category-card img {
    width: 34px;
    height: 34px;
  }

  .category-card .category-name {
    font-size: 11px;
  }
}

