/* Navbar Link Styling */

.navbar a {

    color: #333 !important;

    font-weight: 500;

    margin: 0 8px;

    text-decoration: none;

}

/* Active Link */

.navbar a.active {

    color: #800040 !important;

    font-weight: bold;

    border-bottom: 2px solid #800040;

}

/* Cart Badge */

.badge {

    font-size: 0.7rem;

    padding: 0.3em 0.4em;

}

/* ==============
   GENERAL RESET
================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==============
     HEADER WRAPPER
  ================= */
.hdt-bottom-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
    transition: all 0.3s ease-in-out;
}

.hdt-bottom-header.is-sticky {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* ==============
     CONTAINER
  ================= */
.hdt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Flex utility */
.hdt-flex {
    display: flex;
}

.hdt-align-center {
    align-items: center;
}

.hdt-justify-center {
    justify-content: center;
}

/* ==============
     NAVIGATION
  ================= */
.hdt-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hdt-nav__ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hdt-menu-item {
    position: relative;
}

.hdt-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 500;
    color: #333333;
    text-transform: uppercase;
    padding: 12px 5px;
    transition: color 0.3s ease;
}

.hdt-menu-link:hover {
    color: #800040;
}

/* Active Link Styling */
.hdt-menu-link.active {
    color: #800040;
    font-weight: 600;
    border-bottom: 2px solid #800040;
}

/* ==============
     DROPDOWN MENU
  ================= */
.hdt-menu-item details {
    position: relative;
}

.hdt-menu-item summary {
    list-style: none;
    cursor: pointer;
}

.hdt-menu-item-arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.hdt-menu-item[open] .hdt-menu-item-arrow {
    transform: rotate(180deg);
}

/* Dropdown box */
.hdt-sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
    border-radius: 5px;
    z-index: 1000;
}

/* Show dropdown on hover */
.hdt-menu-item:hover .hdt-sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown links */
.hdt-sub-menu .hdt-menu-link {
    padding: 10px 15px;
    color: #333333;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    white-space: nowrap;
}

.hdt-sub-menu .hdt-menu-link:hover {
    background: #f8f8f8;
    color: #800040;
}

/* ==============
     MOBILE DESIGN
  ================= */
.nav-toggle-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    display: none;
    margin-right: 10px;
}

@media (max-width: 992px) {
    .nav-toggle-btn {
        display: block;
    }

    .hdt-nav__ul {
        flex-direction: column;
        gap: 15px;
        background: #fff;
        padding: 20px;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: none;
        border-top: 1px solid #eaeaea;
    }

    /* Mobile dropdown visible when toggled */
    .hdt-navigation.active .hdt-nav__ul {
        display: flex;
    }

    .hdt-menu-link {
        padding: 10px;
        justify-content: flex-start;
    }

    /* Mobile dropdown sub-menu */
    .hdt-sub-menu {
        position: static;
        box-shadow: none;
        transform: translateY(0);
        display: none;
        opacity: 1;
        visibility: visible;
        padding: 0;
    }

    .hdt-menu-item:hover .hdt-sub-menu {
        display: block;
    }
}

/* ==============
     THEME COLORS
  ================= */
.hdt-s-gradient {
    background: linear-gradient(to right, #fff, #fff);
}



/* CATEGORY */
.circle-category-bar {
    width: 100%;
    background: #fff;
    padding: 26px 0 10px 0;
    overflow-x: auto;
}

.circle-category-wrapper {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 14px;
}

.circle-category-item {
    text-align: center;
    min-width: 100px;
    position: relative;
    flex-shrink: 0;
}

.circle-category-item .circle-category-link {
    display: block;
    width: 84px;
    height: 84px;
    margin: 0 auto 8px auto;
    border-radius: 50%;
    border: 2.5px solid #ddd;
    background: #fff;
    overflow: hidden;
    transition: border-color 0.26s, box-shadow 0.25s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.circle-category-item.active .circle-category-link,
.circle-category-item .circle-category-link:hover,
.circle-category-item .circle-category-link:focus {
    border-color: #922b86;
    /* Your Theme/Primary Color */
    box-shadow: 0 4px 16px 0px #e4c7eb55;
}

.circle-category-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    transition: transform 0.18s;
}

.circle-category-link:hover img,
.circle-category-link:focus img {
    transform: scale(1.07) rotate(-4deg);
}

.circle-category-label {
    display: block;
    font-size: 13.6px;
    font-family: 'Archivo', Arial, sans-serif;
    color: #292929;
    font-weight: 500;
    margin-top: 7px;
    letter-spacing: 0.03em;
    transition: color 0.2s;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Active underline effect */
.circle-category-item.active .circle-category-label {
    color: #922b86;
    /* highlight color */
    font-weight: 700;
    position: relative;
}

.circle-category-item.active .circle-category-label::after {
    content: "";
    display: block;
    height: 3px;
    background: #922b86;
    margin: 8px auto 0 auto;
    width: 50%;
    border-radius: 2px;
    transition: background 0.2s;
}

/* Emoji (optional) styling */
.emoji {
    font-size: 1em;
    vertical-align: middle;
    margin-left: 2px;
}

/* Mobile adjustments */
@media (max-width: 900px) {
    .circle-category-wrapper {
        gap: 18px;
    }

    .circle-category-item .circle-category-link {
        width: 64px;
        height: 64px;
    }

    .circle-category-label {
        font-size: 12px;
    }
}

@media (max-width: 540px) {
    .circle-category-bar {
        padding: 11px 0 0 0;
    }

    .circle-category-label {
        font-size: 11px;
    }
}

/* Hide scrollbar (optional) */
.circle-category-wrapper::-webkit-scrollbar {
    height: 0 !important;
    background: transparent;
}

/* Slider Styles */
/* ===== Hero Slider (renamed classes) ===== */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .hero-viewport {
    position: relative;
    width: 100%;
    height: 555px;
    overflow: hidden;
  }

  .hero-track {
    display: flex;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    transition: transform 0.3s ease-in-out;
    will-change: transform;
  }

  .hero-slide {
    position: relative;
    flex: 0 0 100%;
    height: 100%;
    overflow: hidden;
  }

  .hero-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    color: inherit;
  }

  .hero-media {
    display: block;
    width: 100%;
    height: 100%;
  }

  .hero-media source,
  .hero-media img {
    display: visible;
    width: 100%;
    height: 100%;
  }

  .hero-image {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
    user-select: none;
  }

  /* ===== Hero Text Overlay ===== */
  .hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    text-align: center;
    max-width: 600px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  }

  .hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    line-height: 1.4;
  }

  /* ===== Hero Button ===== */
  .hero-btn {
    display: inline-block;
    background-color: #922b86;
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 30px;
    transition: background-color 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
  }

  .hero-btn:hover,
  .hero-btn:focus {
    background-color: #a248a6;
  }

  /* ===== Responsive: Tablet ===== */
  @media (max-width: 992px) {
    .hero-viewport {
      height: 400px;
    }

    .hero-overlay {
      max-width: 90%;
      padding: 15px;
    }

    .hero-title {
      font-size: 2rem;
    }

    .hero-subtitle {
      font-size: 1.1rem;
    }

    .hero-btn {
      padding: 0.6rem 1.2rem;
      font-size: 0.95rem;
    }
  }

  /* ===== Responsive: Mobile ===== */
  @media (max-width: 576px) {
    .hero-viewport {
      height: 280px;
    }

    .hero-overlay {
      padding: 12px;
      max-width: 95%;
      background: rgba(0, 0, 0, 0.55);
    }

    .hero-title {
      font-size: 1.5rem;
    }

    .hero-subtitle {
      font-size: 0.95rem;
    }

    .hero-btn {
      padding: 0.5rem 1rem;
      font-size: 0.85rem;
    }
  }


/* --- Collection get ready --- */
/* Section spacing */
.Get-ready {
  padding-top: 100px;
}

/* Heading styling */
.get-ready-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #C21807;
  margin-bottom: 10px;
}

/* Collection card styles */
.collection-card {
  position: relative;
  height: 450px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.collection-text {
  text-align: center;
   
  padding: 10px 15px;
  border-radius: 5px;
}

.collection-text h2 {
  font-family: 'Great Vibes', cursive;
  font-size: 2.2rem;
  margin-bottom: 5px;
}

.collection-text p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: lowercase;
  margin: 0;
}


/* Footer section */
/* Footer Base Styling */
.footer {
  background-color: #f5f5f5;
  padding-top: 60px;
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Footer Container */
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Footer Columns */
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 200px;
}

/* Logo */
.footer-logo {
  max-width: 120px;
  margin-bottom: 15px;
}

/* Contact Info */
.footer-contact p {
  margin: 6px 0;
  font-size: 14px;
}

/* Store Button */
.footer-button {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 18px;
  background-color: #000;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

.footer-button:hover {
  background-color: #444;
}

/* Social Links */
.footer-socials {
  margin-top: 16px;
}

.footer-socials a {
  margin-right: 15px;
  text-decoration: none;
  font-size: 14px;
  color: #666;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #000;
}

/* Footer Menu Lists */
.footer-column h4 {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #000;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #ddd;
  padding: 20px 0;
  font-size: 13px;
}

.footer-left,
.footer-right {
  display: flex;
   
  gap: 6px;
}

.footer-right img {
  height: 26px;
  margin-right: 10px;
}


/*infint caurosal*/
/* Infinite Slider */
.seamless-infinite-slider-section {
  padding-top: 40px;
}

.seamless-infinite-slider {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  width: 200%; /* Doubled to accommodate duplicates */
  animation: scroll-left 40s linear infinite;
}

.slider-track img {
  width: auto;
  height: 300px; /* Default fixed height */
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  user-select: none;
  pointer-events: none;
}

/* Pause animation on hover for better UX */
.seamless-infinite-slider:hover .slider-track {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .slider-track img {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .slider-track img {
    height: 200px;
  }
}


/* Title 5 page */
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 700;
      color: #a51616;
    }
    .sub-title {
      font-size: 1.3rem;
      font-weight: 400;
      color: #444;
      font-family: 'Poppins', sans-serif;
    }
    .sub-title em {
      font-family: 'Shadows Into Light', cursive;
      font-size: 1.4rem;
      color: #2c2c2c;
    }
    /* Cards */
    .custom-card {
      position: relative;
      border-radius: 20px;
      background-size: cover;
      background-position: center;
      color: #fff;
      display: flex;
      align-items: flex-end;
      justify-content: flex-start;
      padding: 20px;
      overflow: hidden;
    }
    .overlay {
      background: rgba(0, 0, 0, 0.25);
      position: absolute;
      inset: 0;
      border-radius: 20px;
    }
    .card-content {
      position: relative;
      z-index: 2;
    }
    .card-content h3 {
      font-family: 'Shadows Into Light', cursive;
      font-size: 2rem;
      font-weight: 600;
      margin-bottom: 5px;
    }
    .card-content p {
      font-size: 1rem;
      font-family: 'Poppins', sans-serif;
      margin: 0;
    }

    /* Heights */
    .tall-card {
      min-height: 800px;
    }
    .small-card {
      min-height: 390px;
    }
  .custom-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}


/*review page*/
.anicham-reviews-section {
    background: #fff;
    padding: 3rem 1rem;
    font-family: 'Playfair Display', serif;
    color: #C21807;
}

.anicham-container {
    max-width: 1200px;
    margin: 0 auto;
}

.anicham-header {
    max-width: 700px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.anicham-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.anicham-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #C21807;
}

.anicham-description {
    font-size: 1rem;
    color: #555;
}

.anicham-carousel-container {
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.anicham-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.anicham-carousel-item {
    flex: 0 0 50%;
    padding: 0 10px;
    box-sizing: border-box;
}

.anicham-review-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 14px 40px rgba(255, 255, 255, 0.22);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.anicham-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 60px rgba(207, 0, 141, 0.35);
}

.anicham-review-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #444;
    margin-bottom: 1rem;
}

.anicham-review-author {
    font-weight: bold;
    color: #622a7a;
    margin-bottom: 0.5rem;
}

.anicham-review-rating {
    color: #ffc107;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .anicham-carousel-item {
        flex: 0 0 100%;
    }
}


/* why choose us page*/
  :root {
    --color-blue: #db2777;
    --color-purple: #db2777;
    --color-pink: #db2777;
  }
 
  .why-maybell-new {
    background: #fff;
    padding: 4rem 1rem 4rem;
    font-family: 'Archivo', sans-serif;
    color: #222;
  }
 
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
 
  .title {
    font-family: 'Georgia', serif;
    font-weight: 400;
    font-size: 2rem;
    text-align: center;
    letter-spacing: 0.1em;
    margin-bottom: 4rem;
    user-select: none;
    color: #000;
  }
 
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.75rem;
    max-width: 950px;
    margin: 0 auto;
  }
 
  .feature-card {
    border: 1.5px solid #f1f1f1;
    background: #fafafa;
    border-radius: 12px;
    padding: 3rem 2rem 2rem;
    text-align: center;
    cursor: default;
    user-select: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
 
  .feature-card:hover {
    border-color: var(--color-purple);
    box-shadow: 0 10px 35px rgba(124, 58, 173, 0.12);
    transform: translateY(-7px);
  }
 
  .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
  }
  .blue svg {
    stroke: var(--color-blue);
  }
  .purple svg {
    stroke: var(--color-purple);
  }
  .pink svg {
    stroke: var(--color-pink);
  }
 
  h3 {
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.35;
    color: #db2777;
    white-space: pre-line;
  }
 
  @media (max-width: 900px) {
    .features-grid {
      grid-template-columns: 1fr 1fr;
      gap: 1.8rem;
    }
    .feature-card {
      padding: 2.5rem 1.5rem 1.5rem;
    }
  }
 
  @media (max-width: 576px) {
    .features-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .why-maybell-new {
      padding: 2rem 1rem 3rem;
    }
  }