/**
* Template Name: Yummy - v1.3.0
* Template URL: https://bootstrapmade.com/yummy-bootstrap-restaurant-website-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
/* Fonts */
:root {
  --font-default: "Open Sans", 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";
  --font-primary: "Amatic SC", sans-serif;
  --font-secondary: "Inter", sans-serif;
}

/* Colors */
:root {
  --color-default: #212529;
  --color-primary: #ce1212;
  --color-secondary: #37373f;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  overflow-x: clip;
  max-width: 100%;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #ec2727;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow-x: clip;
  overflow-y: visible;
  padding: clamp(48px, 8vw, 80px) 0;
}

.section-bg {
  background-color: #eee;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: #7f7f90;
  text-transform: uppercase;
  font-family: var(--font-default);
}

.section-header p {
  margin: 0;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 400;
  font-family: var(--font-primary);
}

.section-header p span {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(55, 55, 63, 0.05);
  margin-top: 90px;
}

@media (max-width: 575px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #676775;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs h2 {
    margin-bottom: 10px;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: #ec2727;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

@-webkit-keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
:root {
  --header-bg-start: #7a0f0d;
  --header-bg-mid: #c41815;
  --header-bg-end: #e02520;
  --header-bg: linear-gradient(135deg, var(--header-bg-start) 0%, var(--header-bg-mid) 48%, var(--header-bg-end) 100%);
  --header-accent: #e8c56a;
  --header-link: #fffaf5;
  --header-link-hover: #ffe9a8;
  --header-height: 90px;
  --header-slider-gap: 8px;
}

.header {
  background: var(--header-bg);
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  border-bottom: 1px solid rgba(232, 197, 106, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 28px rgba(74, 8, 6, 0.38);
}

@media (max-width: 575px) {
  .header {
    height: 70px;
  }

  :root {
    --header-height: 70px;
  }
}

.header.sticked {
  border-color: rgba(232, 197, 106, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 8px 24px rgba(74, 8, 6, 0.45);
}

.header .logo {
  background: transparent;
  line-height: 0;
  flex-shrink: 0;
}

.header .logo img {
  display: block;
  max-height: 64px;
  width: auto;
  margin-right: 6px;
  background: transparent;
  mix-blend-mode: normal;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.18));
}

.header .logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0;
  font-family: var(--font-secondary);
}

.header .logo h1 span {
  color: var(--color-primary);
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  font-size: 14px;
  color: #fff;
  background: var(--color-primary);
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
  color: #fff;
  background: rgba(206, 18, 18, 0.8);
}

section {
  scroll-margin-top: 90px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 992px) {
  .navbar {
    padding: 0;
    position: static;
    width: auto;
    max-width: none;
    border-left: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    position: static;
    inset: auto;
    background: transparent;
    overflow: visible;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 10px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 600;
    color: var(--header-link);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    letter-spacing: 0.02em;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background: linear-gradient(90deg, var(--header-accent), #fff3c4);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--header-link-hover);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 992px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 992px) {

  .mobile-nav-show,
  .mobile-nav-hide,
  .mobile-nav-header,
  .mobile-nav-overlay {
    display: none !important;
  }

  .header .social-links {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .header .header-inner {
    flex-wrap: nowrap;
    justify-content: space-between;
    position: relative;
  }

  .header .logo {
    margin-right: auto;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 999px;
    padding: 3px 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  }

  .header .logo img {
    max-height: 48px;
    mix-blend-mode: normal;
    filter: none;
  }

  .mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(90, 10, 8, 0.72);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .mobile-nav-active .mobile-nav-overlay {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  .navbar {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    max-width: none;
    height: 100%;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(232, 197, 106, 0.35);
    background: var(--header-bg);
    transform: translateX(100%);
    transition: transform 0.32s ease;
    z-index: 9999;
    visibility: hidden;
    pointer-events: none;
  }

  .mobile-nav-active .navbar {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(232, 197, 106, 0.28);
    background: rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
  }

  .mobile-nav-title {
    color: var(--header-accent);
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .navbar ul {
    position: relative;
    inset: auto;
    flex: 1 1 auto;
    display: block;
    padding: 8px 0 calc(24px + env(safe-area-inset-bottom, 0px));
    margin: 0;
    background: transparent;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 9998;
    min-height: 0;
  }

  .navbar ul li {
    list-style: none;
    width: 100%;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 14px 22px;
    font-family: var(--font-secondary);
    border-bottom: 1px solid rgba(232, 197, 106, 0.14);
    font-size: 16px;
    font-weight: 600;
    color: var(--header-link) !important;
    white-space: normal;
    transition: background 0.2s, color 0.2s;
    min-height: 48px;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar li:hover>a {
    color: var(--header-link-hover) !important;
    background: rgba(255, 255, 255, 0.1);
  }

  .navbar .active,
  .navbar .active:focus {
    color: var(--header-link-hover) !important;
    background: rgba(255, 255, 255, 0.12);
    border-left: 3px solid var(--header-accent);
    padding-left: 19px;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #eee;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-toggle {
    border: 0;
    background: transparent;
    padding: 0;
    line-height: 1;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-nav-show {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffc247;
    font-size: 26px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 194, 71, 0.12);
    border: 1px solid rgba(255, 194, 71, 0.25);
    z-index: 9990;
    flex-shrink: 0;
    margin-left: 10px;
  }

  .mobile-nav-show:active {
    background: rgba(255, 194, 71, 0.22);
  }

  .mobile-nav-hide {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffc247;
    font-size: 22px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 194, 71, 0.1);
  }

  .mobile-nav-hide:active {
    background: rgba(255, 194, 71, 0.2);
  }

  .mobile-nav-active {
    overflow: hidden;
    touch-action: none;
  }

  .mobile-nav-active .navbar:before {
    display: none;
  }
}

@media (max-width: 575px) {
  .navbar {
    width: min(300px, 92vw);
  }

  .header {
    height: 70px;
  }

  .header .logo img {
    max-height: 42px;
  }

  .header .logo {
    padding: 2px 6px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-img {
  min-height: 500px;
}

.about h3 {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 30px;
  font-family: var(--font-secondary);
}

.about .call-us {
  left: 10%;
  right: 10%;
  bottom: 10%;
  background-color: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
}

.about .call-us h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: var(--font-default);
}

.about .call-us p {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-primary);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(206, 18, 18, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(206, 18, 18, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

.about .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
  padding: 30px;
  background: var(--color-primary);
  color: #fff;
}

.why-us .why-box h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .why-box p {
  margin-bottom: 30px;
}

.why-us .why-box .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .why-box .more-btn i {
  font-size: 14px;
}

.why-us .why-box .more-btn:hover {
  color: var(--color-primary);
  background: #fff;
}

.why-us .icon-box {
  text-align: center;
  background: #fff;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(55, 55, 63, 0.1);
  transition: 0.3s;
}

.why-us .icon-box i {
  color: var(--color-primary);
  margin-bottom: 30px;
  font-size: 32px;
  margin-bottom: 30px;
  background: rgba(206, 18, 18, 0.1);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}

.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 30px 0;
  font-family: var(--font-secondary);
}

.why-us .icon-box p {
  font-size: 15px;
  color: #6c757d;
}

@media (min-width: 1200px) {
  .why-us .icon-box:hover {
    transform: scale(1.1);
  }
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/stats-bg.jpg") center center;
  background-size: cover;
  padding: 100px 0;
}

@media (min-width: 1365px) {
  .stats-counter {
    background-attachment: fixed;
  }
}

.stats-counter .stats-item {
  padding: 30px;
  width: 100%;
}

.stats-counter .stats-item span {
  font-size: 48px;
  display: block;
  color: #fff;
  font-weight: 700;
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu .nav-tabs {
  border: 0;
}

.menu .nav-link {
  margin: 0 10px;
  padding: 10px 5px;
  transition: 0.3s;
  color: var(--color-secondary);
  border-radius: 0;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 2px solid #b6b6bf;
}

@media (max-width: 575px) {
  .menu .nav-link {
    margin: 0 10px;
    padding: 10px 0;
  }
}

.menu .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.menu .nav-link h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  font-family: var(--font-secondary);
}

@media (max-width: 575px) {
  .menu .nav-link h4 {
    font-size: 16px;
  }
}

.menu .nav-link:hover {
  color: var(--color-primary);
}

.menu .nav-link.active {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.menu .tab-content .tab-header {
  padding: 30px 0;
}

.menu .tab-content .tab-header p {
  font-size: 14px;
  text-transform: uppercase;
  color: #676775;
  margin-bottom: 0;
}

.menu .tab-content .tab-header h3 {
  font-size: 36px;
  font-weight: 600;
  color: var(--color-primary);
}

.menu .tab-content .menu-item {
  -moz-text-align-last: center;
  text-align-last: center;
}

.menu .tab-content .menu-item .menu-img {
  padding: 0 60px;
  margin-bottom: 15px;
}

.menu .tab-content .menu-item h4 {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-weight: 30px;
  margin-bottom: 5px;
}

.menu .tab-content .menu-item .ingredients {
  font-family: var(--font-secondary);
  color: #8d8d9b;
  margin-bottom: 5px;
}

.menu .tab-content .menu-item .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item .testimonial-content {
  border-left: 3px solid var(--color-primary);
  padding-left: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--color-default);
  font-family: var(--font-secondary);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0 0 10px 0;
  font-family: var(--font-secondary);
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #f05656;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
}

.testimonials .swiper-pagination {
  margin-top: 40px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d1d7;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .container-fluid {
  padding: 0;
}

.events .event-item {
  background-size: cover;
  background-position: cente;
  min-height: 600px;
  padding: 30px;
}

@media (max-width: 575px) {
  .events .event-item {
    min-height: 500px;
  }
}

.events .event-item:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.events .event-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
  position: relative;
}

.events .event-item .price {
  color: #fff;
  border-bottom: 2px solid var(--color-primary);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.events .event-item .description {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}

@media (min-width: 1200px) {
  .events .swiper-slide-active+.swiper-slide {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 1;
  }
}

.events .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.events .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #d1d1d7;
  opacity: 1;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Chefs Section
--------------------------------------------------------------*/
.chefs .chef-member {
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.08);
  transition: 0.3s;
}

.chefs .chef-member .member-img {
  position: relative;
  overflow: hidden;
}

.chefs .chef-member .member-img:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: url(../img/team-shape.svg) no-repeat center bottom;
  background-size: contain;
  z-index: 1;
}

.chefs .chef-member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.chefs .chef-member .social a {
  transition: color 0.3s;
  color: rgba(55, 55, 63, 0.4);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.chefs .chef-member .social a:hover {
  color: rgba(55, 55, 63, 0.9);
}

.chefs .chef-member .social i {
  font-size: 18px;
}

.chefs .chef-member .member-info {
  padding: 10px 15px 20px 15px;
}

.chefs .chef-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: var(--color-secondary);
}

.chefs .chef-member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: rgba(33, 37, 41, 0.4);
}

.chefs .chef-member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: rgba(33, 37, 41, 0.7);
}

.chefs .chef-member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.15);
}

.chefs .chef-member:hover .social {
  right: 8px;
  opacity: 1;
}

/*--------------------------------------------------------------
# Book A Table Section
--------------------------------------------------------------*/
.book-a-table .reservation-img {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.book-a-table .reservation-form-bg {
  background: rgba(55, 55, 63, 0.04);
}

.book-a-table .php-email-form {
  padding: 40px;
}

@media (max-width: 575px) {
  .book-a-table .php-email-form {
    padding: 20px;
  }
}

.book-a-table .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.book-a-table .php-email-form h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
}

.book-a-table .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.book-a-table .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.book-a-table .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.book-a-table .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.book-a-table .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.book-a-table .php-email-form input,
.book-a-table .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.book-a-table .php-email-form input:focus,
.book-a-table .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.book-a-table .php-email-form input {
  padding: 12px 15px;
}

.book-a-table .php-email-form textarea {
  padding: 12px 15px;
}

.book-a-table .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 14px 60px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.book-a-table .php-email-form button[type=submit]:hover {
  background: #ec2727;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d1d7;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    border: 6px solid var(--color-primary);
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.2);
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: #f4f4f4;
  padding: 30px;
  height: 100%;
}

.contact .info-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  line-height: 0;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50%;
  margin-right: 15px;
}

.contact .info-item h3 {
  font-size: 20px;
  color: #6c757d;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.contact .info-item p {
  padding: 0;
  margin: 0;
  line-height: 24px;
  font-size: 14px;
}

.contact .info-item .social-links a {
  font-size: 24px;
  display: inline-block;
  color: rgba(55, 55, 63, 0.7);
  line-height: 1;
  margin: 4px 6px 0 0;
  transition: 0.3s;
}

.contact .info-item .social-links a:hover {
  color: var(--color-primary);
}

.contact .php-email-form {
  width: 100%;
  margin-top: 30px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.contact .php-email-form .form-group {
  padding-bottom: 20px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form input {
  height: 48px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 12px 40px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ec2727;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
  width: 100%;
  overflow: hidden;
}

/* FIXED HEIGHT FOR CONSISTENT SLIDER */
.hero-img {
  width: 100%;
  height: 330px;
  object-fit: cover;
object-position: center 80px;
}

/* Remove padding */
.section-bg {
  padding: 0 !important;
}

/* Optional: smoother slider look */
.carousel-item {
  transition: transform 0.8s ease-in-out;
}

@media (max-width: 768px) {
  .hero-img {
    height: 165px;
    object-position: center top;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: #1f1f24;
  padding: 50px 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer .icon {
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
  color: #fff;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer .copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}

/*--------------------------------------------------------------
# Modern Spice Home Design
--------------------------------------------------------------*/
:root {
  --spice-red: #d41920;
  --spice-orange: #f37021;
  --spice-gold: #e8c56a;
  --spice-brown: #4c2412;
  --spice-cream: #fff8ea;
  --spice-soft: #fff2d5;
}

.header {
  background: var(--header-bg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 28px rgba(74, 8, 6, 0.38);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 197, 106, 0.42);
}

.header .header-inner {
  background: transparent;
}

.header .logo {
  background: transparent;
  line-height: 0;
}

.header .logo img {
  background: transparent;
  mix-blend-mode: normal;
}

.header .navbar {
  background: transparent;
}

.header.sticked {
  border-color: rgba(232, 197, 106, 0.55);
}

.header .logo h1 {
  color: #fff;
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  background: linear-gradient(135deg, var(--spice-red), var(--spice-orange));
  box-shadow: 0 10px 22px rgba(181, 31, 22, 0.25);
}

.header .navbar a,
.header .navbar a:focus {
  color: var(--header-link);
}

.header .navbar a:hover,
.header .navbar .active,
.header .navbar .active:focus,
.header .navbar li:hover > a {
  color: var(--header-link-hover);
}

.header .mobile-nav-toggle {
  color: var(--header-accent);
}

@media (min-width: 992px) {
  .header .header-inner {
    display: grid;
    grid-template-columns: minmax(160px, auto) 1fr minmax(0, auto);
    align-items: center;
    column-gap: 12px;
    position: relative;
  }

  .header .logo {
    grid-column: 1;
    justify-self: start;
    flex-shrink: 0;
    margin-right: 0 !important;
    position: relative;
    z-index: 2;
  }

  .header .navbar {
    grid-column: 2;
    justify-self: center;
    position: static;
    transform: none;
    flex: none;
    width: 100%;
    max-width: 100%;
    margin: 0;
    min-width: 0;
    pointer-events: auto;
  }

  .header .navbar > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2px 4px;
    row-gap: 4px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }

  .header .navbar > ul > li {
    padding: 0;
  }

  .header .navbar > ul > li > a {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  }

  .header .navbar > ul > li > a:hover,
  .header .navbar > ul > li > a.active {
    color: var(--header-link-hover) !important;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 0 1px rgba(232, 197, 106, 0.35);
  }

  .header .mobile-nav-show {
    grid-column: 3;
  }
}

@media (min-width: 1200px) {
  .header .navbar > ul > li > a {
    padding: 8px 14px;
    font-size: 15px;
  }
}

.home-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(190px, 22.5vh, 260px);
  padding: clamp(72px, 7vh, 84px) 0 clamp(8px, 1vh, 14px);
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 194, 71, 0.42), transparent 28%),
    radial-gradient(circle at 90% 15%, rgba(243, 112, 33, 0.22), transparent 30%),
    linear-gradient(135deg, #fff8ea 0%, #fff3d3 48%, #ffe4ba 100%);
  overflow-x: clip;
  overflow-y: visible;
}

.home-hero.home-hero--atoz {
  overflow: visible;
}

.home-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(181, 31, 22, 0.06) 1px, transparent 1px),
    linear-gradient(30deg, rgba(76, 36, 18, 0.04) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
}

.spice-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.75;
}

.spice-orb-one {
  width: 220px;
  height: 220px;
  left: -80px;
  bottom: 40px;
  background: rgba(181, 31, 22, 0.16);
}

.spice-orb-two {
  width: 150px;
  height: 150px;
  right: 8%;
  top: 130px;
  background: rgba(255, 194, 71, 0.45);
}

.home-hero .container {
  position: relative;
  z-index: 2;
}

.hero-slider-band {
  position: relative;
  z-index: 2;
  width: 100%;
  height: clamp(284px, 31vw, 389px);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 60px rgba(76, 36, 18, 0.14);
}

.hero-slider-band .hero-slider-carousel,
.hero-slider-band .carousel-inner,
.hero-slider-band .carousel-item,
.hero-slider-band picture {
  height: 100%;
}

.hero-slider-band .carousel-item picture,
.hero-slider-band picture {
  display: block;
  width: 100%;
}

.hero-slider-indicators {
  margin-bottom: 10px;
  z-index: 4;
}

.hero-slider-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.65);
}

.hero-slider-indicators .active {
  background-color: var(--spice-red);
}

.hero-copy-container {
  position: absolute !important;
  inset: 0;
  z-index: 3;
  padding-top: 0;
  pointer-events: none;
}

.hero-content-card {
  max-width: 560px;
  padding: 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(181, 31, 22, 0.12);
  box-shadow: 0 24px 60px rgba(76, 36, 18, 0.18);
  backdrop-filter: blur(8px);
}

.hero-button-card {
  position: absolute;
  left: clamp(20px, 6vw, 72px);
  bottom: clamp(14px, 3vw, 32px);
  display: inline-flex;
  width: auto;
  max-width: none;
  padding: 12px 14px;
  border-radius: 999px;
  pointer-events: auto;
  animation: heroButtonsAuto 6s ease-in-out infinite;
}

.hero-button-card .hero-btn {
  padding: 11px 22px;
  font-size: 14px;
}

.hero-button-card .hero-actions {
  margin-top: 0;
}

.hero-button-card:hover {
  animation-play-state: paused;
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroButtonsAuto {
  0%, 14% {
    opacity: 0;
    transform: translateY(14px);
  }
  24%, 76% {
    opacity: 1;
    transform: translateY(0);
  }
  88%, 100% {
    opacity: 0;
    transform: translateY(14px);
  }
}

.hero-stats-container {
  position: relative;
  z-index: 2;
  padding: 0 12px;
  margin-top: clamp(8px, 1.5vw, 16px);
}

.home-hero [data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

[data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--spice-red);
  background: rgba(181, 31, 22, 0.08);
  border: 1px solid rgba(181, 31, 22, 0.12);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.home-hero h1 {
  margin: 18px 0 14px;
  color: var(--spice-brown);
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -1.6px;
}

.home-hero p {
  max-width: 520px;
  margin: 0;
  color: #75503b;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 800;
  transition: 0.3s ease;
}

.hero-btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--spice-red), var(--spice-orange));
  box-shadow: 0 16px 32px rgba(181, 31, 22, 0.28);
}

.hero-btn.secondary {
  color: var(--spice-brown);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(76, 36, 18, 0.12);
}

.hero-btn:hover {
  color: #fff;
  transform: translateY(-3px);
}

.hero-btn.secondary:hover {
  color: var(--spice-brown);
  background: #fff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 100%;
  margin: 14px auto 0;
}

.hero-stats div {
  padding: 14px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(181, 31, 22, 0.1);
  box-shadow: 0 16px 34px rgba(76, 36, 18, 0.08);
  text-align: center;
}

.hero-stats strong {
  display: block;
  color: var(--spice-red);
  font-size: 22px;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  color: #7a5a46;
  font-size: 12px;
  font-weight: 700;
}

.hero-showcase {
  position: relative;
  padding: 34px;
  border-radius: 44px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 226, 180, 0.62));
  box-shadow: 0 32px 80px rgba(76, 36, 18, 0.18);
}

.hero-showcase .hero-main-img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 28px 28px rgba(76, 36, 18, 0.22));
}

.home-hero .hero-main-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
}

.hero-floating-card {
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  z-index: 4;
  width: clamp(190px, 16vw, 220px);
  min-width: 190px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(181, 31, 22, 0.12);
  box-shadow: 0 20px 45px rgba(76, 36, 18, 0.16);
  backdrop-filter: blur(6px);
}

.hero-floating-card.top {
  top: 50%;
  transform: translateY(calc(-100% - 8px));
}

.hero-floating-card.bottom {
  top: 50%;
  transform: translateY(8px);
}

.hero-floating-card span {
  display: block;
  color: var(--spice-orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-floating-card strong {
  display: block;
  color: var(--spice-brown);
  margin-top: 4px;
}

.home-about {
  background:
    radial-gradient(circle at 7% 22%, rgba(255, 194, 71, 0.12), transparent 24%),
    #fff;
  padding: 42px 0 62px;
}

.about-ux-row {
  max-width: 1120px;
  margin: 0 auto;
}

.about-intro {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto 30px;
  text-align: center;
}

.about-intro h2 {
  margin: 18px auto 14px;
  width: 100%;
  max-width: none;
  color: var(--spice-brown);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -1px;
}

.about-intro p {
  max-width: 760px;
  margin: 0 auto;
  color: #75503b;
  font-size: 18px;
  line-height: 1.7;
}

.home-products,
.testimonials {
  padding: 58px 0;
}

.home-about .section-header,
.home-products .section-header,
.testimonials .section-header {
  padding-bottom: 22px;
}

.home-about .section-header h2,
.home-products .section-header h2,
.testimonials .section-header h2 {
  color: var(--spice-red);
  font-weight: 800;
  letter-spacing: 1.8px;
}

.home-about .section-header p,
.home-products .section-header p,
.testimonials .section-header p {
  color: var(--spice-brown);
  font-family: var(--font-secondary);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.8px;
  line-height: 1.12;
}

.home-about .section-header p span,
.home-products .section-header p span,
.testimonials .section-header p span {
  color: var(--spice-red);
}

.about-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 22px 55px rgba(76, 36, 18, 0.14);
}

.about-image-wrap img {
  width: 100%;
  min-height: 340px;
  max-height: 390px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.about-image-wrap:hover img {
  transform: scale(1.05);
}

.quality-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 18px 22px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--spice-red), var(--spice-orange));
  box-shadow: 0 18px 40px rgba(181, 31, 22, 0.28);
}

.quality-badge strong,
.quality-badge span {
  display: block;
}

.about-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 18px 0 0;
}

.about-proof span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 9px 15px;
  color: var(--spice-red);
  background: rgba(181, 31, 22, 0.07);
  border: 1px solid rgba(181, 31, 22, 0.12);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.feature-card {
  height: 100%;
  padding: 20px;
  border-radius: 22px;
  background: var(--spice-cream);
  border: 1px solid rgba(181, 31, 22, 0.08);
  transition: 0.3s ease;
}

.feature-card:hover,
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(76, 36, 18, 0.14);
}

.feature-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--spice-red), var(--spice-orange));
  border-radius: 16px;
  font-size: 22px;
}

.feature-card h3 {
  color: var(--spice-brown);
  font-size: 18px;
  font-weight: 800;
}

.feature-card p {
  margin: 0;
  color: #765844;
  font-size: 14px;
}

.home-products {
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 194, 71, 0.24), transparent 26%),
    linear-gradient(180deg, #fff8ea 0%, #ffffff 100%);
}

.product-card {
  height: 100%;
  padding: 28px;
  border-radius: 32px;
  background: #fff;
  border: 1px solid rgba(181, 31, 22, 0.1);
  box-shadow: 0 16px 42px rgba(76, 36, 18, 0.08);
  text-align: center;
  transition: 0.3s ease;
}

.product-card.featured {
  background: linear-gradient(180deg, #fff8ea, #fff);
  border-color: rgba(243, 112, 33, 0.26);
}

.product-img-wrap {
  --product-img-box: 240px;
  --product-img-fill: 90%;
  width: min(var(--product-img-box), 100%);
  aspect-ratio: 1 / 1;
  height: auto;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(145deg, var(--spice-soft), #fff);
  padding: 0;
  flex-shrink: 0;
}

.product-img-wrap img,
.product-img-wrap img.img-fluid {
  display: block;
  width: var(--product-img-fill);
  height: var(--product-img-fill);
  max-width: var(--product-img-fill);
  max-height: var(--product-img-fill);
  object-fit: contain;
  object-position: center center;
  transition: transform 0.35s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.08) rotate(-3deg);
}

.product-tag {
  display: inline-flex;
  color: var(--spice-red);
  background: rgba(181, 31, 22, 0.08);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.product-card h3 {
  margin: 16px 0 10px;
  color: var(--spice-brown);
  font-size: 24px;
  font-weight: 900;
}

.product-name-link {
  display: inline-block;
  text-decoration: none;
}

.product-name-link:hover h3 {
  color: var(--spice-red);
}

.product-card p {
  color: #75503b;
  line-height: 1.7;
}

.product-card .price {
  color: var(--spice-red);
  font-size: 22px;
  font-weight: 900;
}

.dealer-section {
  position: relative;
  padding: 65px 20px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(76, 36, 18, 0.92), rgba(181, 31, 22, 0.9)),
    url("../img/stats-bg.jpg") center center / cover;
}

.dealer-section .section-kicker {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
}

.dealer-section .section-title {
  color: #fff;
  font-size: clamp(34px, 5vw, 56px);
  margin-top: 18px;
}

.dealer-section p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.86);
}

.btn-dark-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 15px 34px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--spice-red), var(--spice-orange));
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-dark-custom:hover {
  color: var(--spice-brown);
  background: linear-gradient(135deg, #fff, var(--spice-gold));
  border-color: rgba(255, 255, 255, 0.75);
  transform: translateY(-3px);
}

.testimonials {
  background: var(--spice-cream);
}

.testimonials .testimonial-item .testimonial-content {
  border-left-color: var(--spice-orange);
  background: #fff;
  border-radius: 24px;
  padding: 28px 30px;
  box-shadow: 0 18px 42px rgba(76, 36, 18, 0.08);
}

.about-page {
  position: relative;
  overflow: hidden;
  padding: 130px 0 72px;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 194, 71, 0.32), transparent 26%),
    radial-gradient(circle at 92% 10%, rgba(243, 112, 33, 0.16), transparent 30%),
    linear-gradient(135deg, #fff8ea 0%, #fff 48%, #fff2d5 100%);
}

.about-page:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(181, 31, 22, 0.045) 1px, transparent 1px),
    linear-gradient(30deg, rgba(76, 36, 18, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  pointer-events: none;
}

.about-page .container {
  position: relative;
  z-index: 2;
}

.about-page-hero {
  padding: 34px;
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(181, 31, 22, 0.1);
  box-shadow: 0 28px 70px rgba(76, 36, 18, 0.12);
  backdrop-filter: blur(8px);
}

.about-page-copy h1 {
  margin: 20px 0 16px;
  color: var(--spice-brown);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -1.6px;
}

.about-page-copy p {
  max-width: 620px;
  margin: 0;
  color: #75503b;
  font-size: 18px;
  line-height: 1.75;
}

.about-page-proof {
  justify-content: flex-start;
  margin-top: 24px;
}

.about-page-image {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 22px 58px rgba(76, 36, 18, 0.16);
}

.about-page-image img {
  width: 100%;
  min-height: 410px;
  object-fit: cover;
  object-position: center;
}

.about-value-row {
  margin-top: 28px;
}

.about-value-card {
  height: 100%;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(181, 31, 22, 0.1);
  box-shadow: 0 18px 45px rgba(76, 36, 18, 0.08);
  transition: 0.3s ease;
}

.about-value-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 55px rgba(76, 36, 18, 0.14);
}

.about-value-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--spice-red), var(--spice-orange));
  border-radius: 18px;
  font-size: 24px;
}

.about-value-card h3 {
  color: var(--spice-brown);
  font-size: 24px;
  font-weight: 900;
}

.about-value-card p {
  margin: 0;
  color: #765844;
  line-height: 1.75;
}

.dealer-apply-page {
  position: relative;
  overflow: hidden;
  padding: 130px 0 72px;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 194, 71, 0.34), transparent 26%),
    radial-gradient(circle at 92% 10%, rgba(243, 112, 33, 0.18), transparent 30%),
    linear-gradient(135deg, #fff8ea 0%, #ffffff 50%, #fff2d5 100%);
}

.dealer-apply-page:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(181, 31, 22, 0.045) 1px, transparent 1px),
    linear-gradient(30deg, rgba(76, 36, 18, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  pointer-events: none;
}

.dealer-apply-page .container {
  position: relative;
  z-index: 2;
}

.dealer-apply-hero,
.dealer-form-card {
  padding: 34px;
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(181, 31, 22, 0.1);
  box-shadow: 0 28px 70px rgba(76, 36, 18, 0.12);
  backdrop-filter: blur(8px);
}

.dealer-hero-copy h1,
.dealer-form-heading h2 {
  margin: 20px 0 16px;
  color: var(--spice-brown);
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: -1.5px;
}

.dealer-hero-copy p,
.dealer-form-heading p {
  max-width: 620px;
  margin: 0;
  color: #75503b;
  font-size: 18px;
  line-height: 1.75;
}

.dealer-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.dealer-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border-radius: 18px;
  color: var(--spice-brown);
  background: var(--spice-cream);
  border: 1px solid rgba(181, 31, 22, 0.1);
  font-weight: 800;
}

.dealer-benefits i {
  color: var(--spice-red);
  font-size: 18px;
}

.dealer-hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 22px 58px rgba(76, 36, 18, 0.16);
}

.dealer-hero-image img {
  width: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center;
}

.dealer-image-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 17px 20px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--spice-red), var(--spice-orange));
  box-shadow: 0 18px 40px rgba(181, 31, 22, 0.28);
}

.dealer-image-badge strong,
.dealer-image-badge span {
  display: block;
}

.dealer-alert {
  margin: 26px 0 0;
  border-radius: 18px;
}

.dealer-form-card {
  margin-top: 30px;
}

.dealer-form-heading {
  margin-bottom: 26px;
  text-align: center;
}

.dealer-form-heading h2 {
  font-size: clamp(32px, 4vw, 50px);
}

.dealer-form-heading p {
  margin-left: auto;
  margin-right: auto;
}

.dealer-form-card label {
  margin-bottom: 7px;
  color: var(--spice-brown);
  font-weight: 800;
}

.dealer-form-card .form-control {
  min-height: 48px;
  border-radius: 15px;
  border-color: rgba(181, 31, 22, 0.16);
  background: #fffaf1;
}

.dealer-form-card textarea.form-control {
  min-height: auto;
}

.dealer-form-card .form-control:focus {
  border-color: var(--spice-orange);
  box-shadow: 0 0 0 0.18rem rgba(243, 112, 33, 0.16);
}

@media (max-width: 991px) {
  .home-hero:not(.home-hero--atoz) {
    min-height: clamp(150px, 19vh, 210px);
    padding: 78px 0 12px;
    text-align: center;
  }

  .hero-slider-band {
    height: clamp(284px, 52vw, 370px);
  }

  .hero-content-card {
    margin: 0 auto;
    text-align: center;
  }

  .hero-button-card {
    display: inline-flex;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    bottom: clamp(12px, 3vw, 28px);
  }

  .hero-floating-card {
    display: none;
  }

  .hero-showcase {
    max-width: 560px;
    margin: 0 auto;
  }

  .home-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    margin-left: auto;
    margin-right: auto;
  }

  .about-page {
    padding-top: 112px;
  }

  .about-page-proof {
    justify-content: center;
  }

  .about-page-copy {
    text-align: center;
  }

  .about-page-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .dealer-apply-page {
    padding-top: 112px;
  }

  .dealer-hero-copy,
  .dealer-form-heading {
    text-align: center;
  }

  .dealer-hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .home-hero:not(.home-hero--atoz) {
    min-height: auto;
    padding: 76px 0 10px;
  }
}

@media (max-width: 575px) {
  .home-hero h1 {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-slider-band {
    height: 343px;
  }

  .hero-content-card {
    padding: 22px;
    border-radius: 24px;
  }

  .hero-button-card {
    padding: 12px;
    border-radius: 26px;
  }

  .hero-button-card .hero-actions {
    gap: 8px;
  }

  .hero-button-card .hero-btn {
    padding: 11px 15px;
    font-size: 13px;
  }

  .about-image-wrap img {
    min-height: 260px;
    max-height: 300px;
  }

  .about-intro h2 {
    font-size: 30px;
  }

  .about-intro p {
    font-size: 16px;
  }

  .about-page-hero {
    padding: 22px;
    border-radius: 28px;
  }

  .about-page-copy h1 {
    font-size: 34px;
  }

  .about-page-image img {
    min-height: 300px;
  }

  .dealer-apply-hero,
  .dealer-form-card {
    padding: 22px;
    border-radius: 28px;
  }

  .dealer-hero-copy h1,
  .dealer-form-heading h2 {
    font-size: 34px;
  }

  .dealer-benefits {
    grid-template-columns: 1fr;
  }

  .dealer-hero-image img {
    min-height: 300px;
  }

}

/*--------------------------------------------------------------
# Hero — premium landing layout
--------------------------------------------------------------*/
.home-hero:not(.home-hero--atoz).has-hero-bg {
  background-color: #1f0c04;
  --hero-bg-h: clamp(190px, 22.5vh, 260px);
  --hero-slider-size: 400px;
  min-height: var(--hero-bg-h);
}

.home-hero {
  --hero-slider-size: 400px;
}

.hero-shell {
  position: relative;
  z-index: 2;
  container-type: inline-size;
  container-name: hero-shell;
  display: flex;
  flex-direction: column;
}

.home-hero--modern .hero-shell {
  min-height: calc(var(--hero-slider-size, 400px) + 48px);
}

.home-hero--modern.has-hero-bg {
  min-height: max(var(--hero-bg-h), calc(var(--hero-slider-size, 400px) + clamp(140px, 18vh, 180px)));
}

.home-hero--modern .hero-row {
  flex: 1;
}

.home-hero--modern .hero-text-col {
  text-align: left;
}

.home-hero--modern .hero-copy-panel .hero-actions {
  margin-top: clamp(16px, 2.5vw, 22px);
}

@media (min-width: 992px) {
  .home-hero--modern .hero-visual-col {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .home-hero--modern .hero-visual-stage {
    margin: 0;
    margin-left: auto;
  }
}

@media (max-width: 991px) {
  .home-hero--modern .hero-text-col {
    text-align: center;
    order: 1;
  }

  .home-hero--modern .hero-copy-panel {
    margin-left: auto;
    margin-right: auto;
  }

  .home-hero--modern .hero-copy-panel .hero-actions {
    justify-content: center;
  }

  .home-hero--modern .hero-visual-col {
    order: 2;
  }
}

.home-hero--modern .hero-stats-bar--modern {
  margin-top: 8px;
  flex-shrink: 0;
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: #1f0c04;
  background-image: var(--hero-bg-desktop);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-background-size: cover;
}

@media (max-width: 767px) {
  .hero-bg-media {
    background-image: var(--hero-bg-mobile, var(--hero-bg-desktop));
    background-position: center top;
  }
}

.home-hero.has-hero-bg:before {
  display: none;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(20, 8, 3, 0.92) 0%, rgba(35, 14, 6, 0.72) 38%, rgba(35, 14, 6, 0.35) 62%, rgba(20, 8, 3, 0.18) 100%);
}

.home-hero:not(.has-hero-bg) .hero-bg-overlay {
  display: none;
}

.hero-row {
  position: relative;
  z-index: 2;
  min-height: calc(var(--hero-slider-size, 400px) + 32px);
  align-items: center;
}

.hero-copy-panel {
  max-width: 560px;
}

.home-hero.has-hero-bg .hero-copy-panel {
  padding: clamp(12px, 1.8vw, 18px);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-text-col {
  color: #fff;
  display: flex;
  align-items: center;
  align-self: center;
}

.home-hero.has-hero-bg .hero-text-col .hero-kicker {
  color: #fff;
  background: rgba(255, 194, 71, 0.16);
  border-color: rgba(255, 194, 71, 0.35);
}

.hero-kicker i {
  font-size: 0.95em;
  color: var(--spice-gold);
}

.hero-title {
  font-family: var(--font-secondary);
  font-weight: 800;
  font-size: clamp(22px, 3.6vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.8px;
  margin: 8px 0 8px;
}

.home-hero.has-hero-bg .hero-title {
  color: #fff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero-title-accent {
  color: var(--spice-gold);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.92em;
  letter-spacing: 0;
}

.home-hero:not(.has-hero-bg) .hero-title {
  color: var(--spice-brown);
}

.home-hero:not(.has-hero-bg) .hero-title-accent {
  color: var(--spice-red);
}

.hero-tagline {
  font-weight: 600;
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.6;
  letter-spacing: 0.2px;
  margin-bottom: 0;
  max-width: 42ch;
  opacity: 0.95;
}

.home-hero.has-hero-bg .hero-tagline {
  color: rgba(255, 255, 255, 0.9);
}

.home-hero:not(.has-hero-bg) .hero-tagline {
  color: var(--spice-brown);
}

.home-hero.has-hero-bg .hero-btn.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: none;
}

.home-hero.has-hero-bg .hero-btn.secondary:hover {
  color: var(--spice-brown);
  background: #fff;
  border-color: #fff;
}

.hero-btn i {
  margin-right: 8px;
  font-size: 1.05em;
}

.hero-showcase-panel {
  position: relative;
  width: auto;
  max-width: calc(var(--hero-slider-size, 400px) + 16px);
  margin: 0;
  padding: 8px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fffdf8 0%, #fff6e8 100%);
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.28),
    0 6px 16px rgba(181, 31, 22, 0.1);
  transform-style: preserve-3d;
}

.home-hero.has-hero-bg .hero-showcase-panel {
  width: auto;
  max-width: calc(var(--hero-slider-size, 400px) + 16px);
}

.hero-showcase-panel--rect {
  overflow: hidden;
}

.hero-showcase-panel:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 194, 71, 0.12), transparent 55%);
  pointer-events: none;
}

@media (min-width: 992px) {
  .hero-showcase-panel--rect {
    transform: perspective(1200px) rotateY(-6deg);
    transform-origin: right center;
  }
}

.hero-showcase-label {
  display: block;
  margin-bottom: 6px;
  text-align: center;
  color: var(--spice-red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero-visual-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 100%;
  height: 100%;
  min-height: var(--hero-slider-size, 400px);
}

.hero-rotator {
  position: relative;
  z-index: 2;
  width: var(--hero-slider-size, 400px);
  max-width: 100%;
  height: var(--hero-slider-size, 400px);
  margin: 0;
  padding-bottom: 1.25rem;
}

.hero-rotator .carousel-inner {
  overflow: hidden;
  border-radius: 12px;
  background: #1a0a04;
  transform-style: preserve-3d;
  width: var(--hero-slider-size, 400px);
  height: var(--hero-slider-size, 400px);
  max-width: 100%;
  position: relative;
}

.hero-rotator--3d {
  perspective: 1600px;
}

.hero-rotator--3d.carousel-fade .carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  float: none;
  margin: 0;
  opacity: 0;
  transform: rotateY(75deg) scale(0.82) translateZ(-120px);
  transform-origin: center center;
  transition: transform 0.85s cubic-bezier(0.34, 1.15, 0.64, 1), opacity 0.55s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  pointer-events: none;
}

.hero-rotator--3d.carousel-fade .carousel-item.active {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  transform: rotateY(0deg) scale(1) translateZ(0);
  pointer-events: auto;
  z-index: 3;
}

.hero-rotator--3d.carousel-fade .carousel-item.hero-3d-out-next {
  transform: rotateY(-75deg) scale(0.82) translateZ(-120px);
  opacity: 0;
}

.hero-rotator--3d.carousel-fade .carousel-item.hero-3d-out-prev {
  transform: rotateY(75deg) scale(0.82) translateZ(-120px);
  opacity: 0;
}

.hero-rotator--3d.carousel-fade .carousel-item.hero-3d-enter-from-right {
  transform: rotateY(72deg) scale(0.84) translateZ(-100px);
  opacity: 0.4;
  z-index: 4;
}

.hero-rotator--3d.carousel-fade .carousel-item.hero-3d-enter-from-left {
  transform: rotateY(-72deg) scale(0.84) translateZ(-100px);
  opacity: 0.4;
  z-index: 4;
}

.hero-rotator--3d.carousel-fade .carousel-item.hero-3d-enter-active {
  transform: rotateY(0deg) scale(1) translateZ(0);
  opacity: 1;
  z-index: 5;
}

@media (prefers-reduced-motion: reduce) {
  .hero-rotator--3d .carousel-item,
  .hero-showcase-panel--rect {
    transition: opacity 0.25s ease !important;
    transform: none !important;
  }
}

.hero-rotator .carousel-item {
  text-align: center;
}

.hero-rotator-frame {
  position: relative;
  width: var(--hero-slider-size, 400px);
  height: var(--hero-slider-size, 400px);
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: #1a0a04;
}

.hero-rotator-frame--static {
  width: var(--hero-slider-size, 400px);
  height: var(--hero-slider-size, 400px);
  max-width: 100%;
  margin: 0 auto;
}

.hero-rotator-frame picture,
.hero-rotator-link {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
}

.hero-rotator-link {
  color: inherit;
  text-decoration: none;
}

.hero-rotator-img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: var(--hero-slider-size, 400px);
  max-height: var(--hero-slider-size, 400px);
  object-fit: cover;
  object-position: center center;
}

.hero-rotator-img--cover {
  object-fit: cover;
  object-position: center center;
}

.hero-rotator-img--contain {
  object-fit: contain;
  object-position: center center;
  padding: 10px;
  filter: drop-shadow(0 10px 18px rgba(76, 36, 18, 0.18));
}

.hero-rotator-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px !important;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  opacity: 0.95;
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 6px 18px rgba(76, 36, 18, 0.22);
  transform: translateY(-50%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-rotator-control:focus {
  outline: 2px solid var(--spice-orange);
  outline-offset: 2px;
}

.hero-rotator-control:hover {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 10px 24px rgba(76, 36, 18, 0.28);
}

.hero-rotator-control.carousel-control-prev {
  left: 8px;
}

.hero-rotator-control.carousel-control-next {
  right: 8px;
}

.hero-rotator-control-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--spice-red);
  font-size: 1.1rem;
  line-height: 1;
}

.hero-rotator-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 0;
}

.hero-rotator-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background-color: rgba(181, 31, 22, 0.35);
  opacity: 1;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.hero-rotator-indicators .active {
  background-color: var(--spice-red);
  transform: scale(1.2);
}

.hero-stats-bar {
  position: relative;
  z-index: 2;
  margin-top: clamp(8px, 1.2vw, 14px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 920px;
  margin: 0 auto;
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(181, 31, 22, 0.1);
  box-shadow: 0 12px 30px rgba(76, 36, 18, 0.1);
  text-align: left;
}

.home-hero.has-hero-bg .hero-stat-item {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--spice-red), var(--spice-orange));
  color: #fff;
  font-size: 1.1rem;
}

.hero-stat-item strong {
  display: block;
  color: var(--spice-red);
  font-size: 18px;
  line-height: 1.1;
}

.home-hero.has-hero-bg .hero-stat-item strong {
  color: #fff;
}

.hero-stat-item span {
  display: block;
  margin-top: 2px;
  color: #7a5a46;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
}

.home-hero.has-hero-bg .hero-stat-item span {
  color: rgba(255, 255, 255, 0.82);
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  .home-hero:not(.home-hero--atoz).has-hero-bg {
    --hero-bg-h: clamp(140px, 20vh, 200px);
  }

  .home-hero:not(.home-hero--atoz) {
    min-height: clamp(140px, 20vh, 200px);
  }

  .hero-row {
    min-height: auto;
  }

  .home-hero.has-hero-bg .hero-showcase-panel {
    width: auto;
    max-width: calc(var(--hero-slider-size, 400px) + 16px);
  }

  .hero-tagline {
    max-width: none;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .hero-bg-overlay {
    background: linear-gradient(180deg, rgba(20, 8, 3, 0.9) 0%, rgba(20, 8, 3, 0.72) 55%, rgba(20, 8, 3, 0.55) 100%);
  }

  .hero-row {
    min-height: auto;
  }

  .hero-copy-panel {
    max-width: none;
    text-align: center;
  }

  .home-hero.has-hero-bg .hero-copy-panel {
    padding: 16px;
    border-radius: 20px;
  }

  .hero-tagline {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .home-hero.has-hero-bg .hero-showcase-panel {
    width: auto;
    max-width: min(calc(var(--hero-slider-size, 400px) + 16px), 100%);
    margin: 0 auto;
  }

  .hero-showcase-panel--rect {
    transform: none;
  }

  .hero-rotator,
  .hero-rotator .carousel-inner,
  .hero-rotator-frame,
  .hero-rotator-frame--static {
    width: min(var(--hero-slider-size, 400px), calc(100vw - 48px));
    height: min(var(--hero-slider-size, 400px), calc(100vw - 48px));
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .hero-stat-item {
    justify-content: flex-start;
  }
}

@media (min-width: 992px) {
  .home-hero .hero-row {
    min-height: calc(var(--hero-slider-size, 400px) + 40px);
    align-items: center;
  }

  .home-hero .hero-text-col,
  .home-hero .hero-visual-col {
    align-self: center;
  }
}

@media (min-width: 1920px) {
  .home-hero:not(.home-hero--atoz).has-hero-bg {
    --hero-bg-h: clamp(210px, 20vh, 260px);
  }

  .home-hero:not(.home-hero--atoz) {
    min-height: clamp(210px, 20vh, 260px);
  }
}

@media (max-width: 991px) {
  .hero-text-col {
    text-align: center;
  }

  .hero-copy-panel {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-row {
    min-height: calc(var(--hero-slider-size, 400px) + 24px);
    align-items: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual-col {
    justify-content: center;
    align-items: center;
    align-self: center;
    min-height: auto;
  }

  .hero-showcase-panel,
  .home-hero.has-hero-bg .hero-showcase-panel {
    margin: 0 auto;
  }

  .hero-rotator {
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------
# Hero — modern unique theme
--------------------------------------------------------------*/
.home-hero--modern .hero-bg-overlay {
  background:
    radial-gradient(circle at 12% 55%, rgba(243, 112, 33, 0.38), transparent 46%),
    radial-gradient(circle at 88% 28%, rgba(255, 194, 71, 0.24), transparent 42%),
    linear-gradient(118deg, rgba(10, 4, 1, 0.93) 0%, rgba(28, 11, 4, 0.76) 44%, rgba(28, 11, 4, 0.38) 72%, rgba(10, 4, 1, 0.2) 100%);
}

.home-hero--modern .hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.home-hero--modern .hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: heroOrbFloat 9s ease-in-out infinite;
}

.home-hero--modern .hero-orb-a {
  width: 220px;
  height: 220px;
  left: -40px;
  top: 18%;
  background: rgba(243, 112, 33, 0.45);
}

.home-hero--modern .hero-orb-b {
  width: 180px;
  height: 180px;
  right: 8%;
  top: 10%;
  background: rgba(255, 194, 71, 0.38);
  animation-delay: -3s;
}

.home-hero--modern .hero-orb-c {
  width: 140px;
  height: 140px;
  right: 22%;
  bottom: 8%;
  background: rgba(181, 31, 22, 0.35);
  animation-delay: -5s;
}

@keyframes heroOrbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-14px) scale(1.05); }
}

.home-hero--modern.has-hero-bg .hero-copy-panel {
  position: relative;
  border-radius: 24px;
  padding: clamp(16px, 2vw, 22px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.home-hero--modern.has-hero-bg .hero-kicker {
  background: linear-gradient(135deg, rgba(255, 194, 71, 0.22), rgba(243, 112, 33, 0.14));
  border-color: rgba(255, 194, 71, 0.42);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.home-hero--modern .hero-title {
  font-size: clamp(26px, 4vw, 48px);
  letter-spacing: -1px;
}

.home-hero--modern .hero-title-accent {
  background: linear-gradient(92deg, #ffe08a 0%, #ffc247 45%, #ff9348 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--font-primary);
  font-size: 1.05em;
  letter-spacing: 0.5px;
}

.home-hero--modern .hero-tagline {
  font-weight: 500;
  opacity: 0.92;
}

.home-hero--modern .hero-btn {
  font-size: 14px;
  letter-spacing: 0.2px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.home-hero--modern .hero-btn.primary {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 30px rgba(181, 31, 22, 0.38);
}

.home-hero--modern .hero-btn.primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.28) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform 0.65s ease;
}

.home-hero--modern .hero-btn.primary:hover::after {
  transform: translateX(130%);
}

.home-hero--modern .hero-btn.secondary {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.home-hero--modern .hero-visual-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(var(--hero-slider-size, 400px) + 40px);
  height: calc(var(--hero-slider-size, 400px) + 56px);
  max-width: 100%;
  margin: 0 auto;
}

.home-hero--modern .hero-stage-ring {
  position: absolute;
  border-radius: 26px;
  pointer-events: none;
  animation: heroRingPulse 5s ease-in-out infinite;
}

.home-hero--modern .hero-stage-ring--outer {
  inset: 0;
  border: 1px solid rgba(255, 194, 71, 0.42);
  box-shadow: 0 0 30px rgba(255, 194, 71, 0.12);
}

.home-hero--modern .hero-stage-ring--inner {
  inset: 10px;
  border: 1px dashed rgba(243, 112, 33, 0.45);
  animation-delay: -2.5s;
}

@keyframes heroRingPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

.home-hero--modern .hero-showcase-panel--modern {
  position: relative;
  z-index: 2;
  width: calc(var(--hero-slider-size, 400px) + 16px);
  max-width: 100%;
  padding: 12px;
  border-radius: 22px;
  background: linear-gradient(165deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 236, 200, 0.94) 100%);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 28px 55px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 194, 71, 0.28) inset;
}

.home-hero--modern .hero-showcase-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.home-hero--modern .hero-showcase-label {
  margin-bottom: 0;
  text-align: left;
  letter-spacing: 1.6px;
}

.home-hero--modern .hero-showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--spice-red), var(--spice-orange));
  box-shadow: 0 8px 18px rgba(181, 31, 22, 0.28);
  white-space: nowrap;
}

.home-hero--modern .hero-rotator .carousel-inner {
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.home-hero--modern .hero-rotator-frame {
  border-radius: 18px;
}

.home-hero--modern .hero-rotator-control {
  width: 38px !important;
  height: 38px;
  background: rgba(255, 255, 255, 0.96) !important;
  border: 1px solid rgba(181, 31, 22, 0.12);
  backdrop-filter: blur(6px);
}

.home-hero--modern .hero-rotator-indicators [data-bs-target] {
  width: 24px;
  height: 4px;
  border-radius: 999px;
  background-color: rgba(181, 31, 22, 0.28);
}

.home-hero--modern .hero-rotator-indicators .active {
  background: linear-gradient(90deg, var(--spice-red), var(--spice-orange));
  transform: scale(1);
  width: 32px;
}

.home-hero--modern .hero-stats-bar--modern {
  margin-top: 8px;
}

.home-hero--modern .hero-stats-bar--modern .hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.home-hero--modern .hero-stats-bar--modern .hero-stat-item {
  flex: 1 1 160px;
  justify-content: center;
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  padding: 8px 12px;
}

.home-hero--modern .hero-stats-bar--modern .hero-stat-item:last-child {
  border-right: 0;
}

.home-hero--modern .hero-stat-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 1rem;
  box-shadow: 0 8px 18px rgba(181, 31, 22, 0.28);
}

@media (max-width: 767px) {
  .home-hero--modern .hero-stats-bar--modern .hero-stats {
    border-radius: 20px;
    flex-direction: column;
    gap: 6px;
  }

  .home-hero--modern .hero-stats-bar--modern .hero-stat-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    justify-content: flex-start;
    text-align: left;
  }

  .home-hero--modern .hero-stats-bar--modern .hero-stat-item:last-child {
    border-bottom: 0;
  }

  .home-hero--modern .hero-showcase-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-hero--modern .hero-visual-stage {
    width: min(calc(var(--hero-slider-size, 400px) + 40px), calc(100vw - 32px));
    height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero--modern .hero-orb,
  .home-hero--modern .hero-stage-ring {
    animation: none;
  }
}

/*--------------------------------------------------------------
# Hero — AtoZ banner (reference layout)
--------------------------------------------------------------*/
.home-hero--atoz {
  --hero-slider-h-scale: 0.7;
  --hero-pack-w: min(380px, 90vw);
  --hero-pack-ratio: 0.596;
  --hero-pack-h: min(227px, calc(var(--hero-pack-w) * var(--hero-pack-ratio)));
  --hero-frame-aspect: 100 / 91;
  min-height: auto;
  margin-top: calc(var(--header-height) + var(--header-slider-gap));
  padding: clamp(20px, 3vh, 32px) 0 clamp(28px, 4vh, 44px);
  overflow-x: clip;
  overflow-y: visible;
}

section#hero.home-hero--atoz {
  overflow: visible;
  scroll-margin-top: calc(var(--header-height) + var(--header-slider-gap));
}

section#hero.home-hero--atoz.has-hero-bg {
  overflow: hidden;
  scroll-margin-top: var(--header-height);
}

.home-hero--atoz.has-hero-bg {
  --hero-banner-w: 1920;
  --hero-banner-h-unit: 550;
  --hero-banner-h: clamp(220px, calc(100vw * var(--hero-banner-h-unit) / var(--hero-banner-w)), 550px);
  position: relative;
  display: block;
  width: 100%;
  height: var(--hero-banner-h);
  min-height: var(--hero-banner-h);
  max-height: 550px;
  margin-top: var(--header-height);
  padding: 0;
  overflow: hidden;
  background-color: #1f1410;
}

.home-hero--atoz.has-hero-bg:before {
  display: none;
}

.home-hero--atoz .hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  line-height: 0;
  background: #1f1410;
}

.home-hero--atoz .hero-bg-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.home-hero--atoz .hero-bg-img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}

.home-hero--atoz .hero-bg-slider,
.home-hero--atoz .hero-banner-carousel,
.home-hero--atoz .hero-banner-carousel .carousel-inner,
.home-hero--atoz .hero-banner-carousel .carousel-item {
  width: 100%;
  height: 100%;
}

.home-hero--atoz .hero-banner-carousel .carousel-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1f1410;
}

.home-hero--atoz .hero-banner-carousel .carousel-item.active {
  display: flex;
}

.home-hero--atoz .hero-banner-indicators {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 8px;
  margin: 0;
  z-index: 4;
}

.home-hero--atoz .hero-banner-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background-color: rgba(255, 255, 255, 0.55);
  opacity: 1;
}

.home-hero--atoz .hero-banner-indicators .active {
  background-color: var(--spice-gold);
}

.home-hero--atoz.has-hero-bg > .hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  display: block;
}

.home-hero--atoz.has-hero-bg > .hero-shell {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: clamp(10px, 2vw, 24px) clamp(10px, 2.5vw, 15px) clamp(14px, 2vw, 22px);
  pointer-events: auto;
  background: transparent;
  border: 0;
  overflow: hidden;
}

.home-hero--atoz.has-hero-bg .hero-shell.container {
  max-width: 100%;
}

.home-hero--atoz.has-hero-bg > .hero-shell a,
.home-hero--atoz.has-hero-bg > .hero-shell button {
  pointer-events: auto;
}

.home-hero--atoz .hero-bg-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.08) 40%, rgba(0, 0, 0, 0.25) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 42%, rgba(0, 0, 0, 0.08) 62%, rgba(0, 0, 0, 0.28) 100%);
}

.home-hero--atoz:not(.has-hero-bg) .hero-bg-overlay {
  display: none;
}

.home-hero--atoz .hero-shell {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

.home-hero--atoz.has-hero-bg .hero-shell {
  left: 0;
  right: 0;
}

.home-hero--atoz.has-hero-bg .hero-row {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 100%;
  margin: 0;
  overflow: hidden;
  --bs-gutter-y: 0;
  --bs-gutter-x: 0;
}

.home-hero--atoz .hero-text-col,
.home-hero--atoz .hero-slider-col,
.home-hero--atoz .hero-stats-col {
  min-width: 0;
  max-width: 100%;
  width: 100%;
}

.home-hero--atoz .hero-text-col {
  text-align: left;
  color: #fff;
  align-self: center;
}

.home-hero--atoz.has-hero-bg .hero-text-col {
  color: #fff;
}

.home-hero--atoz.has-hero-bg .hero-line-top {
  color: #fff;
  text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.45);
}

.home-hero--atoz.has-hero-bg .hero-title {
  color: #fff;
  text-shadow: 2px 4px 14px rgba(0, 0, 0, 0.6);
}

.home-hero--atoz.has-hero-bg .hero-subtitle {
  color: #ffe9a8;
  text-shadow: 1px 3px 8px rgba(0, 0, 0, 0.5);
}

.home-hero--atoz.has-hero-bg .hero-btn.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 2px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.home-hero--atoz.has-hero-bg .hero-btn.secondary:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.85);
}

.home-hero--atoz.has-hero-bg .hero-stat-box {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.home-hero--atoz .hero-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
  width: 100%;
  min-height: auto;
}

.home-hero--atoz .hero-copy-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(14px, 2vw, 20px);
  width: 100%;
  max-width: 520px;
}

.home-hero--atoz .hero-copy-block--stack {
  justify-content: flex-start;
  min-height: auto;
  gap: clamp(16px, 2.5vw, 24px);
}

.home-hero--atoz .hero-copy-lines {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  width: 100%;
}

.home-hero--atoz .hero-kicker-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(6px, 1vw, 10px);
  width: 100%;
  margin-bottom: clamp(4px, 0.8vw, 8px);
}

.home-hero--atoz .hero-actions--near-kicker {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(8px, 1.2vw, 12px);
  margin-top: 0;
  padding-top: 0;
  width: 100%;
}

.home-hero--atoz .hero-actions--near-kicker .hero-btn {
  flex: 0 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 16px;
  font-size: clamp(10px, 1.1vw, 12px);
  letter-spacing: 0.4px;
  line-height: 1.2;
  white-space: normal;
  text-align: center;
}

/* CTA buttons below banner slider — not overlaid on image */
.hero-cta-below {
  background: #fff;
  border-bottom: 1px solid rgba(181, 31, 22, 0.08);
  padding: clamp(14px, 2.5vw, 22px) 0;
}

.hero-cta-below .container {
  max-width: 720px;
}

.hero-actions--below-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 2vw, 16px);
  margin: 0;
  padding: 0;
  width: 100%;
}

.hero-actions--below-slider .hero-btn {
  flex: 1 1 auto;
  min-width: min(100%, 200px);
  max-width: 280px;
  padding: 14px 24px;
  font-size: clamp(11px, 2.8vw, 13px);
  font-weight: 800;
  letter-spacing: 0.45px;
  text-transform: uppercase;
  text-align: center;
  border-radius: 999px;
  white-space: nowrap;
}

.hero-actions--below-slider .hero-btn.primary {
  color: #fff;
  background: linear-gradient(135deg, #f37021, #c2187a);
  border: 2px solid transparent;
  box-shadow: 0 6px 18px rgba(194, 24, 122, 0.22);
}

.hero-actions--below-slider .hero-btn.primary:hover {
  color: #fff;
  background: linear-gradient(135deg, #ff8533, #d81b60);
  transform: translateY(-2px);
}

.hero-actions--below-slider .hero-btn.secondary {
  color: #3d2a1f;
  background: #fff;
  border: 2px solid #3d2a1f;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.hero-actions--below-slider .hero-btn.secondary:hover {
  color: #fff;
  background: #3d2a1f;
  transform: translateY(-2px);
}

@media (max-width: 575px) {
  .hero-cta-below {
    padding: 12px 0;
  }

  .hero-actions--below-slider {
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions--below-slider .hero-btn {
    width: 100%;
    max-width: none;
    min-width: 0;
    padding: 13px 20px;
    font-size: 12px;
  }
}

.home-hero--atoz .hero-line-top {
  display: block;
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.45);
  opacity: 0.95;
}

.home-hero--atoz .hero-headline-row {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.8vw, 18px);
  width: 100%;
}

.home-hero--atoz .hero-kicker--circle {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(64px, 8vw, 78px);
  height: clamp(64px, 8vw, 78px);
  border-radius: 50%;
  background: rgba(18, 8, 4, 0.58);
  border: 2px solid rgba(255, 255, 255, 0.82);
  color: #fff;
  font-size: clamp(7px, 0.75vw, 9px);
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  line-height: 1.12;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.38);
}

.home-hero--atoz .hero-kicker--circle span {
  display: block;
}

.home-hero--atoz .hero-headline-text {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(6px, 1vw, 12px);
  min-width: 0;
}

.home-hero--atoz .hero-kicker--teal {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #0a8fa8;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  border: 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

.home-hero--atoz .hero-title {
  margin: 0;
  color: #fff;
  font-family: var(--font-secondary);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1px;
  text-transform: uppercase;
  text-shadow: 2px 4px 14px rgba(0, 0, 0, 0.6);
}

.home-hero--atoz .hero-subtitle {
  margin: 4px 0 0;
  color: #fff;
  font-size: clamp(18px, 2.5vw, 32px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.3px;
  text-transform: capitalize;
  text-shadow: 1px 3px 8px rgba(0, 0, 0, 0.5);
}

.home-hero--atoz .hero-subtitle--stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.02;
  font-size: clamp(15px, 2vw, 24px);
  text-transform: capitalize;
}

.home-hero--atoz .hero-subtitle--stack span {
  display: block;
}

.home-hero--atoz .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  width: 100%;
  max-width: 100%;
  padding-top: clamp(8px, 1.5vh, 16px);
}

.home-hero--atoz .hero-actions--stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.home-hero--atoz .hero-btn {
  padding: 11px 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
}

.home-hero--atoz .hero-btn.primary {
  color: #fff;
  background: linear-gradient(135deg, #f37021, #c2187a);
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.home-hero--atoz .hero-btn.primary:hover {
  color: #fff;
  background: linear-gradient(135deg, #ff8533, #d81b60);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.home-hero--atoz .hero-btn.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 2px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.home-hero--atoz .hero-btn.secondary:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.home-hero--atoz .hero-slider-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1200px) {
  .home-hero--atoz .hero-row {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
    align-items: center;
    column-gap: clamp(16px, 2vw, 32px);
    margin-left: 0;
    margin-right: 0;
  }

  .home-hero--atoz.has-hero-bg .hero-copy-block {
    max-width: 480px;
  }

  .home-hero--atoz.has-hero-bg .hero-title {
    font-size: clamp(36px, 4.2vw, 72px);
  }

  .home-hero--atoz.has-hero-bg .hero-subtitle {
    font-size: clamp(16px, 1.8vw, 28px);
  }

  .home-hero--atoz.has-hero-bg .hero-actions--near-kicker {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .home-hero--atoz.has-hero-bg .hero-actions--near-kicker .hero-btn {
    flex: 0 1 auto;
    min-height: 40px;
    padding: 11px 18px;
    font-size: 11px;
  }

  .home-hero--atoz.has-hero-bg .hero-stats-stack {
    width: min(100%, 240px);
    gap: 8px;
  }

  .home-hero--atoz.has-hero-bg .hero-stat-box {
    padding: 10px 12px;
  }

  .home-hero--atoz.has-hero-bg .hero-stat-box strong {
    font-size: clamp(22px, 2vw, 32px);
  }

  .home-hero--atoz.has-hero-bg .hero-stat-box span {
    font-size: 12px;
  }

  .home-hero--atoz .hero-text-col,
  .home-hero--atoz .hero-stats-col {
    width: auto;
  }

  .home-hero--atoz .hero-copy-block--stack {
    justify-content: space-between;
    min-height: auto;
  }

  .home-hero--atoz .hero-row > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: none;
    padding-left: 0;
    padding-right: 0;
  }

  .home-hero--atoz .hero-text-col {
    padding-right: 8px;
    justify-self: start;
    text-align: left;
  }

  .home-hero--atoz .hero-copy-block {
    align-items: flex-start;
  }

  .home-hero--atoz .hero-copy-lines {
    align-items: flex-start;
    text-align: left;
  }

  .home-hero--atoz .hero-actions--stack {
    align-items: flex-start;
  }

  .home-hero--atoz .hero-stats-col {
    padding-left: 8px;
    justify-self: end;
    display: flex;
    justify-content: flex-end;
  }

  .home-hero--atoz .hero-stats-stack {
    width: min(100%, 260px);
  }
}

@media (min-width: 1400px) {
  .home-hero--atoz .hero-stats-stack {
    width: min(100%, 280px);
  }
}

@media (min-width: 1600px) {
  .home-hero--atoz .hero-stats-stack {
    width: min(100%, 300px);
  }
}

.home-hero--atoz .hero-product-frame {
  position: relative;
  width: var(--hero-pack-w);
  max-width: calc(100vw - 24px);
  aspect-ratio: var(--hero-frame-aspect);
  height: auto;
  max-height: var(--hero-pack-h);
  padding: 4px;
  border-radius: 18px;
  background: #fff;
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.38),
    0 0 0 4px rgba(255, 255, 255, 0.95);
}

.home-hero--atoz .hero-rotator--pack {
  width: 100%;
  height: 100%;
  padding-bottom: 0;
}

.home-hero--atoz .hero-rotator--pack .carousel-inner {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: #fff;
}

.home-hero--atoz .hero-rotator--pack .carousel-item,
.home-hero--atoz .hero-rotator--pack .hero-rotator-frame,
.home-hero--atoz .hero-rotator--pack .hero-rotator-frame--static {
  width: 100%;
  height: 100%;
  max-width: none;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home-hero--atoz .hero-rotator--pack .hero-rotator-frame picture,
.home-hero--atoz .hero-rotator--pack .hero-rotator-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.home-hero--atoz .hero-rotator--pack .hero-rotator-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 0;
  filter: none;
}

.home-hero--atoz .hero-rotator-control {
  width: 32px !important;
  height: 32px;
  opacity: 0.9;
}

.home-hero--atoz .hero-rotator-control.carousel-control-prev {
  left: 4px;
}

.home-hero--atoz .hero-rotator-control.carousel-control-next {
  right: 4px;
}

.home-hero--atoz .hero-rotator-indicators {
  bottom: -6px;
}

.home-hero--atoz .hero-rotator-indicators [data-bs-target] {
  width: 7px;
  height: 7px;
  background-color: rgba(194, 24, 122, 0.35);
}

.home-hero--atoz .hero-rotator-indicators .active {
  background-color: #c2187a;
}

.home-hero--atoz .hero-stats-col {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.home-hero--atoz .hero-stats-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(100%, 280px);
}

.home-hero--atoz .hero-stat-box {
  padding: 14px 18px;
  border-radius: 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.home-hero--atoz .hero-stat-box strong {
  display: block;
  margin-bottom: 2px;
  color: var(--spice-red);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  line-height: 1;
}

.home-hero--atoz .hero-stat-box span {
  display: block;
  color: #2b2b2b;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .home-hero--atoz:not(.has-hero-bg) .hero-stats-stack {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: min(100%, 720px);
  }

  .home-hero--atoz:not(.has-hero-bg) .hero-stat-box {
    flex: 1 1 calc(33.333% - 12px);
    min-width: 150px;
    padding: 12px 14px;
  }
}

@media (max-width: 1199px) {
  .home-hero--atoz {
    min-height: auto;
  }

  .home-hero--atoz.has-hero-bg {
    --hero-banner-h: max(calc(100vw * var(--hero-banner-h-unit) / var(--hero-banner-w)), clamp(240px, 52vw, 400px));
    height: var(--hero-banner-h);
    min-height: var(--hero-banner-h);
    max-height: 480px;
  }

  .home-hero--atoz.has-hero-bg > .hero-shell {
    align-items: stretch;
    padding: 10px 12px 18px;
  }

  .home-hero--atoz.has-hero-bg .hero-row {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px !important;
    height: 100%;
  }

  .home-hero--atoz.has-hero-bg .hero-stats-col {
    margin-top: auto;
  }

  .home-hero--atoz.has-hero-bg .hero-text-col {
    flex: 0 1 auto;
    align-self: stretch;
  }

  .home-hero--atoz .hero-text-col {
    order: 1;
    text-align: center;
  }

  .home-hero--atoz .hero-copy-block {
    align-items: center;
    margin: 0 auto;
  }

  .home-hero--atoz .hero-copy-block--stack {
    min-height: auto;
    align-items: center;
  }

  .home-hero--atoz .hero-copy-lines {
    align-items: center;
    text-align: center;
  }

  .home-hero--atoz .hero-kicker-group {
    align-items: center;
  }

  .home-hero--atoz .hero-actions--near-kicker {
    justify-content: center;
  }

  .home-hero--atoz .hero-actions--stack {
    align-items: center;
    width: 100%;
  }

  .home-hero--atoz .hero-actions {
    justify-content: center;
  }

  .home-hero--atoz .hero-stats-col {
    order: 2;
    justify-content: center;
  }

  .home-hero--atoz.has-hero-bg .hero-stats-stack {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    gap: 6px;
    margin: 0 auto;
  }

  .home-hero--atoz.has-hero-bg .hero-stat-box {
    flex: 1 1 0;
    min-width: 0;
    padding: 8px 4px;
    border-radius: 10px;
  }

  .home-hero--atoz.has-hero-bg .hero-stat-box strong {
    font-size: clamp(14px, 3.5vw, 22px);
  }

  .home-hero--atoz.has-hero-bg .hero-stat-box span {
    font-size: clamp(8px, 2.2vw, 11px);
    line-height: 1.15;
  }
}

@media (max-width: 767px) {
  .home-hero--atoz.has-hero-bg {
    --hero-banner-h: calc(100vw * var(--hero-banner-h-unit) / var(--hero-banner-w));
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    max-height: none;
    margin-top: var(--header-height);
    overflow: visible;
    background-color: #1f1410;
  }

  section#hero.home-hero--atoz.has-hero-bg {
    overflow: visible;
  }

  .home-hero--atoz.has-hero-bg .hero-bg-media {
    position: relative;
    inset: auto;
    flex: 0 0 auto;
    width: 100%;
    height: var(--hero-banner-h);
    min-height: var(--hero-banner-h);
  }

  .home-hero--atoz.has-hero-bg > .hero-bg-overlay {
    display: none;
  }

  .home-hero--atoz.has-hero-bg .hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
  }

  .home-hero--atoz.has-hero-bg .hero-banner-carousel .carousel-item,
  .home-hero--atoz.has-hero-bg .hero-banner-carousel .carousel-item.active {
    align-items: flex-start;
    justify-content: center;
  }

  .home-hero--atoz.has-hero-bg > .hero-shell {
    position: relative;
    inset: auto;
    flex: 0 0 auto;
    height: auto;
    width: 100%;
    max-width: 100%;
    padding: 10px 10px 12px;
    align-items: stretch;
    background: #1f1410;
  }

  .home-hero--atoz.has-hero-bg .hero-row {
    height: auto;
    min-height: 0;
    justify-content: flex-start;
    gap: 8px !important;
  }

  .home-hero--atoz.has-hero-bg .hero-text-col {
    display: none;
  }

  .home-hero--atoz.has-hero-bg .hero-stats-col {
    order: 1;
    margin-top: 0;
    width: 100%;
    flex: 0 0 auto;
  }

  .home-hero--atoz.has-hero-bg .hero-stats-stack {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    gap: 6px;
    margin: 0;
  }

  .home-hero--atoz.has-hero-bg .hero-stat-box {
    flex: 1 1 0;
    min-width: 0;
    padding: 8px 4px;
    border-radius: 10px;
  }

  .home-hero--atoz.has-hero-bg .hero-stat-box strong {
    font-size: clamp(13px, 3.6vw, 18px);
  }

  .home-hero--atoz.has-hero-bg .hero-stat-box span {
    font-size: clamp(8px, 2.2vw, 10px);
    line-height: 1.15;
  }

  .home-hero--atoz.has-hero-bg .hero-banner-indicators {
    bottom: 6px;
  }

  .home-hero--atoz .hero-banner-indicators [data-bs-target] {
    width: 7px;
    height: 7px;
  }

  .hero-cta-below {
    padding: 12px 0 14px;
  }

  .hero-actions--below-slider {
    gap: 10px;
  }

  .hero-actions--below-slider .hero-btn {
    padding: 12px 16px;
    font-size: 11px;
  }
}

@media (max-width: 575px) {
  .home-hero--atoz {
    --hero-pack-w: min(280px, calc(100vw - 24px));
    padding-bottom: 0;
  }

  .home-hero--atoz.has-hero-bg > .hero-shell {
    padding: 8px 8px 10px;
  }

  .home-hero--atoz.has-hero-bg .hero-stat-box {
    padding: 6px 2px;
    border-radius: 8px;
  }

  .home-hero--atoz.has-hero-bg .hero-stat-box strong {
    font-size: clamp(12px, 3.8vw, 15px);
  }

  .home-hero--atoz.has-hero-bg .hero-stat-box span {
    font-size: 7px;
  }

  .home-hero--atoz .hero-title {
    font-size: clamp(32px, 10vw, 44px);
  }

  .home-hero--atoz .hero-subtitle {
    font-size: clamp(15px, 4.2vw, 20px);
  }

  .home-hero--atoz .hero-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    text-align: center;
  }

  .home-hero--atoz .hero-stats-stack {
    width: 100%;
    max-width: 300px;
    gap: 8px;
  }

  .home-hero--atoz .hero-stat-box {
    padding: 10px 12px;
  }

  .home-hero--atoz .hero-stat-box strong {
    font-size: clamp(22px, 6.5vw, 28px);
  }

  .home-hero--atoz .hero-stat-box span {
    font-size: 12px;
  }
}

@media (min-width: 1920px) {
  .home-hero--atoz {
    --hero-pack-w: min(440px, 22vw);
    --hero-pack-h: min(260px, calc(var(--hero-pack-w) * var(--hero-pack-ratio)));
    padding-top: clamp(96px, 8vh, 120px);
    padding-bottom: clamp(36px, 4vh, 56px);
  }

  .home-hero--atoz .hero-shell {
    max-width: 1680px;
  }

  .home-hero--atoz .hero-title {
    font-size: clamp(72px, 4.5vw, 96px);
  }
}

/*--------------------------------------------------------------
# Responsive — all screens (mobile → TV)
--------------------------------------------------------------*/
img,
picture,
video,
svg {
  max-width: 100%;
  height: auto;
}

.home-hero--atoz .hero-bg-img,
.home-hero--atoz .hero-rotator--pack .hero-rotator-img {
  max-width: none;
}

.home-hero--atoz.has-hero-bg .hero-bg-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}

.home-hero--atoz .hero-rotator--pack .carousel-item {
  height: 100%;
}

.home-hero--atoz .hero-rotator--pack .carousel-item.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hero--atoz .hero-rotator--pack .hero-rotator-img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}

.container,
.container-fluid {
  padding-left: clamp(12px, 3vw, 15px);
  padding-right: clamp(12px, 3vw, 15px);
}

@media (max-width: 767px) {
  .about-intro p {
    font-size: 16px;
    padding: 0 4px;
  }

  .about-image-wrap img {
    min-height: 240px;
    max-height: none;
  }

  .quality-badge {
    left: 16px;
    bottom: 16px;
    padding: 14px 16px;
  }

  .product-card {
    padding: 20px 16px;
  }

  .product-card .price {
    font-size: 20px;
  }

  .dealer-section {
    padding: 48px 16px;
  }

  .contact .php-email-form {
    padding: 16px !important;
  }

  .footer {
    text-align: center;
  }

  .footer .footer-links ul {
    padding-left: 0;
  }

  .home-hero--atoz .hero-stats-stack {
    flex-direction: column;
    width: min(100%, 320px);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .home-hero--atoz .hero-copy-block {
    max-width: 640px;
    margin: 0 auto;
  }
}

@media (min-width: 1200px) and (max-width: 1599px) {
  .home-hero--atoz .hero-shell {
    max-width: 1320px;
  }

  .home-hero--atoz .hero-copy-block {
    max-width: 460px;
  }

  .home-hero--atoz .hero-stats-stack {
    width: min(100%, 240px);
  }
}

@media (min-width: 1920px) {
  .container {
    max-width: 1440px;
  }

  .home-about .about-intro,
  .about-ux-row {
    max-width: 1320px;
  }

  .home-hero--atoz .hero-shell {
    max-width: 1680px;
  }

  .section-header p {
    font-size: clamp(40px, 2.5vw, 56px);
  }

  .about-intro h2,
  .home-products .section-header p {
    font-size: clamp(40px, 2.8vw, 56px);
  }
}