/* Consolidated Premium Styles for HealthyCrave Cuisine */

/* ==================== 01-premium-refined-header ==================== */
/* Extracted from Stitch inline style blocks */

.hcc-premium-homepage-body { font-family: 'Inter', sans-serif; background-color: #F7F3EA; margin: 0; padding: 0; }
        .dropdown-menu { display: none; opacity: 0; transform: translateY(-10px); transition: opacity 0.2s ease, transform 0.2s ease; }
        .has-dropdown:hover .dropdown-menu { display: block; opacity: 1; transform: translateY(0); }
        .mobile-menu-overlay { display: none; opacity: 0; transition: opacity 0.3s ease; }
        .mobile-menu-overlay.active { display: block; opacity: 1; }
        .mobile-menu { transform: translateX(-100%); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
        .mobile-menu.open { transform: translateX(0); }
        .nav-link-hover { position: relative; }
        .nav-link-hover::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0%; height: 2px; background-color: #3d2b1f; transition: width 0.3s ease; }
        .nav-link-hover:hover::after { width: 100%; }
        .nav-link-active::after { width: 100%; background-color: #2E6B3E; }
        .nav-link-active { color: #3d2b1f !important; font-weight: 500; }
        .icon-btn { transition: color 0.2s ease, transform 0.2s ease; }
        .icon-btn:hover { color: #3d2b1f; transform: scale(1.05); }

@keyframes ticker {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .ticker-container {
            display: inline-flex;
            animation: ticker 40s linear infinite;
        }
        #announcementTicker:hover .ticker-container {
            animation-play-state: paused;
        }


/* ==================== 02-cinematic-hero-slider ==================== */
/* Extracted from Stitch inline style blocks */

.hero-slider-fade { transition: opacity 2s ease-in-out; }
        .hero-slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; }
        .hero-slide.active { opacity: 1; pointer-events: auto; z-index: 10; }
        
        .ambient-shadow {
            box-shadow: 0 20px 40px rgba(61, 43, 31, 0.04);
        }


/* ==================== 03-refined-brand-story ==================== */
/* Extracted from Stitch inline style blocks */

.hcc-premium-homepage-body {
            font-family: 'Inter', sans-serif;
            background-color: #F5F5F0; /* Soft Beige canvas */
        }
        .ambient-shadow {
            box-shadow: 0 10px 40px -10px rgba(61, 43, 31, 0.08);
        }
        .text-cocoa {
            color: #3D2B1F;
        }
        .bg-cocoa {
            background-color: #3D2B1F;
        }


/* ==================== 04-premium-best-seller-collection ==================== */
/* Extracted from Stitch inline style blocks */

.hide-scrollbar::-webkit-scrollbar {
            display: none;
        }
        .hide-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        .ambient-shadow {
            box-shadow: 0 20px 40px rgba(61, 43, 31, 0.08);
        }
        .glass-overlay {
            background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 100%);
        }


/* ==================== 05-refined-standalone-ingredient-story ==================== */
/* Extracted from Stitch inline style blocks */

/* Custom Styles for Slider Animation */
  @keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .animate-slide {
    animation: slide 40s linear infinite;
  }
  .slider-container:hover .animate-slide {
    animation-play-state: paused;
  }

/* Base pill styles applied via class for cleaner HTML */
  .ingredient-pill {
    @apply px-6 py-3 rounded-full border border-[#d2c4bc]/50 bg-[#F7F3EA]/80 backdrop-blur-md 
           font-label-sm text-label-sm text-[#4f453f] tracking-widest
           transition-all duration-300 hover:border-[#ac9181] hover:bg-white hover:text-[#3d2b1f] hover:shadow-[0_4px_12px_rgba(61,43,31,0.05)] cursor-default;
  }


/* ==================== 06-premium-indian-lifestyle-experience ==================== */
/* Extracted from Stitch inline style blocks */

/* Base Styles */
        .hcc-premium-homepage-body {
            background-color: #F7F3EA; /* Warm beige requested */
            color: #26170c; /* primary color */
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Material Symbols Utilities */
        .material-symbols-outlined {
            font-family: 'Material Symbols Outlined';
            font-weight: normal;
            font-style: normal;
            font-size: 24px;
            line-height: 1;
            letter-spacing: normal;
            text-transform: none;
            display: inline-block;
            white-space: nowrap;
            word-wrap: normal;
            direction: ltr;
            -webkit-font-feature-settings: 'liga';
            -webkit-font-smoothing: antialiased;
        }
        
        .icon-fill { font-variation-settings: 'FILL' 1; }
        .icon-light { font-weight: 300; }

        /* Custom Section Utilities */
        .ambient-shadow {
            box-shadow: 0 20px 40px rgba(61, 43, 31, 0.04), 0 8px 16px rgba(61, 43, 31, 0.02);
        }
        
        /* Image Hover Effect */
        .lifestyle-card {
            overflow: hidden;
            border-radius: 0.5rem; /* ROUND_EIGHT */
            border: 1px solid rgba(210, 196, 188, 0.2); /* Soft outline-variant */
            position: relative;
            background-color: #FFFFFF;
        }
        
        .lifestyle-card img {
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }
        
        .lifestyle-card:hover img {
            transform: scale(1.05);
        }
        
        .lifestyle-card .overlay {
            background: linear-gradient(to top, rgba(38, 23, 12, 0.8) 0%, rgba(38, 23, 12, 0.3) 50%, rgba(0,0,0,0) 100%);
            transition: opacity 0.4s ease;
        }
        
        .lifestyle-card:hover .arrow-indicator {
            transform: translateX(4px);
            opacity: 1;
        }
        
        .arrow-indicator {
            transition: all 0.3s ease;
            opacity: 0.8;
        }

        /* Serif Fallback for Headlines to achieve the authoritative look requested */
        .font-serif-luxury {
            font-family: "Georgia", "Times New Roman", serif;
            letter-spacing: -0.01em;
        }


/* ==================== 07-expert-backed-r-and-d-team-section ==================== */
/* Extracted from Stitch inline style blocks */

.no-scrollbar::-webkit-scrollbar {
            display: none;
        }
        .no-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        
        .ambient-shadow {
            box-shadow: 0 10px 40px -10px rgba(61, 43, 31, 0.08);
        }
        
        .ambient-shadow-hover:hover {
            box-shadow: 0 20px 40px -10px rgba(61, 43, 31, 0.12);
            transform: translateY(-4px);
        }

        .carousel-snap {
            scroll-snap-type: x mandatory;
        }
        .carousel-item-snap {
            scroll-snap-align: start;
        }


/* ==================== 08-medical-advisory-editorial-slider ==================== */
/* Extracted from Stitch inline style blocks */

.hcc-premium-homepage-body { font-family: 'Inter', sans-serif; }
        .material-symbols-outlined { font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; }
        
        /* Ambient Shadow Utility */
        .shadow-ambient {
            box-shadow: 0 10px 40px -10px rgba(61, 43, 31, 0.08);
        }
        
        /* Hide scrollbar for slider */
        .no-scrollbar::-webkit-scrollbar {
            display: none;
        }
        .no-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        
        /* Slider Animation */
        @keyframes scrollMarquee {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(-50%, 0, 0); }
        }
        .animate-slider,
        .animate-scroll-x,
        .animate-marquee {
            display: flex !important;
            width: max-content !important;
            animation: scrollMarquee 40s linear infinite !important;
            transition: none !important;
        }
        .animate-slider:hover,
        .animate-scroll-x:hover,
        .animate-marquee:hover {
            animation-play-state: paused !important;
        }


/* ==================== 09-premium-indian-testimonial-experience-final ==================== */
/* Extracted from Stitch inline style blocks */

.testimonial-track {
            display: flex;
            width: fit-content;
            transition: transform 0.5s ease;
        }
        .testimonial-track:hover {
            animation-play-state: paused;
        }
        
        /* Hide scrollbar for cleaner look */
        .no-scrollbar::-webkit-scrollbar {
            display: none;
        }
        .no-scrollbar {
            -ms-overflow-style: none;  /* IE and Edge */
            scrollbar-width: none;  /* Firefox */
        }
        
        .glass-card {
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.6);
            box-shadow: 0 8px 32px rgba(110, 75, 58, 0.08);
            transform: scale(0.95);
            opacity: 0.7;
            transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .glass-card:hover {
            transform: scale(1.02);
            opacity: 1;
            background: rgba(255, 255, 255, 0.7);
            box-shadow: 0 12px 48px rgba(110, 75, 58, 0.12);
            z-index: 10;
        }

        /* Avatar grid crop trick */
        .avatar-crop {
            width: 48px;
            height: 48px;
            overflow: hidden;
            border-radius: 50%;
            position: relative;
        }
        .avatar-crop img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }


/* ==================== 10-final-emotion-closing-section ==================== */
/* Extracted from Stitch inline style blocks */

.material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
        }
        
        .fade-up {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }
        
        .fade-up-delay-1 {
            animation-delay: 0.2s;
        }
        
        .fade-up-delay-2 {
            animation-delay: 0.4s;
        }
        
        .fade-up-delay-3 {
            animation-delay: 0.6s;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .slow-float {
            animation: slowFloat 15s ease-in-out infinite alternate;
        }

        @keyframes slowFloat {
            0% {
                transform: scale(1.05) translate(0, 0);
            }
            100% {
                transform: scale(1.1) translate(-10px, -10px);
            }
        }


/* ==================== 11-premium-footer-with-social-icons ==================== */
/* Extracted from Stitch inline style blocks */

.fade-in { opacity: 0; transform: translateY(10px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
        .fade-in.visible { opacity: 1; transform: translateY(0); }
        .hover-gold:hover { color: #C6A87C; }


/* ==================== Phase 1 homepage-premium-header.css ==================== */
.hcc-header-shell {
  position: sticky;
  top: 0;
  z-index: 30;
}

html.hcc-header-scroll-lock,
body.hcc-header-scroll-lock {
  overflow: hidden;
}

body.hcc-header-scroll-lock {
  position: fixed;
  left: 0;
  width: 100%;
  overscroll-behavior: none;
}

.hcc-header-shell *,
.hcc-header-shell *::before,
.hcc-header-shell *::after {
  box-sizing: border-box;
}

.hcc-header-announcement {
  overflow: hidden;
  background: #f7f3ea;
  border-bottom: 1px solid rgba(31, 36, 31, 0.08);
  color: #1f241f;
}

.hcc-header-announcement__viewport {
  position: relative;
  overflow: hidden;
}

.hcc-header-announcement__track {
  display: flex;
  width: max-content;
  animation: hcc-header-announcement-loop 28s linear infinite;
}

.hcc-header-announcement__item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.4rem 2rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hcc-header-announcement:hover .hcc-header-announcement__track {
  animation-play-state: paused;
}

.hcc-header-bar {
  background: rgba(247, 243, 234, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(31, 36, 31, 0.08);
}

.hcc-header-bar__inner {
  width: min(1200px, calc(100% - 40px));
  min-height: 5rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.hcc-header-brand {
  display: flex;
  align-items: center;
}

.hcc-header-brand--mobile {
  display: none;
}

.hcc-header-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: #1f241f;
  text-decoration: none;
}

.hcc-header-logo__mark {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(135deg, #fffdf8 0%, #efe6d4 100%);
  border: 1px solid rgba(168, 158, 138, 0.4);
}

.hcc-header-logo__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hcc-header-logo__label {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hcc-header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.hcc-header-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #1f241f;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hcc-header-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  background: #2e6b3e;
  transition: transform 180ms ease;
}

.hcc-header-nav__link:hover::after,
.hcc-header-nav__link:focus-visible::after {
  transform: scaleX(1);
}

.hcc-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-end;
}

.hcc-header-icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #1f241f;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.hcc-header-icon-button:hover,
.hcc-header-icon-button:focus-visible {
  background: rgba(46, 107, 62, 0.08);
  color: #173d2d;
  transform: translateY(-1px);
  outline: none;
}

.hcc-phase1-icon {
  display: inline-flex;
  width: 1.2rem;
  height: 1.2rem;
}

.hcc-phase1-icon svg {
  width: 100%;
  height: 100%;
}

.hcc-header-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 1rem;
  min-height: 1rem;
  padding: 0 0.18rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #c96f3b;
  color: #fffdf8;
  font-family: "Manrope", sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
}

.hcc-header-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23, 61, 45, 0.2);
  backdrop-filter: blur(4px);
}

.hcc-header-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, calc(100vw - 32px));
  display: flex;
  flex-direction: column;
  background: #fffdf8;
  border-right: 1px solid rgba(168, 158, 138, 0.35);
  box-shadow: 0 18px 55px rgba(31, 36, 31, 0.14);
  transform: translateX(-100%);
  transition: transform 220ms ease;
  z-index: 31;
}

.hcc-header-shell.is-drawer-open .hcc-header-drawer {
  transform: translateX(0);
}

.hcc-header-shell.is-drawer-open .hcc-header-drawer-overlay {
  display: block;
}

.hcc-header-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1rem 0.75rem;
  border-bottom: 1px solid rgba(168, 158, 138, 0.24);
}

.hcc-header-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
}

.hcc-header-drawer__link,
.hcc-header-drawer__action {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  border-radius: 18px;
  color: #1f241f;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.hcc-header-drawer__link:hover,
.hcc-header-drawer__link:focus-visible,
.hcc-header-drawer__action:hover,
.hcc-header-drawer__action:focus-visible {
  background: rgba(46, 107, 62, 0.08);
  color: #173d2d;
  outline: none;
}

.hcc-header-drawer__actions {
  margin-top: auto;
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border-top: 1px solid rgba(168, 158, 138, 0.24);
}

@keyframes hcc-header-announcement-loop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1023px) {
  .hcc-header-bar__inner {
    width: min(100%, calc(100% - 24px));
    min-height: 4.5rem;
    grid-template-columns: 1fr auto;
  }

  .hcc-header-brand--desktop,
  .hcc-header-nav,
  .hcc-header-icon-button--desktop {
    display: none;
  }

  .hcc-header-brand--mobile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .hcc-header-logo__label {
    font-size: 1.15rem;
  }

  .hcc-header-logo__mark {
    width: 2.65rem;
    height: 2.65rem;
  }

  .hcc-header-actions {
    gap: 0.15rem;
  }

  .hcc-header-announcement__item {
    min-height: 2.15rem;
    font-size: 0.68rem;
    padding-inline: 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hcc-header-announcement__track {
    animation: none;
  }

  .hcc-header-icon-button,
  .hcc-header-drawer,
  .hcc-header-nav__link::after {
    transition: none;
  }

  .hcc-header-announcement:hover .hcc-header-announcement__track {
    animation-play-state: running;
  }
}


/* ==================== Phase 1 homepage-premium-hero.css ==================== */
.hcc-hero-slider {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.65), transparent 26%),
    linear-gradient(180deg, #f7f3ea 0%, #efe7d9 100%);
  color: #1f241f;
}

.hcc-hero-slider *,
.hcc-hero-slider *::before,
.hcc-hero-slider *::after {
  box-sizing: border-box;
}

.hcc-hero-slider__inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(3.5rem, 7vw, 5rem);
}

.hcc-hero-slider__viewport {
  position: relative;
  min-height: clamp(560px, 72vw, 760px);
  border-radius: 32px;
  overflow: hidden;
  background: #fffdf8;
  border: 1px solid rgba(216, 208, 194, 0.85);
  box-shadow: 0 18px 45px rgba(31, 36, 31, 0.08);
}

.hcc-hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  opacity: 0;
  pointer-events: none;
  transition: opacity 2s ease-in-out;
}

.hcc-hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hcc-hero-slide__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
  padding: clamp(2rem, 5vw, 4rem);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.84));
}

.hcc-hero-slide__eyebrow {
  margin: 0;
  color: #2e6b3e;
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hcc-hero-slide__title {
  margin: 0;
  color: #1f241f;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5.8vw, 5.5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hcc-hero-slide__description {
  margin: 0;
  max-width: 35rem;
  color: #556257;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.7;
}

.hcc-hero-slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  padding-top: 0.2rem;
}

.hcc-hero-slide__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.92rem 1.4rem;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.hcc-hero-slide__button:hover,
.hcc-hero-slide__button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.hcc-hero-slide__button--primary {
  background: #2e6b3e;
  color: #fffdf8;
}

.hcc-hero-slide__button--primary:hover,
.hcc-hero-slide__button--primary:focus-visible {
  background: #255733;
}

.hcc-hero-slide__button--secondary {
  border: 1.5px solid #2e6b3e;
  color: #2e6b3e;
  background: rgba(255, 253, 248, 0.84);
}

.hcc-hero-slide__button--secondary:hover,
.hcc-hero-slide__button--secondary:focus-visible {
  background: rgba(46, 107, 62, 0.08);
}

.hcc-hero-slide__media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #efe7d9;
}

.hcc-hero-slide__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hcc-hero-slide__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 243, 234, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(31, 36, 31, 0.08), rgba(31, 36, 31, 0.04));
  pointer-events: none;
}

.hcc-hero-slider__dots {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-top: 1.3rem;
}

.hcc-hero-slider__dot {
  width: 2.3rem;
  height: 0.34rem;
  border: 0;
  border-radius: 999px;
  background: rgba(168, 158, 138, 0.5);
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease, width 180ms ease;
}

.hcc-hero-slider__dot.is-active {
  width: 3.2rem;
  background: #2e6b3e;
}

.hcc-hero-slider__dot:hover,
.hcc-hero-slider__dot:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.hcc-hero-slider__arrows {
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  display: flex;
  gap: 0.65rem;
  z-index: 3;
}

.hcc-hero-slider__arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(216, 208, 194, 0.85);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.92);
  color: #1f241f;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.hcc-hero-slider__arrow:hover,
.hcc-hero-slider__arrow:focus-visible {
  background: #fffdf8;
  transform: translateY(-1px);
  outline: none;
}

@media (max-width: 1023px) {
  .hcc-hero-slider__inner {
    width: min(100%, calc(100% - 24px));
    padding-top: 1rem;
    padding-bottom: 2.2rem;
  }

  .hcc-hero-slider__viewport {
    min-height: clamp(640px, 185vw, 860px);
    border-radius: 26px;
  }

  .hcc-hero-slide {
    position: absolute;
    grid-template-columns: 1fr;
  }

  .hcc-hero-slide__content {
    order: 2;
    gap: 1rem;
    padding: 1.4rem 1.2rem 1.8rem;
  }

  .hcc-hero-slide__media {
    order: 1;
    min-height: 320px;
  }

  .hcc-hero-slide__overlay {
    background:
      linear-gradient(180deg, rgba(31, 36, 31, 0.02), rgba(31, 36, 31, 0.16)),
      linear-gradient(180deg, transparent 55%, rgba(255, 253, 248, 0.1) 100%);
  }

  .hcc-hero-slide__title {
    font-size: clamp(2.4rem, 11vw, 3.7rem);
  }

  .hcc-hero-slide__description {
    font-size: 0.98rem;
  }

  .hcc-hero-slider__dots {
    justify-content: center;
  }

  .hcc-hero-slider__arrows {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hcc-hero-slide,
  .hcc-hero-slide__button,
  .hcc-hero-slider__dot,
  .hcc-hero-slider__arrow {
    transition: none;
  }

  .hcc-hero-slide__button:hover,
  .hcc-hero-slide__button:focus-visible,
  .hcc-hero-slider__dot:hover,
  .hcc-hero-slider__dot:focus-visible,
  .hcc-hero-slider__arrow:hover,
  .hcc-hero-slider__arrow:focus-visible {
    transform: none;
  }
}

/* Partner Logos Marquee Loop */
@keyframes marqueeLogos {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}
.animate-marquee-logos {
  display: flex !important;
  width: max-content !important;
  animation: marqueeLogos 15s linear infinite !important;
}



