/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

/* VARIABLES & GLOBALS */
:root {
  --color-primary: #007c91;
  --color-primary-light: #009db3;
  --color-secondary: #ffffff;
  --font-heading: 'Nunito Sans', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
  --dark-color: #0f1a25;
  --accent-color: #28a745;
  --light-gray: #f0f0f0;
  --primary-color: #007c91;
  
  /* Daily deals responsive heights */
  --card-min-h: 300px;
  --card-max-h: 500px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--dark-color);
  line-height: 1.5;
}

/* UTILITY CLASSES */
.mobile-break {
  display: none;
}

@media (max-width: 768px) {
  .mobile-break {
    display: inline;
  }
}

/* HERO */
.hero {
  position: relative;
  background-image: url('../img/home_page_background.jpeg');
  background-size: cover;
  background-position: center;
  height: 80vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.hero-content {
  position: relative;
  text-align: center;
  color: var(--color-secondary);
  padding: 0 1rem;
  max-width: 800px;
}
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
}
.hero-content p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
.hero-description {
  margin-bottom: 1.5rem;
}
.hero-description p {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  line-height: 1.2;
}
.hero-line-1 {
  margin-bottom: 0.5rem;
}
.hero-line-2 {
  margin-bottom: 0;
}
.hero-line-combined {
  margin-bottom: 0;
}
.hero-line-break-1-5 {
  display: block;
  content: "";
  margin-bottom: 0.5em;
}
.hero-buttons .btn {
  display: inline-block;
  margin: 0.25rem;
  padding: 0.75rem 2rem;
  border-radius: 0;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #a07c23;
  min-width: 180px;
  text-align: center;
}

/* LOCATIONS HERO - with ultra-aggressive edge elimination */
.locations-hero {
  position: relative;
  background-image: url('../img/hero-locations-2.png');
  background-size: cover;
  background-position: center;
  height: 80vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.locations-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: calc(100% + 200px);
  height: calc(100% + 200px);
  background-image: url('../img/hero-locations-2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  transform: scale(1.2);
}

.locations-hero .hero-overlay {
  position: relative;
  z-index: 2;
}

.locations-hero .hero-content {
  position: relative;
  z-index: 2;
}

.btn-primary {
  background: #fed16e;
  color: black;
  border-color: #a07c23;
}
.btn-primary:hover {
  background: #a07c23;
}
.btn-secondary {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.btn-secondary:hover {
  background: #f0f0f0;
}

/* FEATURES */
.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 1rem;
}
.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-align: left;
}
.feature img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.feature span {
  font-size: 0.95rem;
}

/* CATEGORIES */
.categories {
  padding: 3rem 1rem;
  text-align: center;
}
.categories h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 2rem;
  color: rgb(2, 59, 46);
}
.category-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.category-item {
  text-decoration: none;
}
.category-item img {
  width: 100%;
  display: block;
  border-radius: 0;
  object-fit: cover;
}
.category-item h3 {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  color: rgb(2, 59, 46);
}

/* DELIVERY THAT WORKS */
.delivery-that-works {
  padding: 3rem 1rem;
  text-align: center;
}
.delivery-that-works h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #000000;
  font-weight: bold;
}
.delivery-that-works h3 {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #000000;
  font-weight: normal;
}
.delivery-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, 1fr);
}
.delivery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  min-height: 220px;
}
.delivery-item img {
  width: 120px;
  height: 120px;
  display: block;
  border-radius: 8px;
  object-fit: contain;
  margin-bottom: 1rem;
}
.delivery-text-1 {
  /*font-size: 1.1rem;*/
  /*font-weight: bold; */
    font-size: 0.95rem;
  color: #000000;
  margin-bottom: 0.5rem;
}
.delivery-text-2 {
  font-size: 0.95rem;
  color: #000000;
}

/* LIFE STYLES */
.life-styles {
  padding: 4rem 1rem;
  text-align: center;
  position: relative;
  background-color: #f8f9fa;
}

.life-styles h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #000000;
  font-weight: bold;
}

/* Desktop Grid (1025px and up) - 3 columns - FORCE GRID LAYOUT */
.lifestyle-grid {
  display: grid !important;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr) !important;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  align-items: stretch;
  width: 100%;
}

/* OVERRIDE ANY CONFLICTING STYLES - DESKTOP ONLY */
@media (min-width: 1025px) {
  .life-styles .lifestyle-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-template-rows: repeat(2, auto) !important;
    gap: 2rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
    align-items: stretch !important;
    width: 100% !important;
    flex-direction: unset !important;
    flex-wrap: unset !important;
  }
  
  .life-styles .lifestyle-grid .lifestyle-item {
    display: flex !important;
    flex-direction: column !important;
    width: auto !important;
    max-width: none !important;
    grid-column: unset !important;
    grid-row: unset !important;
  }
}

/* Hide mobile grid by default on desktop */
.lifestyle-mobile-grid {
  display: none !important;
}

/* Lifestyle Items */
.lifestyle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  min-height: 350px;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}

.lifestyle-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: inherit;
}

.lifestyle-item:visited,
.lifestyle-item:focus {
  color: inherit;
  text-decoration: none;
}

.lifestyle-item img {
  width: 100%;
  height: 250px;
  display: block;
  border-radius: 0;
  object-fit: cover;
  margin-bottom: 1rem;
}

.lifestyle-item h3 {
  font-size: 1.15rem;
  color: rgb(2, 59, 46);
  margin: 0 0 0.75rem 0;
  text-align: center !important;
  font-weight: 600;
  line-height: 1.3;
}

.lifestyle-item p {
  font-size: 0.95rem;
  color: #666;
  text-align: center !important;
  margin: 0 0 0.25rem 0;
  line-height: 1.4;
  flex-grow: 1;
  width: 100%;
  box-sizing: border-box;
}

/* Ensure all paragraphs in lifestyle section are center-aligned */
.life-styles .lifestyle-item p,
.lifestyle-swiper-slide .lifestyle-item p {
  text-align: center !important;
}

/* Mobile grid - hidden by default */
.lifestyle-mobile-grid {
  display: none;
  background-color: transparent;
  padding: 0 1rem;
}

.lifestyle-mobile-grid * {
  visibility: visible !important;
  opacity: 1 !important;
}

/* NAVIGATION */
.navbar {
  position: sticky;
  top: 0;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  padding: 0;
  height: 70px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.nav-logo img {
  width: 150px;
  
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-item {
  margin: 0;
}

.nav-link {
  text-decoration: none;
  color: #000000;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: green;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #274A57;
  margin: 3px 0;
  transition: 0.3s;
  display: block;
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
  .navbar {
    height: 60px;
  }
  
  .product-menu {
    top: 60px;
    margin-top: -1px;
    padding: 0.8rem 0;
    border-top: 1px solid transparent;
  }
  
  .product-menu-container {
    padding: 0 0.5rem;
  }
  
  .product-menu-item {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 60px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    gap: 0;
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 1rem 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* PRODUCT MENU */
.product-menu {
  background-color: white;
  border-bottom: 2px solid #007c91;
  padding: 1rem 0;
  position: sticky;
  top: 70px;
  z-index: 999;
  margin-top: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-menu-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.product-menu-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: center;
  align-items: center;
}

.product-menu-scroll::-webkit-scrollbar {
  display: none;
}

.product-menu-item {
  flex-shrink: 0;
  background-color: white;
  border: 2px solid #007c91;
  color: black;
  padding: 0.75rem 1.5rem;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
}

.product-menu-item:hover {
  background-color: #007c91;
  color: white;
  text-decoration: none;
}

.product-menu-item.active {
  background-color: #007c91;
  color: white;
  text-decoration: none;
}

/* Mobile and Medium screens - make scrollable */
@media screen and (max-width: 1024px) {
  .product-menu-container {
    padding: 0 1rem;
  }
  
  .product-menu-scroll {
    justify-content: flex-start;
    padding-bottom: 0.5rem;
  }
  
  .product-menu-item {
    font-size: 0.85rem;
    padding: 0.65rem 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  .product-menu-container {
    padding: 0 0.5rem;
  }
  
  .product-menu-item {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
  }
  
  /* Ensure no gap between navbar and product menu in mobile */
  .navbar + .product-menu {
    margin-top: -1px;
  }
  
  /* Alternative approach - make product menu stick to exact position */
  .product-menu {
    top: 59px;
  }
}

/* OPERATION HOURS */
.operation-hours {
  background-color: #fed16e;
  padding: 1rem 0;
  text-align: center;
}

.operation-hours-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.operation-hours-text {
  color: black;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media screen and (max-width: 768px) {
  .operation-hours-container {
    padding: 0 1rem;
  }
  
  .operation-hours-text {
    font-size: 0.75rem;
    letter-spacing: 0.3px;
  }
}

@media screen and (max-width: 480px) {
  .operation-hours-text {
    font-size: 0.7rem;
    letter-spacing: 0.2px;
  }
}

/* FOOTER NOTE */
.footer-note {
  padding: 2rem 1rem;
  background: #ffffff;
  text-align: center;
  font-style: italic;
  font-size: 0.9rem;
}

/* FOOTER COMPANY INFO */
#footer-company-info {
  background-color: #ffffff;
  padding: 3rem 2rem 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
  justify-content: flex-start;
  align-items: flex-start;
}

.footer-copyright {
  font-size: 0.95rem;
  color: #666;
  margin: 0 0 0.25rem 0;
  line-height: 1.8;
}



.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.25rem;
}

.social-icon {
  color: #274A57;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: var(--color-primary);
}

.footer-heading {
  color: #274A57;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  flex-shrink: 0;
}

.footer-column p:not(.footer-copyright) {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
  margin: 0 0 0.75rem 0;
}



.footer-link {
  color: #666;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  line-height: 1.8;
  margin-bottom: 0.25rem;
}

.footer-link:hover {
  color: var(--color-primary);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.25rem;
}

.contact-item svg {
  color: #274A57;
  flex-shrink: 0;
}

/* Medium and Mobile Footer */
@media (max-width: 768px) {
  #footer-company-info {
    padding: 2rem 1rem;
    gap: 1.5rem;
  }
  
  .footer-column {
    flex-basis: calc(50% - 0.75rem);
    min-width: 150px;
    gap: 0.5rem;
  }
  
  .footer-link {
    line-height: 1.4;
    margin-bottom: 0.15rem;
  }
  
  .contact-item {
    line-height: 1.4;
    margin-bottom: 0.15rem;
  }
  
  .footer-column p:not(.footer-copyright) {
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
  }
}

@media (max-width: 480px) {
  .footer-column {
    flex-basis: 100%;
    text-align: center;
    gap: 0.4rem;
  }
  
  .footer-link {
    line-height: 1.3;
    margin-bottom: 0.1rem;
  }
  
  .contact-item {
    justify-content: center;
    line-height: 1.3;
    margin-bottom: 0.1rem;
  }
  
  .footer-column p:not(.footer-copyright) {
    line-height: 1.3;
    margin: 0 0 0.4rem 0;
  }
  
  .social-icons {
    justify-content: center;
  }
}

/* SCROLL TO TOP BUTTON */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-to-top:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
}

/* RESPONSIVE TWEAKS */

/* Medium screens (769px - 1024px) - show mobile swiper */
@media (min-width: 769px) and (max-width: 1024px) {
  .lifestyle-grid {
    display: none !important;
  }
  
  .lifestyle-mobile-grid {
    display: block !important;
    width: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0;
    position: relative;
  }
  
  .lifestyle-swiper {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 450px;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    border-radius: 12px;
    margin: 0 2rem;
  }
  
  .lifestyle-swiper-wrapper {
    display: flex;
    width: 100%;
    height: auto;
    min-height: inherit;
    transition: transform 0.3s ease;
    transform: translateX(0%);
  }
  
  .lifestyle-swiper-slide {
    flex: 0 0 100%;
    width: 100%;
    height: auto;
    min-height: 420px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0 2rem;
    box-sizing: border-box;
    min-width: 0;
  }
  
  .lifestyle-swiper-slide .lifestyle-item {
    width: 100%;
    max-width: 400px;
    height: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin: 0;
    transition: transform 0.3s ease;
  }
  
  .lifestyle-swiper-slide .lifestyle-item img {
    width: 100%;
    height: 280px;
    display: block !important;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    opacity: 1 !important;
    visibility: visible !important;
    flex-shrink: 0;
  }
  
  .lifestyle-swiper-slide .lifestyle-item h3 {
    font-size: 1.4rem;
    color: rgb(2, 59, 46);
    margin: 0 0 1rem 0;
    text-align: center !important;
    font-weight: 600;
    line-height: 1.3;
  }
  
  .lifestyle-swiper-slide .lifestyle-item p {
    font-size: 1.1rem;
    color: #666;
    text-align: center !important;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    flex-grow: 1;
  }
  
  .lifestyle-pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
  }
  
  .lifestyle-pagination .pagination-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .lifestyle-pagination .pagination-dot.active {
    background-color: rgb(2, 59, 46);
    transform: scale(1.2);
  }
  
  /* Features layout for tablet - 2 columns */
  .features {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
    justify-items: center !important;
    padding: 2rem 1rem !important;
  }
  
  .feature {
    text-align: center !important;
    flex-direction: column !important;
    gap: 0.3rem !important;
    justify-self: center !important;
  }
}

/* Desktop screens (1025px and up) - ensure 3-column grid is visible */
@media (min-width: 1025px) {
  /* Force grid display and hide mobile swiper */
  .lifestyle-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
    align-items: stretch !important;
    width: 100% !important;
  }
  
  .lifestyle-mobile-grid {
    display: none !important;
  }
  
  /* Ensure items behave correctly in grid */
  .lifestyle-item {
    width: auto !important;
    max-width: none !important;
    flex: none !important;
  }
  
  /* Ensure grid container is visible */
  .life-styles {
    display: block !important;
  }
}

/* Large screens (1025px - 1199px) - show 3-column grid */
@media (min-width: 1025px) and (max-width: 1199px) {
  .lifestyle-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
  }
  
  .lifestyle-mobile-grid {
    display: none !important;
  }
  
  .lifestyle-item {
    width: 100% !important;
  }
  
  .lifestyle-item img {
    height: 250px;
  }
  
  .lifestyle-item h3 {
    font-size: 1rem;
    text-align: center !important;
  }
  
  .lifestyle-item p {
    font-size: 0.85rem;
    text-align: center !important;
    margin: 0 0 0.25rem 0;
  }
}

/* Extra large screens (1200px and up) - show 3-column grid */
@media (min-width: 1200px) {
  .lifestyle-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
    align-items: stretch !important;
  }
  
  .lifestyle-mobile-grid {
    display: none !important;
  }
  
  .lifestyle-item {
    min-height: 400px;
    width: 100% !important;
  }
  
  .lifestyle-item img {
    height: 280px;
  }
  
  .lifestyle-item h3 {
    font-size: 1.2rem;
    text-align: center !important;
    margin: 1rem 0 0.5rem 0;
  }
  
  .lifestyle-item p {
    font-size: 1rem;
    text-align: center !important;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
  }
}

/* Mobile and small tablet screens - show swiper (768px and down) */
@media (max-width: 768px) {
  .delivery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .life-styles {
    padding: 3rem 0.5rem;
    background-color: #f8f9fa;
  }
  
  .life-styles h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  /* Hide desktop grid, show mobile swiper */
  .lifestyle-grid {
    display: none !important;
  }
  
  .lifestyle-mobile-grid {
    display: block !important;
    width: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0;
    position: relative;
  }
  
  .lifestyle-swiper {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 420px;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    border-radius: 12px;
    margin: 0 1rem;
  }
  
  .lifestyle-swiper-wrapper {
    display: flex;
    width: 100%;
    height: auto;
    min-height: inherit;
    transition: transform 0.3s ease;
    transform: translateX(0%);
  }
  
  .lifestyle-swiper-slide {
    flex: 0 0 100%;
    width: 100%;
    height: auto;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0 1rem;
    box-sizing: border-box;
    min-width: 0;
  }
  
  .lifestyle-swiper-slide .lifestyle-item {
    width: 100%;
    max-width: 320px;
    height: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: white;
    border-radius: 0;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin: 0;
    transition: transform 0.3s ease;
  }
  
  .lifestyle-swiper-slide .lifestyle-item img {
    width: 100%;
    height: 250px;
    display: block !important;
    border-radius: 0;
    object-fit: cover;
    margin-bottom: 1rem;
    opacity: 1 !important;
    visibility: visible !important;
    flex-shrink: 0;
  }
  
  .lifestyle-swiper-slide .lifestyle-item h3 {
    font-size: 1.2rem;
    color: rgb(2, 59, 46);
    margin: 0 0 0.75rem 0;
    text-align: center !important;
    font-weight: 600;
    line-height: 1.3;
  }
  
  .lifestyle-swiper-slide .lifestyle-item p {
    font-size: 1rem;
    color: #666;
    text-align: center !important;
    margin: 0 0 0.25rem 0;
    line-height: 1.4;
    flex-grow: 1;
  }
  
  .lifestyle-pagination {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
  }
  
  .lifestyle-pagination .pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .lifestyle-pagination .pagination-dot.active {
    background-color: rgb(2, 59, 46);
    transform: scale(1.2);
  }
  
  /* Features layout for mobile - 2 columns */
  .features {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
    justify-items: center !important;
    padding: 2rem 1.5rem !important;
    margin: 0 auto !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .feature {
    text-align: center !important;
    flex-direction: column !important;
    gap: 0.3rem !important;
    justify-self: center !important;
  }
}

/* ===============================================
   COMPREHENSIVE MOBILE DEVICE CONSISTENCY
   =============================================== */

/* Extra Large Mobile Devices (428px+) - iPhone 14 Plus, iPhone 15 Plus */
@media (min-width: 428px) and (max-width: 600px) {
  .hero-content h1 {
    font-size: 2.2rem !important;
    line-height: 1.4 !important;
    word-spacing: 0.15em !important;
    letter-spacing: -0.01em !important;
    font-weight: bold !important;
  }
  
  .hero-description p {
    font-size: 1rem !important;
    line-height: 1.2 !important;
    word-spacing: 0.08em !important;
    letter-spacing: -0.01em !important;
    font-weight: bold !important;
  }
  
  .hero-buttons .btn {
    width: 80% !important;
    max-width: 350px !important;
    font-size: 1.1rem !important;
    padding: 0.8rem 2rem !important;
  }
  
  .features { gap: 1.2rem; }
  .delivery-grid { grid-template-columns: repeat(2, 1fr); }
  .delivery-that-works h2 { font-size: 1.8rem; }
  .categories h2 { font-size: 1.8rem; }
  .life-styles h2 { font-size: 1.8rem; }
}

/* Standard Large Mobile Devices (393px-427px) - iPhone 15, Pixel 4/5 */
@media (min-width: 393px) and (max-width: 427px) {
  .hero-content h1 {
    font-size: 2rem !important;
    line-height: 1.4 !important;
    word-spacing: 0.18em !important;
    letter-spacing: -0.02em !important;
    font-weight: bold !important;
  }
  
  .hero-description p {
    font-size: 0.95rem !important;
    line-height: 1.2 !important;
    word-spacing: 0.1em !important;
    letter-spacing: -0.02em !important;
    font-weight: bold !important;
  }
  
  .hero-buttons .btn {
    width: 85% !important;
    max-width: 340px !important;
    font-size: 1rem !important;
    padding: 0.75rem 1.8rem !important;
  }
  
  .features { gap: 1.1rem; }
  .delivery-grid { grid-template-columns: repeat(2, 1fr); }
  .delivery-that-works h2 { font-size: 1.7rem; }
  .categories h2 { font-size: 1.7rem; }
  .life-styles h2 { font-size: 1.7rem; }
}

/* Modern iPhone Standard (390px-392px) - iPhone 12/13/14 */
@media (min-width: 390px) and (max-width: 392px) {
  .hero-content h1 {
    font-size: 1.9rem !important;
    line-height: 1.4 !important;
    word-spacing: 0.2em !important;
    letter-spacing: -0.02em !important;
    font-weight: bold !important;
  }
  
  .hero-description p {
    font-size: 0.92rem !important;
    line-height: 1.2 !important;
    word-spacing: 0.12em !important;
    letter-spacing: -0.02em !important;
    font-weight: bold !important;
  }
  
  .hero-buttons .btn {
    width: 85% !important;
    max-width: 330px !important;
    font-size: 1rem !important;
    padding: 0.75rem 1.7rem !important;
  }
  
  .features { gap: 1rem; }
  .delivery-grid { grid-template-columns: repeat(2, 1fr); }
  .delivery-that-works h2 { font-size: 1.65rem; }
  .categories h2 { font-size: 1.65rem; }
  .life-styles h2 { font-size: 1.65rem; }
}

/* iPhone SE & Compact (375px-389px) - iPhone SE, iPhone 12/13 mini */
@media (min-width: 375px) and (max-width: 389px) {
  .hero-content h1 {
    font-size: 1.8rem !important;
    line-height: 1.4 !important;
    word-spacing: 0.22em !important;
    letter-spacing: -0.025em !important;
    font-weight: bold !important;
  }
  
  .hero-description p {
    font-size: 0.88rem !important;
    line-height: 1.15 !important;
    word-spacing: 0.14em !important;
    letter-spacing: -0.025em !important;
    font-weight: bold !important;
  }
  
  .hero-buttons .btn {
    width: 87% !important;
    max-width: 320px !important;
    font-size: 0.95rem !important;
    padding: 0.7rem 1.5rem !important;
  }
  
  .features { gap: 1rem; }
  .delivery-grid { grid-template-columns: repeat(2, 1fr); }
  .delivery-that-works h2 { font-size: 1.6rem; }
  .categories h2 { font-size: 1.6rem; }
  .life-styles h2 { font-size: 1.6rem; }
}

/* Galaxy Standard (360px-374px) - Galaxy S8/S9/S10/S20 */
@media (min-width: 360px) and (max-width: 374px) {
  .hero-content h1 {
    font-size: 1.7rem !important;
    line-height: 1.4 !important;
    word-spacing: 0.25em !important;
    letter-spacing: -0.03em !important;
    font-weight: bold !important;
  }
  
  .hero-description p {
    font-size: 0.85rem !important;
    line-height: 1.15 !important;
    word-spacing: 0.16em !important;
    letter-spacing: -0.03em !important;
    font-weight: bold !important;
  }
  
  .hero-buttons .btn {
    width: 90% !important;
    max-width: 310px !important;
    font-size: 0.9rem !important;
    padding: 0.7rem 1.4rem !important;
  }
  
  .features { gap: 0.9rem; }
  .delivery-grid { grid-template-columns: repeat(2, 1fr); }
  .delivery-that-works h2 { font-size: 1.55rem; }
  .categories h2 { font-size: 1.55rem; }
  .life-styles h2 { font-size: 1.55rem; }
}

/* Small Mobile (320px-359px) - Compact devices */
@media (min-width: 320px) and (max-width: 359px) {
  .hero-content h1 {
    font-size: 1.5rem !important;
    line-height: 1.4 !important;
    word-spacing: 0.3em !important;
    letter-spacing: -0.04em !important;
    font-weight: bold !important;
  }
  
  .hero-description p {
    font-size: 0.8rem !important;
    line-height: 1.1 !important;
    word-spacing: 0.2em !important;
    letter-spacing: -0.04em !important;
    font-weight: bold !important;
  }
  
  .hero-buttons .btn {
    width: 92% !important;
    max-width: 280px !important;
    font-size: 0.85rem !important;
    padding: 0.65rem 1.2rem !important;
  }
  
  .features { gap: 0.8rem; }
  .delivery-grid { grid-template-columns: repeat(2, 1fr); }
  .delivery-that-works h2 { font-size: 1.4rem; }
  .categories h2 { font-size: 1.4rem; }
  .life-styles h2 { font-size: 1.4rem; }
}

/* Ultra Compact (below 320px) - Legacy support */
@media (max-width: 319px) {
  .hero-content h1 {
    font-size: 1.3rem !important;
    line-height: 1.3 !important;
    word-spacing: 0.35em !important;
    letter-spacing: -0.05em !important;
    font-weight: bold !important;
  }
  
  .hero-description p {
    font-size: 0.75rem !important;
    line-height: 1.1 !important;
    word-spacing: 0.25em !important;
    letter-spacing: -0.05em !important;
    font-weight: bold !important;
  }
  
  .hero-buttons .btn {
    width: 95% !important;
    max-width: 260px !important;
    font-size: 0.8rem !important;
    padding: 0.6rem 1rem !important;
  }
  
  .features { gap: 0.7rem; }
  .delivery-grid { grid-template-columns: 1fr; }
  .delivery-that-works h2 { font-size: 1.3rem; }
  .categories h2 { font-size: 1.3rem; }
  .life-styles h2 { font-size: 1.3rem; }
}

/* UNIVERSAL MOBILE LAYOUT CONSISTENCY */
@media (max-width: 600px) {
  /* Global text behavior for ALL mobile devices */
  .hero-first-sentence {
    white-space: nowrap !important;
    display: inline-block !important;
  }
  
  .hero-second-sentence {
    display: block !important;
  }
  
  .hero-description {
    margin-bottom: 2rem !important;
  }
  
  .hero-buttons .btn {
    margin: 0.25rem auto !important;
    display: block !important;
    text-align: center !important;
  }
  
  /* Consistent spacing for all mobile sizes */
  .hero-content {
    padding: 0 1rem !important;
  }
  
  /* Navigation consistency */
  .navbar {
    padding: 0.5rem 1rem !important;
  }
  
  /* Section spacing consistency */
  section {
    padding: 2rem 1rem !important;
  }
  
  /* Feature grid consistency */
  .features {
    justify-content: center !important;
    padding: 1rem !important;
  }
  
  .feature {
    text-align: center !important;
    min-width: 80px !important;
  }
  
  .feature img {
    width: 50px !important;
    height: 50px !important;
    object-fit: contain !important;
  }
  
  .feature span {
    font-size: 0.8rem !important;
    white-space: nowrap !important;
  } 
  .delivery-that-works h3 { 
    font-size: 1rem; 
  }
  .life-styles h2 { 
    font-size: 1.8rem; 
    margin-bottom: 1.5rem;
  }
  
  /* Ensure mobile swiper stays visible */
  .lifestyle-mobile-grid {
    display: block !important;
    padding: 0 0.5rem;
  }
  .lifestyle-grid {
    display: none !important;
  }
  
  .lifestyle-swiper {
    height: auto;
    min-height: 400px;
    margin: 0 0.5rem;
  }
  
  .lifestyle-swiper-slide .lifestyle-item {
    max-width: 280px;
    padding: 1.25rem;
    min-height: 350px;
  }
  
  .lifestyle-swiper-slide .lifestyle-item img {
    height: 200px;
  }
  
  .lifestyle-swiper-slide .lifestyle-item h3 {
    font-size: 1.1rem;
    line-height: 1.2;
    text-align: center !important;
  }
}

/* ===============================================
   COMPREHENSIVE MOBILE DEVICE CONSISTENCY (UPDATED)
   =============================================== */

/* Extra Large Mobile Devices (428px+) - iPhone 14 Plus, iPhone 15 Plus */
@media (min-width: 428px) and (max-width: 600px) {
  .hero-content h1 {
    font-size: 2.2rem !important;
    line-height: 1.4 !important;
    word-spacing: 0.15em !important;
    letter-spacing: -0.01em !important;
    font-weight: bold !important;
  }
  
  .hero-description p {
    font-size: 1rem !important;
    line-height: 1.2 !important;
    word-spacing: 0.08em !important;
    letter-spacing: -0.01em !important;
    font-weight: bold !important;
  }
  
  .hero-buttons .btn {
    width: 80% !important;
    max-width: 350px !important;
    font-size: 1.1rem !important;
    padding: 0.8rem 2rem !important;
    margin: 0.25rem auto !important;
    display: block !important;
  }
  
  .features { gap: 1.2rem; }
  .delivery-grid { grid-template-columns: repeat(2, 1fr); }
  .delivery-that-works h2 { font-size: 1.8rem; }
  .categories h2 { font-size: 1.8rem; }
  .life-styles h2 { font-size: 1.8rem; }
  
  .lifestyle-swiper-slide .lifestyle-item {
    max-width: 290px;
    padding: 1.3rem;
    min-height: 360px;
  }
  
  .lifestyle-swiper-slide .lifestyle-item h3 {
    font-size: 1.15rem;
    line-height: 1.2;
  }
  
  .lifestyle-swiper-slide .lifestyle-item p {
    font-size: 0.95rem;
    text-align: center !important;
  }
}

/* Standard Large Mobile Devices (393px-427px) - iPhone 15, Pixel 4/5 */
@media (min-width: 393px) and (max-width: 427px) {
  .hero-content h1 {
    font-size: 2rem !important;
    line-height: 1.4 !important;
    word-spacing: 0.18em !important;
    letter-spacing: -0.02em !important;
    font-weight: bold !important;
  }
  
  .hero-description p {
    font-size: 0.95rem !important;
    line-height: 1.2 !important;
    word-spacing: 0.1em !important;
    letter-spacing: -0.02em !important;
    font-weight: bold !important;
  }
  
  .hero-buttons .btn {
    width: 85% !important;
    max-width: 340px !important;
    font-size: 1rem !important;
    padding: 0.75rem 1.8rem !important;
    margin: 0.25rem auto !important;
    display: block !important;
  }
  
  .features { gap: 1.1rem; }
  .delivery-grid { grid-template-columns: repeat(2, 1fr); }
  .delivery-that-works h2 { font-size: 1.7rem; }
  .categories h2 { font-size: 1.7rem; }
  .life-styles h2 { font-size: 1.7rem; }
  
  .lifestyle-swiper-slide .lifestyle-item {
    max-width: 280px;
    padding: 1.2rem;
    min-height: 350px;
  }
  
  .lifestyle-swiper-slide .lifestyle-item h3 {
    font-size: 1.1rem;
    line-height: 1.2;
  }
  
  .lifestyle-swiper-slide .lifestyle-item p {
    font-size: 0.9rem;
    text-align: center !important;
  }
}

/* Modern iPhone Standard (390px-392px) - iPhone 12/13/14 */
@media (min-width: 390px) and (max-width: 392px) {
  .hero-content h1 {
    font-size: 1.9rem !important;
    line-height: 1.4 !important;
    word-spacing: 0.2em !important;
    letter-spacing: -0.02em !important;
    font-weight: bold !important;
  }
  
  .hero-description p {
    font-size: 0.92rem !important;
    line-height: 1.2 !important;
    word-spacing: 0.12em !important;
    letter-spacing: -0.02em !important;
    font-weight: bold !important;
  }
  
  .hero-buttons .btn {
    width: 85% !important;
    max-width: 330px !important;
    font-size: 1rem !important;
    padding: 0.75rem 1.7rem !important;
    margin: 0.25rem auto !important;
    display: block !important;
  }
  
  .features { gap: 1rem; }
  .delivery-grid { grid-template-columns: repeat(2, 1fr); }
  .delivery-that-works h2 { font-size: 1.65rem; }
  .categories h2 { font-size: 1.65rem; }
  .life-styles h2 { font-size: 1.65rem; }
  
  .lifestyle-swiper-slide .lifestyle-item {
    max-width: 270px;
    padding: 1.15rem;
    min-height: 340px;
  }
  
  .lifestyle-swiper-slide .lifestyle-item h3 {
    font-size: 1.05rem;
    line-height: 1.2;
  }
  
  .lifestyle-swiper-slide .lifestyle-item p {
    font-size: 0.88rem;
    text-align: center !important;
  }
}

/* iPhone SE & Compact (375px-389px) - iPhone SE, iPhone 12/13 mini */
@media (min-width: 375px) and (max-width: 389px) {
  .hero-content h1 {
    font-size: 1.8rem !important;
    line-height: 1.4 !important;
    word-spacing: 0.22em !important;
    letter-spacing: -0.025em !important;
    font-weight: bold !important;
  }
  
  .hero-description p {
    font-size: 0.88rem !important;
    line-height: 1.15 !important;
    word-spacing: 0.14em !important;
    letter-spacing: -0.025em !important;
    font-weight: bold !important;
  }
  
  .hero-buttons .btn {
    width: 87% !important;
    max-width: 320px !important;
    font-size: 0.95rem !important;
    padding: 0.7rem 1.5rem !important;
    margin: 0.25rem auto !important;
    display: block !important;
  }
  
  .features { gap: 1rem; }
  .delivery-grid { grid-template-columns: repeat(2, 1fr); }
  .delivery-that-works h2 { font-size: 1.6rem; }
  .categories h2 { font-size: 1.6rem; }
  .life-styles h2 { font-size: 1.6rem; }
  
  .lifestyle-swiper-slide .lifestyle-item {
    max-width: 260px;
    padding: 1rem;
    min-height: 330px;
  }
  
  .lifestyle-swiper-slide .lifestyle-item h3 {
    font-size: 1rem;
    line-height: 1.2;
  }
  
  .lifestyle-swiper-slide .lifestyle-item p {
    font-size: 0.85rem;
    text-align: center !important;
  }
}

/* Galaxy Standard (360px-374px) - Galaxy S8/S9/S10/S20 */
@media (min-width: 360px) and (max-width: 374px) {
  .hero-content h1 {
    font-size: 1.7rem !important;
    line-height: 1.4 !important;
    word-spacing: 0.25em !important;
    letter-spacing: -0.03em !important;
    font-weight: bold !important;
  }
  
  .hero-description p {
    font-size: 0.85rem !important;
    line-height: 1.15 !important;
    word-spacing: 0.16em !important;
    letter-spacing: -0.03em !important;
    font-weight: bold !important;
  }
  
  .hero-buttons .btn {
    width: 90% !important;
    max-width: 310px !important;
    font-size: 0.9rem !important;
    padding: 0.7rem 1.4rem !important;
    margin: 0.25rem auto !important;
    display: block !important;
  }
  
  .features { gap: 0.9rem; }
  .delivery-grid { grid-template-columns: repeat(2, 1fr); }
  .delivery-that-works h2 { font-size: 1.55rem; }
  .categories h2 { font-size: 1.55rem; }
  .life-styles h2 { font-size: 1.55rem; }
  
  .lifestyle-swiper-slide .lifestyle-item {
    max-width: 250px;
    padding: 0.9rem;
    min-height: 320px;
  }
  
  .lifestyle-swiper-slide .lifestyle-item h3 {
    font-size: 0.95rem;
    line-height: 1.2;
  }
  
  .lifestyle-swiper-slide .lifestyle-item p {
    font-size: 0.82rem;
    text-align: center !important;
  }
}

/* Small Mobile (320px-359px) - Compact devices */
@media (min-width: 320px) and (max-width: 359px) {
  .hero-content h1 {
    font-size: 1.5rem !important;
    line-height: 1.4 !important;
    word-spacing: 0.3em !important;
    letter-spacing: -0.04em !important;
    font-weight: bold !important;
  }
  
  .hero-description p {
    font-size: 0.8rem !important;
    line-height: 1.1 !important;
    word-spacing: 0.2em !important;
    letter-spacing: -0.04em !important;
    font-weight: bold !important;
  }
  
  .hero-buttons .btn {
    width: 92% !important;
    max-width: 280px !important;
    font-size: 0.85rem !important;
    padding: 0.65rem 1.2rem !important;
    margin: 0.25rem auto !important;
    display: block !important;
  }
  
  .features { gap: 0.8rem; }
  .delivery-grid { grid-template-columns: repeat(2, 1fr); }
  .delivery-that-works h2 { font-size: 1.4rem; }
  .categories h2 { font-size: 1.4rem; }
  .life-styles h2 { font-size: 1.4rem; }
  
  .lifestyle-swiper-slide .lifestyle-item {
    max-width: 240px;
    padding: 0.8rem;
    min-height: 310px;
  }
  
  .lifestyle-swiper-slide .lifestyle-item h3 {
    font-size: 0.9rem;
    line-height: 1.2;
  }
  
  .lifestyle-swiper-slide .lifestyle-item p {
    font-size: 0.8rem;
    text-align: center !important;
  }
}

/* Ultra Compact (below 320px) - Legacy support */
@media (max-width: 319px) {
  .hero-content h1 {
    font-size: 1.3rem !important;
    line-height: 1.3 !important;
    word-spacing: 0.35em !important;
    letter-spacing: -0.05em !important;
    font-weight: bold !important;
  }
  
  .hero-description p {
    font-size: 0.75rem !important;
    line-height: 1.1 !important;
    word-spacing: 0.25em !important;
    letter-spacing: -0.05em !important;
    font-weight: bold !important;
  }
  
  .hero-buttons .btn {
    width: 95% !important;
    max-width: 260px !important;
    font-size: 0.8rem !important;
    padding: 0.6rem 1rem !important;
    margin: 0.25rem auto !important;
    display: block !important;
  }
  
  .features { gap: 0.7rem; }
  .delivery-grid { grid-template-columns: 1fr; }
  .delivery-that-works h2 { font-size: 1.3rem; }
  .categories h2 { font-size: 1.3rem; }
  .life-styles h2 { font-size: 1.3rem; }
  
  .lifestyle-swiper-slide .lifestyle-item {
    max-width: 220px;
    padding: 0.7rem;
    min-height: 300px;
  }
  
  .lifestyle-swiper-slide .lifestyle-item h3 {
    font-size: 0.85rem;
    line-height: 1.2;
  }
  
  .lifestyle-swiper-slide .lifestyle-item p {
    font-size: 0.75rem;
    text-align: center !important;
  }
  
  .lifestyle-pagination {
    margin-top: 1.5rem;
    gap: 0.5rem;
  }
  
  .lifestyle-pagination .pagination-dot {
    width: 10px;
    height: 10px;
  }
}

/* UNIVERSAL MOBILE LAYOUT CONSISTENCY */
@media (max-width: 600px) {
  /* Global text behavior for ALL mobile devices */
  .hero-first-sentence {
    white-space: nowrap !important;
    display: inline-block !important;
  }
  
  .hero-second-sentence {
    display: block !important;
  }
  
  .hero-description {
    margin-bottom: 2rem !important;
  }
  
  .hero-buttons .btn {
    text-align: center !important;
  }
  
  /* Consistent spacing for all mobile sizes */
  .hero-content {
    padding: 0 1rem !important;
  }
  
  /* Navigation consistency */
  .navbar {
    padding: 0.5rem 1rem !important;
  }
  
  /* Section spacing consistency */
  section {
    padding: 2rem 1rem !important;
  }
  
  /* Feature grid consistency */
  .features {
    justify-content: center !important;
    padding: 1rem !important;
  }
  
  .feature {
    text-align: center !important;
    min-width: 80px !important;
  }
  
  .feature img {
    width: 50px !important;
    height: 50px !important;
    object-fit: contain !important;
  }
  
  .feature span {
    font-size: 0.8rem !important;
    white-space: nowrap !important;
  }
  
  /* Ensure mobile swiper stays visible for all mobile sizes */
  .lifestyle-mobile-grid {
    display: block !important;
    padding: 0 0.5rem !important;
  }
  
  .lifestyle-grid {
    display: none !important;
  }
  
  .lifestyle-swiper {
    height: auto !important;
    min-height: 380px !important;
    margin: 0 0.5rem !important;
  }
  
  .lifestyle-swiper-slide .lifestyle-item img {
    height: 180px !important;
    object-fit: cover !important;
  }
  
  .lifestyle-swiper-slide .lifestyle-item h3 {
    text-align: center !important;
  }
  
  .lifestyle-swiper-slide .lifestyle-item p {
    margin: 0 0 0.5rem 0 !important;
  }
}

/* ===============================================
   COMPREHENSIVE SHARED COMPONENT MOBILE STYLES
   =============================================== */

/* Navigation Mobile Consistency */
@media (max-width: 600px) {
  .navbar {
    padding: 0.5rem 1rem !important;
    height: auto !important;
  }
  
  .nav-container {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  
  .nav-logo img {
    height: 40px !important;
    width: auto !important;
  }
  
  .nav-toggle {
    display: flex !important;
    order: 3 !important;
    flex-direction: column !important;
    cursor: pointer !important;
  }
  
  .nav-menu {
    position: fixed !important;
    top: 70px !important;
    left: -100% !important;
    width: 100% !important;
    height: calc(100vh - 70px) !important;
    background: white !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 2rem 0 !important;
    transition: left 0.3s ease !important;
    z-index: 1000 !important;
  }
  
  .nav-menu.active {
    left: 0 !important;
  }
  
  .nav-item {
    margin: 1rem 0 !important;
    width: 100% !important;
    text-align: center !important;
  }
  
  .nav-link {
    font-size: 1.1rem !important;
    padding: 1rem !important;
    display: block !important;
    width: 100% !important;
  }
}

/* Product Menu Mobile */
@media (max-width: 600px) {
  .product-menu {
    padding: 0.5rem 0 !important;
  }
  
  .product-menu-container {
    padding: 0 1rem !important;
  }
  
  .product-menu-scroll {
    gap: 0.5rem !important;
    padding: 0.5rem 0 !important;
  }
  
  .product-menu-item {
    font-size: 0.85rem !important;
    padding: 0.5rem 1rem !important;
    white-space: nowrap !important;
    min-width: auto !important;
  }
}

/* Operation Hours Mobile */
@media (max-width: 600px) {
  .operation-hours {
    padding: 0.75rem 1rem !important;
  }
  
  .operation-hours-text {
    font-size: 0.85rem !important;
    text-align: center !important;
  }
}

/* Delivery Grid Mobile Consistency */
@media (max-width: 600px) {
  .delivery-that-works {
    padding: 2rem 1rem !important;
  }
  
  .delivery-that-works h3 {
    font-size: 1rem !important;
    margin-bottom: 1rem !important;
  }
  
  .delivery-grid {
    gap: 1.5rem !important;
    margin-top: 2rem !important;
  }
  
  .delivery-item {
    text-align: center !important;
    padding: 1rem !important;
  }
  
  .delivery-item img {
    width: 60px !important;
    height: 60px !important;
    margin-bottom: 1rem !important;
  }
  
  .delivery-text-1 {
    font-size: 0.9rem !important;
    font-weight: bold !important;
    margin-bottom: 0.5rem !important;
  }
  
  .delivery-text-2 {
    font-size: 0.8rem !important;
    color: #666 !important;
  }
}

/* Categories Mobile Consistency */
@media (max-width: 600px) {
  .categories {
    padding: 2rem 1rem !important;
  }
  
  .category-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
    margin-top: 1.5rem !important;
  }
  
  .category-item {
    padding: 1rem !important;
    border-radius: 8px !important;
    transition: transform 0.2s ease !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .category-item img {
    width: 100px !important;
    height: 100px !important;
    margin-bottom: 0.75rem !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .category-item h3 {
    font-size: 0.9rem !important;
    margin: 0 !important;
    text-align: center !important;
  }
}

/* Footer Mobile Consistency */
@media (max-width: 600px) {
  .footer-note {
    padding: 2rem 1rem !important;
  }
  
  #footer-company-info {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    text-align: center !important;
  }
  
  .footer-column {
    margin-bottom: 1.5rem !important;
  }
  
  .footer-heading {
    font-size: 1.1rem !important;
    margin-bottom: 1rem !important;
  }
  
  .footer-link {
    font-size: 0.9rem !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
  }
  
  .social-icons {
    justify-content: center !important;
    gap: 1rem !important;
    margin-top: 1rem !important;
  }
  
  .contact-item {
    font-size: 0.9rem !important;
    margin-bottom: 0.75rem !important;
    justify-content: center !important;
  }
}

/* DCC Legal Section Mobile */
@media (max-width: 600px) {
  .dcc-compliant-legal-section {
    padding: 1.5rem 1rem !important;
  }
  
  .dcc-compliant-legal-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .dcc-legal-column p {
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
    text-align: center !important;
  }
}

/* Newsletter Mobile */
@media (max-width: 600px) {
  .newsletter {
    padding: 2rem 1rem !important;
  }
  
  .newsletter-content h2 {
    font-size: 1.5rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .newsletter-content p {
    font-size: 0.9rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .newsletter-form-group {
    flex-direction: column !important;
    gap: 1rem !important;
  }
  
  .newsletter-form-group input {
    width: 100% !important;
    padding: 0.75rem !important;
    font-size: 0.9rem !important;
    border: 2px solid #555555 !important;
  }
  
  .newsletter-submit-btn {
    width: 100% !important;
    padding: 0.75rem !important;
    font-size: 1rem !important;
  }
}

/* Scroll to Top Mobile */
@media (max-width: 600px) {
  .scroll-to-top {
    width: 45px !important;
    height: 45px !important;
    bottom: 20px !important;
    right: 20px !important;
  }
  
  .scroll-to-top svg {
    width: 20px !important;
    height: 20px !important;
  }
}

/* Age Modal Mobile Consistency */
@media (max-width: 600px) {
  .age-modal {
    padding: 1rem !important;
  }
  
  .age-modal-content {
    width: 95% !important;
    max-width: 400px !important;
    margin: 2rem auto !important;
    padding: 2rem 1.5rem !important;
  }
  
  .age-modal-logo {
    height: 40px !important;
    margin-bottom: 1rem !important;
  }
  
  .age-modal-header h2 {
    font-size: 1.3rem !important;
    margin-bottom: 1rem !important;
  }
  
  .age-modal-body p {
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important;
  }
  
  .age-modal-buttons {
    flex-direction: column !important;
    gap: 1rem !important;
    margin-top: 1.5rem !important;
  }
  
  .age-btn {
    width: 100% !important;
    padding: 0.75rem !important;
    font-size: 0.9rem !important;
  }
}

/* Device-Specific Fine-tuning for Navigation */
@media (min-width: 428px) and (max-width: 600px) {
  .nav-logo img { height: 45px !important; }
  .nav-link { font-size: 1.2rem !important; }
}

@media (min-width: 375px) and (max-width: 427px) {
  .nav-logo img { height: 42px !important; }
  .nav-link { font-size: 1.1rem !important; }
}

@media (min-width: 320px) and (max-width: 374px) {
  .nav-logo img { height: 38px !important; }
  .nav-link { font-size: 1rem !important; }
}

@media (max-width: 319px) {
  .nav-logo img { height: 35px !important; }
  .nav-link { font-size: 0.95rem !important; }
}

/* ==================== 
   LIFESTYLE RESPONSIVE IMPROVEMENTS 
   ==================== */

/* Large screens and tablets (769px - 1024px) - 2 column grid */
@media (max-width: 1024px) and (min-width: 769px) {
  .lifestyle-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
  }
  
  .life-styles h2 {
    font-size: 2.2rem;
  }
  
  .lifestyle-item h3 {
    font-size: 1.1rem;
  }
  
  .lifestyle-item p {
    font-size: 0.9rem;
  }
  
  .lifestyle-item img {
    height: 220px;
  }
}

/* ===============================================
   PAGE-SPECIFIC MOBILE CONSISTENCY
   =============================================== */

/* Promotions Page Mobile */
@media (max-width: 600px) {
  .promotions-hero {
    padding: 3rem 1rem !important;
    min-height: 300px !important;
  }
  
  .promotions-hero h1 {
    font-size: 2rem !important;
    margin-bottom: 1rem !important;
  }
  
  .promotions-hero p {
    font-size: 1rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .promo-section {
    padding: 2rem 1rem !important;
    margin-bottom: 2rem !important;
  }
  
  .promo-section h2 {
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
  }
  
  .promo-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .promo-card {
    padding: 1.5rem !important;
    text-align: center !important;
  }
  
  .promo-card h3 {
    font-size: 1.2rem !important;
    margin-bottom: 1rem !important;
  }
  
  .promo-card p {
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important;
  }
}

/* About Us Page Mobile */
@media (max-width: 600px) {
  .about-hero {
    padding: 3rem 1rem !important;
    min-height: 300px !important;
  }
  
  .about-hero h1 {
    font-size: 2rem !important;
    margin-bottom: 1rem !important;
  }
  
  .about-hero p {
    font-size: 1rem !important;
  }
  
  .who-we-are {
    padding: 2rem 1rem !important;
  }
  
  .who-we-are__content {
    flex-direction: column !important;
    gap: 2rem !important;
  }
  
  .who-we-are h2 {
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
  }
  
  .who-we-are__description {
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
  }
  
  .mission h3,
  .values h3 {
    font-size: 1.2rem !important;
    margin-bottom: 1rem !important;
  }
  
  .mission p,
  .values p {
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important;
  }
}

/* Locations Page Mobile */
@media (max-width: 600px) {
  .locations-hero {
    padding: 3rem 1rem !important;
    min-height: 300px !important;
  }
  
  .locations-hero h1 {
    font-size: 2rem !important;
    margin-bottom: 1rem !important;
  }
  
  .locations-hero p {
    font-size: 1rem !important;
  }
  
  .delivery-zones {
    padding: 2rem 1rem !important;
  }
  
  .delivery-zones h2 {
    font-size: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .zones-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .zone-card {
    padding: 1.5rem !important;
    text-align: center !important;
  }
  
  .zone-card h3 {
    font-size: 1.2rem !important;
    margin-bottom: 1rem !important;
  }
  
  .zone-card p {
    font-size: 0.9rem !important;
  }
  
  .zone-list {
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .zone-list li {
    font-size: 0.85rem !important;
    margin-bottom: 0.5rem !important;
    text-align: center !important;
  }
}

/* FAQ Page Mobile */
@media (max-width: 600px) {
  .faq-hero {
    padding: 3rem 1rem !important;
    min-height: 300px !important;
  }
  
  .faq-hero h1 {
    font-size: 2rem !important;
    margin-bottom: 1rem !important;
  }
  
  .faq-hero p {
    font-size: 1rem !important;
  }
  
  .faq-content {
    padding: 2rem 1rem !important;
  }
  
  .faq-section {
    margin-bottom: 2rem !important;
  }
  
  .faq-section h2 {
    font-size: 1.4rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .faq-item {
    margin-bottom: 1rem !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    background: white !important;
  }
  
  .faq-question {
    padding: 1rem !important;
    font-size: 1rem !important;
    font-weight: bold !important;
    cursor: pointer !important;
    background: #f8f9fa !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-radius: 8px 8px 0 0 !important;
  }
  
  .faq-question h3 {
    margin: 0 !important;
    font-size: 1rem !important;
    flex: 1 !important;
  }
  
  .faq-toggle {
    font-size: 1.2rem !important;
    font-weight: bold !important;
    color: #007c91 !important;
    transition: transform 0.3s ease !important;
    margin-left: 1rem !important;
  }
  
  .faq-item.active .faq-toggle {
    transform: rotate(45deg) !important;
    color: #28a745 !important;
  }
  
  .faq-answer {
    padding: 0 1rem !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease, padding 0.3s ease !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    border-top: 1px solid #e0e0e0 !important;
    background: white !important;
  }
  
  .faq-item.active .faq-answer {
    max-height: 300px !important;
    padding: 1rem !important;
  }
  
  .faq-answer p {
    margin: 0 !important;
    color: #495057 !important;
  }
  
  .faq-answer a {
    color: #28a745 !important;
    text-decoration: none !important;
  }
  
  .faq-answer a:hover {
    text-decoration: underline !important;
  }
}

/* Checkout Promotions Section Mobile */
@media (max-width: 600px) {
  .checkout-promotions {
    padding: 2rem 1rem !important;
  }
  
  .checkout-promotions-content h2 {
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
  }
  
  .checkout-promotions-content p {
    font-size: 0.9rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .promotions-features {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
    margin: 1.5rem 0 !important;
  }
  
  .promo-feature {
    padding: 1rem !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .promo-icon {
    font-size: 1.5rem !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
    text-align: center !important;
  }
  
  .promo-feature span:not(.promo-icon) {
    font-size: 0.85rem !important;
    display: block !important;
    text-align: center !important;
  }
  
  .promotions-btn {
    width: 100% !important;
    padding: 1rem !important;
    font-size: 1rem !important;
    margin-bottom: 1rem !important;
  }
  
  .promotions-note {
    font-size: 0.8rem !important;
    text-align: center !important;
  }
}

/* Mobile App Section Mobile */
@media (max-width: 600px) {
  .mobile-app {
    padding: 2rem 1rem !important;
  }
  
  .mobile-app-content {
    flex-direction: column !important;
    gap: 2rem !important;
    text-align: center !important;
  }
  
  .mobile-app-text h2 {
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
  }
  
  .mobile-app-text p {
    font-size: 0.9rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .app-features h3 {
    font-size: 1.2rem !important;
    margin-bottom: 1rem !important;
  }
  
  .features-list {
    padding: 0 !important;
    margin: 0 0 2rem 0 !important;
  }
  
  .features-list li {
    font-size: 0.85rem !important;
    margin-bottom: 0.75rem !important;
    padding: 0.5rem !important;
    text-align: left !important;
  }
  
  .feature-icon {
    font-size: 1.2rem !important;
    margin-right: 0.75rem !important;
  }
  
  .app-download h3 {
    font-size: 1.1rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .app-download p {
    font-size: 0.85rem !important;
    margin-bottom: 1rem !important;
  }
  
  .app-store-btn img {
    height: 80px !important;
    width: auto !important;
  }
  
  .app-screen-image {
    max-width: 200px !important;
    height: auto !important;
    margin: 0 auto !important;
  }
}

/* Medium screens (769px - 900px) */
@media (max-width: 900px) and (min-width: 769px) {
  .life-styles {
    padding: 3rem 1rem;
  }
  
  .categories {
    margin-bottom: 1rem;
  }
  
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* WHO WE ARE SECTION */
.about-main {
  padding-top: 40px; /* Account for fixed header */
}

.who-we-are {
  padding: 80px 0;
  background: white;
}

.who-we-are__content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.who-we-are__text {
  flex: 1;
}

.who-we-are__description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 40px;
}

.mission-values {
  display: grid;
  gap: 30px;
}

.mission h3,
.values h3 {
  color: #000000;
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.mission p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

.values-list {
  list-style: none;
  padding: 0;
}

.values-list li {
  color: #666;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.values-list li::before {
  content: "✓";
  color: var(--color-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.values-list strong {
  color: var(--color-primary);
}

.meet-management-team {
  flex: 0 0 400px;
  max-width: 400px;
}

.meet-management-team h3 {
  color: #000000;
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.meet-management-team p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.meet-management-team strong {
  color: var(--color-primary);
  font-weight: 600;
}

/* RESPONSIVE DESIGN FOR WHO WE ARE */
@media (max-width: 768px) {
  .about-main {
    padding-top: 80px;
  }
  
  .who-we-are {
    padding: 3rem 20px 60px;
  }
  
  .who-we-are__content {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }
  
  .who-we-are__image,
  .meet-management-team {
    flex: none;
    max-width: 100%;
  }
  
  .who-we-are__description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .mission-values {
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .who-we-are {
    padding: 30px 16px 40px;
  }
  
  .who-we-are__content {
    padding: 0 16px;
  }
  
  .who-we-are__description {
    font-size: 0.95rem;
  }
  
  .mission h3,
  .values h3,
  .meet-management-team h3 {
    font-size: 1.2rem;
  }
}

/* CONTACT US SECTION */
.contact-us {
  padding: 80px 0;
  background: white;
}

.contact-us__content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-us__form-section {
  flex: 1;
}

.contact-us__form-section h3 {
  color: #000000;
  font-size: 1.4rem;
  margin-bottom: 30px;
  font-weight: 600;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #333;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 0;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: #000000;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #27ae60;
}

.submit-btn:disabled {
  background: #bdc3c7;
  cursor: not-allowed;
}

.form-message {
  margin-top: 15px;
  padding: 12px;
  border-radius: 8px;
  font-weight: 500;
  display: none;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.contact-us__map-section {
  flex: 0 0 400px;
  max-width: 400px;
}

.location-map {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE DESIGN FOR CONTACT US */
@media (max-width: 768px) {
  .contact-us {
    padding: 60px 20px;
  }
  
  .contact-us__content {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }
  
  .contact-us__map-section {
    flex: none;
    max-width: 100%;
  }
  
  .contact-us__form-section h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .contact-us {
    padding: 40px 16px;
  }
  
  .contact-us__content {
    padding: 0 16px;
  }
  
  .contact-us__form-section h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
}

/* MONTHLY DEAL SECTION */
.monthly-deal-section {
  background-color: #ffffff;
  padding: 60px 0;
}

.monthly-deal-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2rem;
}

.monthly-deal-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.monthly-deal-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.monthly-deal-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.monthly-deal-btn {
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  padding: 16px 48px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.monthly-deal-btn:hover {
  background-color: #333333;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.monthly-deal-btn:active {
  transform: translateY(0);
}

/* Monthly Deal Responsive */
@media (max-width: 768px) {
  .monthly-deal-section {
    padding: 40px 0;
  }

  .monthly-deal-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .monthly-deal-container {
    padding: 0 20px;
    gap: 1.5rem;
  }

  .monthly-deal-image {
    border-radius: 6px;
  }

  .monthly-deal-btn {
    padding: 14px 40px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .monthly-deal-section {
    padding: 30px 0;
  }

  .monthly-deal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .monthly-deal-container {
    padding: 0 15px;
    gap: 1rem;
  }

  .monthly-deal-btn {
    padding: 12px 32px;
    font-size: 0.95rem;
  }
}

/* NEWSLETTER SECTION */
.newsletter {
  background-color: #f8f9fa;
  padding: 80px 0;
  color: #000000;
}

.newsletter-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.newsletter-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.newsletter-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.newsletter-form {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form-group {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.newsletter-form-group input[type="text"],
.newsletter-form-group input[type="email"] {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid #555555;
  border-radius: 0;
  font-size: 1rem;
  background-color: white;
  color: #333;
  max-width: 200px;
}

/* Specific targeting for newsletter input IDs */
#newsletterName,
#newsletterEmail {
  border: 2px solid #555555 !important;
}

.newsletter-form-group input[type="text"]:focus,
.newsletter-form-group input[type="email"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-submit-btn {
  padding: 15px 30px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.newsletter-submit-btn:hover {
  background-color: #333;
}

.newsletter-submit-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.newsletter-message {
  margin-top: 1rem;
  padding: 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  display: none;
}

.newsletter-message.success {
  background-color: rgba(76, 175, 80, 0.9);
  color: white;
  border: 1px solid rgba(76, 175, 80, 1);
}

.newsletter-message.error {
  background-color: rgba(244, 67, 54, 0.9);
  color: white;
  border: 1px solid rgba(244, 67, 54, 1);
}

/* RESPONSIVE DESIGN FOR NEWSLETTER */
@media (max-width: 768px) {
  .newsletter {
    padding: 60px 20px;
  }
  
  .newsletter-content {
    padding: 0 20px;
  }
  
  .newsletter-content h2 {
    font-size: 2rem;
  }
  
  .newsletter-content p {
    font-size: 1rem;
  }
  
  .newsletter-form-group {
    flex-direction: column;
    gap: 1rem;
  }
  
  .newsletter-form-group input[type="text"],
  .newsletter-form-group input[type="email"] {
    max-width: 100%;
    width: 100%;
  }
  
  .newsletter-submit-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .newsletter {
    padding: 40px 16px;
  }
  
  .newsletter-content {
    padding: 0 16px;
  }
  
  .newsletter-content h2 {
    font-size: 1.8rem;
  }
  
  .newsletter-form-group input[type="text"],
  .newsletter-form-group input[type="email"] {
    padding: 12px 16px;
  }
  
  .newsletter-submit-btn {
    padding: 12px 24px;
  }
}

/* LOCATIONS PAGE STYLES */
.locations-main {
  padding: 0;
}

.locations-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.locations-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #000000;
}

.locations-section p {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: #000000;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.location-item {
  background: white;
  padding: 2rem;
  border-radius: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.location-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #000000;
}

.location-item p {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 0;
  text-align: center;
}

/* RESPONSIVE DESIGN FOR LOCATIONS */
@media (max-width: 768px) {
  .locations-section {
    padding: 60px 0;
  }
  
  .locations-section h2 {
    font-size: 2rem;
  }
  
  .locations-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .location-item {
    padding: 1.5rem;
  }
  
  .location-item h3 {
    font-size: 1.3rem;
  }
}

/* PROMOTIONS PAGE STYLES */
.promotions-main {
  padding: 0;
}

/* Hero Discount Text */
.hero-discount-text {
  color: red;
  font-weight: bold;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.promotions-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.promotions-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #000000;
  font-weight: bold;
}

.promotions-section p {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: #000000;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.promotions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.promotion-item {
  display: flex;
  flex-direction: row;
  background: white;
  padding: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border: none;
  gap: 0;
}

.promotion-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.promotion-left {
  flex: 1.2;
  background: #f8f9fa;
  min-height: 250px;
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0;
  border: none;
  border-right: none;
}

.promotion-image-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
  padding: 0;
  margin: 0;
  line-height: 0;
  font-size: 0;
  background: transparent;
  box-sizing: border-box;
}

/* Promotion image styling */
.promotion-item .promotion-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  box-sizing: border-box;
  max-width: none;
  min-width: 100%;
  min-height: 100%;
}

.promotion-item:hover .promotion-image {
  transform: scale(1.05);
}

/* Desktop-specific promotion styling to ensure full image coverage */
@media (min-width: 769px) {
  .promotion-left {
    flex: 1.2;
    background: #f8f9fa;
    min-height: 250px;
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
  }

  .promotion-image-container {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 0 !important;
    font-size: 0 !important;
    background: transparent !important;
    box-sizing: border-box !important;
  }

  .promotion-item .promotion-image {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.3s ease !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    box-sizing: border-box !important;
    max-width: none !important;
    min-width: 100% !important;
    min-height: 100% !important;
  }
}

.promotion-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  justify-content: space-between;
  min-height: 250px;
  background: white;
  border: none;
  border-left: none;
  margin: 0;
}

.promotion-content {
  flex-grow: 1;
  text-align: left;
  margin-bottom: 1rem;
}

.promotion-content h3 {
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  text-align: left;
}

.promotion-app-bonus {
  background: #e8f5e8;
  padding: 0.75rem;
  border-radius: 4px;
  margin: 0.5rem 0;
  font-size: 0.9rem;
  border-left: 4px solid #4CAF50;
  text-align: left;
}

.promotion-tiers {
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0.5rem 0;
  text-align: left;
}

.promotion-discount {
  font-size: 1.25rem;
  font-weight: bold;
  color: #4CAF50;
  margin: 0.5rem 0;
  text-align: left;
}

.promotion-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff6b35;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 2;
}

.promotion-btn {
  display: inline-block;
  background: #000000;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 0;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  margin-top: auto;
  align-self: flex-start;
}

.promotion-btn:hover {
  background: #333333;
  transform: translateY(-2px);
}

/* Promotion image styling */
.promotion-item .promotion-image {
  width: 100%;
  height: auto;
  max-width: 220px;
  display: block;
  margin: 0 auto 1rem auto;
}

/* First-time deal image styling - bigger for desktop */
.first-time-deal-image {
  width: 100%;
  height: auto;
  max-width: 500px;
  display: block;
  margin: 0 auto 1rem auto;
}

/* Move down Shop Now button for desktop view (First-Time Customer) */
.promotion-item .promotion-btn {
  margin-top: 2rem;
}

@media (max-width: 600px) {
  /* Fix mobile view: ensure full item is visible */
  .promotions-swiper-slide .promotion-item {
    min-height: 320px !important;
    max-width: 260px !important;
    overflow: visible !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .promotions-swiper-slide .promotion-btn {
    margin-top: 1.2rem !important;
  }
}

.promotion-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.promotion-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promotion-badge:has-text("NEW") {
  background: #28a745;
}

.promotion-badge:has-text("POPULAR") {
  background: #ffc107;
  color: #333;
}

.promotion-badge:has-text("LIMITED") {
  background: #dc3545;
}

.promotion-badge:has-text("MEMBERS") {
  background: #6f42c1;
}

.promotion-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #000000;
  margin-top: 2rem;
  line-height: 1.2;
}

.promotion-discount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.promotion-item p:not(.promotion-discount) {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-align: left;
}

.promotion-btn {
  display: inline-block;
  background: #000000;
  color: white;
  padding: 0.8rem 2rem;
  text-decoration: none;
  border-radius: 0;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.promotion-btn:hover {
  background: #333333;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(51, 51, 51, 0.4);
}

/* RESPONSIVE DESIGN FOR PROMOTIONS */
@media (max-width: 768px) {
  .promotions-section {
    padding: 60px 0;
  }
  
  .promotions-section h2 {
    font-size: 2rem;
    padding: 0 1rem;
  }
  
  .promotions-section p {
    padding: 0 1rem;
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .promotions-section .container {
    padding: 0;
  }
  
  /* Hide desktop grid completely on mobile */
  .promotions-grid {
    display: none !important;
  }
  
  /* Show mobile grid as single column */
  .promotions-mobile-grid {
    display: block !important;
    padding: 0 15px;
  }
  
  /* Ensure mobile promotion items use horizontal structure like desktop */
  .promotions-mobile-grid .promotion-item {
    display: flex !important;
    flex-direction: row !important;
    background: white;
    padding: 0;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: none;
    min-height: 250px;
    overflow: hidden;
  }
  
  .promotions-mobile-grid .promotion-left {
    flex: 1;
    background: #f8f9fa;
    position: relative;
    min-height: 250px;
    overflow: hidden;
    width: 50%;
  }
  
  .promotions-mobile-grid .promotion-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    justify-content: space-between;
    min-height: 250px;
    width: 50%;
  }
  
  /* Mobile promotion images */
  .promotions-mobile-grid .promotion-image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: block;
    padding: 0;
    margin: 0;
    background: transparent;
  }
  
  .promotions-mobile-grid .promotion-image,
  .promotions-mobile-grid .first-time-deal-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  /* Mobile promotion buttons */
  .promotions-mobile-grid .promotion-btn {
    width: 100%;
    padding: 1rem;
    text-align: center;
    margin-top: 1rem;
  }

  /* Mobile promotion text alignment */
  .promotions-mobile-grid .promotion-content h4 {
    margin: 0 0 0.5rem 0;
    padding: 0;
    text-align: left;
  }

  .promotions-mobile-grid .promotion-content p {
    margin: 0 0 1rem 0;
    padding: 0;
    text-align: left;
  }

  /* Specific alignment for mobile promotion items - nuclear option */
  #mobile-free-delivery-deal,
  #mobile-current-deals-loyalty,
  #mobile-current-deals-schedule {
    text-align: left !important;
  }

  #mobile-free-delivery-deal .promotion-content,
  #mobile-current-deals-loyalty .promotion-content,
  #mobile-current-deals-schedule .promotion-content {
    text-align: left !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  #mobile-free-delivery-deal .promotion-content h4,
  #mobile-current-deals-loyalty .promotion-content h4,
  #mobile-current-deals-schedule .promotion-content h4 {
    margin: 0 0 0.5rem 0 !important;
    padding: 0 !important;
    text-align: left !important;
    text-indent: 0 !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }

  #mobile-free-delivery-deal .promotion-content p,
  #mobile-current-deals-loyalty .promotion-content p,
  #mobile-current-deals-schedule .promotion-content p {
    margin: 0 0 1rem 0 !important;
    padding: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
    text-indent: 0 !important;
    box-sizing: border-box !important;
    position: relative !important;
    left: 0 !important;
    transform: translateX(0) !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Target any nested elements that might be causing issues */
  #mobile-free-delivery-deal *,
  #mobile-current-deals-loyalty *,
  #mobile-current-deals-schedule * {
    text-align: left !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-indent: 0 !important;
  }

  /* Override any flexbox centering */
  #mobile-free-delivery-deal .promotion-right,
  #mobile-current-deals-loyalty .promotion-right,
  #mobile-current-deals-schedule .promotion-right {
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }

  /* Aggressive fix for specific mobile promotion items - remove any possible indentation */
  #mobile-free-delivery-deal .promotion-content,
  #mobile-current-deals-loyalty .promotion-content,
  #mobile-current-deals-schedule .promotion-content {
    text-align: left !important;
    padding: 0 !important;
    margin: 0 !important;
    text-indent: 0 !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }

  #mobile-free-delivery-deal .promotion-content h4,
  #mobile-current-deals-loyalty .promotion-content h4,
  #mobile-current-deals-schedule .promotion-content h4 {
    text-align: left !important;
    margin: 0 0 0.5rem 0 !important;
    padding: 0 !important;
    text-indent: 0 !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }

  #mobile-free-delivery-deal .promotion-content p,
  #mobile-current-deals-loyalty .promotion-content p,
  #mobile-current-deals-schedule .promotion-content p {
    text-align: left !important;
    margin: 0 0 1rem 0 !important;
    padding: 0 !important;
    text-indent: 0 !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }

  /* Ensure mobile promotion buttons are centered */
  .promotions-mobile-grid .promotion-btn {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 1rem !important;
    box-sizing: border-box !important;
  }

  /* Additional targeting for button text centering */
  .promotions-mobile-grid .promotion-item .promotion-btn,
  .promotions-mobile-grid a.promotion-btn {
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
    display: flex !important;
    flex-direction: column !important;
  }
}

/* DAILY DEALS SECTION */
.daily-deals-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.daily-deals-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #000000;
}

.daily-deals-section > .container > p {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: #666;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Desktop Grid - 1 column vertical layout */
.daily-deals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Hide mobile grid by default */
.daily-deals-mobile-grid {
  display: none;
}

.daily-deal-item {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: auto;
}

.daily-deal-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.daily-deal-left {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  min-height: 300px;
}

.daily-deal-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  justify-content: center;
  text-align: center;
  min-height: auto;
  overflow: visible;
}

.daily-deal-content {
  flex-grow: 1;
  text-align: center;
  margin-bottom: 1.5rem;
}

.deal-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2c3e50;
  margin: 0 0 0.5rem 0;
}

.deal-subtitle {
  font-size: 1.1rem;
  color: #7f8c8d;
  margin: 0 0 1rem 0;
  font-weight: normal;
}

.deal-discount {
  font-size: 1rem;
  font-weight: bold;
  color: #e74c3c;
  margin: 0 0 0.25rem 0;
}

.deal-happy-hour {
  font-size: 0.9rem;
  color: #27ae60;
  margin: 0.5rem 0;
  font-weight: 600;
}

.deal-preorder {
  font-size: 0.85rem;
  color: #34495e;
  margin: 0.5rem 0;
  font-style: italic;
}

.deal-description {
  font-size: 0.9rem;
  color: #7f8c8d;
  margin: 0.5rem 0;
}

.deal-pricing {
  font-size: 0.9rem;
  color: #2c3e50;
  margin: 0.5rem 0 1rem 0;
  font-weight: 600;
  line-height: 1.4;
}

.deal-additional {
  font-size: 0.85rem;
  color: #34495e;
  margin: 0.5rem 0 1.5rem 0;
  line-height: 1.4;
}

.daily-deal-image {
  background: #f4f4f4;
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
}

.daily-deal-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.daily-deal-item:hover .daily-deal-image img {
  transform: scale(1.05);
}

.daily-deal-btn {
  display: inline-block;
  background: #000000;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 0;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  margin: 0 auto;
  align-self: center;
}

.daily-deal-btn:hover {
  background: #333333;
  transform: translateY(-2px);
}

/* ==================== 
   DAILY DEALS MOBILE SWIPER 
   ==================== */

/* Hide mobile grid by default */
.daily-deals-mobile-grid {
  display: none;
}

/* Mobile swiper container */
.daily-deals-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
  height: auto;
  min-height: 350px;
  padding: 0 20px;
}

/* Swiper wrapper */
.daily-deals-swiper-wrapper {
  display: flex;
  transition: transform 0.3s ease;
  will-change: transform;
}

/* Individual slides */
.daily-deals-swiper-slide {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 0 10px;
  box-sizing: border-box;
}

/* Daily deal items in mobile */
.daily-deals-swiper-slide .daily-deal-item {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 1.5rem;
  background: white;
  border-radius: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.daily-deals-swiper-slide .daily-deal-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.daily-deals-swiper-slide .daily-deal-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8f9fa;
  padding: 1rem;
}

.daily-deals-swiper-slide .daily-deal-image img {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.daily-deals-swiper-slide .daily-deal-item:hover .daily-deal-image img {
  transform: scale(1.05);
}

.daily-deals-swiper-slide .daily-deal-btn {
  display: inline-block;
  background: #000000;
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 0;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  margin-top: auto;
  align-self: center;
  min-width: 120px;
}

.daily-deals-swiper-slide .daily-deal-btn:hover {
  background: #333333;
  transform: translateY(-2px);
}

/* Daily Deals Pagination */
.daily-deals-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 0 20px;
}

.daily-deals-pagination .pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background 0.3s ease;
}

.daily-deals-pagination .pagination-dot.active {
  background: var(--primary-color);
}

/* Daily Deals Responsive - Grid-based approach like example.html */
@media (max-width: 768px) {
  .daily-deals-grid {
    display: none;
  }
  
  .daily-deals-mobile-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 15px;
    container-type: inline-size;
  }
  
  .daily-deals-mobile-grid .daily-deal-item {
    display: flex;
    flex-direction: column;
    border: 1px solid #e9e9e9;
    border-radius: 0;
    background: #fff;
    overflow: visible;
    min-height: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .daily-deals-mobile-grid .daily-deal-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  
  .daily-deals-mobile-grid .daily-deal-left {
    background: #f8f9fa;
    width: 100%;
    min-height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .daily-deals-mobile-grid .daily-deal-left .daily-deal-image {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    display: block;
    background: transparent;
    overflow: hidden;
  }
  
  .daily-deals-mobile-grid .daily-deal-left .daily-deal-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .daily-deals-mobile-grid .daily-deal-item:hover .daily-deal-image img {
    transform: scale(1.05);
  }
  
  .daily-deals-mobile-grid .daily-deal-right {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  
  .daily-deals-mobile-grid .daily-deal-content {
    text-align: center;
    margin-bottom: 1.5rem;
  }
}

/* Daily deals swiper styles */
.daily-deals-swiper-slide .daily-deal-image {
  height: auto;
}

.daily-deals-swiper-slide .daily-deal-btn {
  padding: 0.7rem 1.2rem;
  font-size: 0.8rem;
}

.daily-deals-pagination {
  padding: 0 15px;
}

@media (max-width: 600px) {
  .daily-deals-swiper {
    padding: 0 10px;
    min-height: 300px;
  }
  
  .daily-deals-swiper-slide {
    padding: 0 5px;
  }
  
  .daily-deals-swiper-slide .daily-deal-item {
    padding: 1rem;
  }
}

/* Mobile grid adjustments for smaller screens */
@media (max-width: 550px) {
  .daily-deals-mobile-grid {
    gap: 1rem;
    padding: 0 10px;
  }
  
  .daily-deals-mobile-grid .daily-deal-item {
    min-height: 200px;
  }
  
  .daily-deals-mobile-grid .daily-deal-right {
    padding: 15px;
    gap: 10px;
  }
  
  .daily-deals-mobile-grid .daily-deal-left .daily-deal-image img {
    object-fit: cover;
    object-position: center;
  }
}

/* Screens smaller than 550px - ensure full image visibility */
@media (max-width: 550px) {
  .daily-deals-swiper-slide .daily-deal-image {
    height: 200px;
    padding: 0.8rem;
  }
  
  .daily-deals-swiper-slide .daily-deal-image img {
    max-width: 85%;
    max-height: 85%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
}

/* Additional fix for very narrow screens */
@media (max-width: 430px) {
  .daily-deals-swiper-slide .daily-deal-image {
    height: 180px;
    padding: 0.6rem;
  }
  
  .daily-deals-swiper-slide .daily-deal-image img {
    max-width: 80%;
    max-height: 80%;
  }
}

@media (max-width: 480px) {
  .daily-deals-swiper {
    padding: 0 5px;
    min-height: 280px;
  }
  
  .daily-deals-swiper-slide {
    padding: 0 3px;
  }
  
  .daily-deals-swiper-slide .daily-deal-item {
    padding: 0.8rem;
    max-width: none;
  }
  
  .daily-deals-swiper-slide .daily-deal-image {
    height: 170px;
    margin-bottom: 0.8rem;
    padding: 0.5rem;
  }
  
  .daily-deals-swiper-slide .daily-deal-image img {
    max-width: 75%;
    max-height: 75%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  
  .daily-deals-swiper-slide .daily-deal-btn {
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
    min-width: 100px;
  }
  
  .daily-deals-pagination {
    padding: 0 5px;
  }
}

/* Ultra small screens - maintain good image visibility */
@media (max-width: 360px) {
  .daily-deals-swiper-slide .daily-deal-image {
    height: 150px;
    padding: 0.4rem;
  }
  
  .daily-deals-swiper-slide .daily-deal-image img {
    max-width: 70%;
    max-height: 70%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
}

/* BUNDLE DEALS SECTION */
.bundle-deals-section {
  background: #ffffff;
  color: #333;
  padding: 80px 0;
  position: relative;
}

.bundle-deals-section .container {
  position: relative;
  z-index: 2;
}

.bundle-deals-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #000000;
}

.bundle-deals-section > .container > p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: #000000;
}

.bundle-deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 1400px) {
  .bundle-deals-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
  }
}

.bundle-deal-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0;
  padding: 2rem;
  position: relative;
  color: #000000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
  height: auto;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

.bundle-deal-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-color);
}

.bundle-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #000000;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bundle-deal-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #000000;
  font-weight: 600;
}

.bundle-price {
  margin-bottom: 1.5rem;
  text-align: center;
  padding: 1rem;
  background: var(--light-gray);
  border-radius: 0;
}

.original-price {
  color: #999;
  text-decoration: line-through;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.bundle-price-amount {
  font-size: 2rem;
  font-weight: bold;
  color: #000000;
  display: block;
  margin-bottom: 0.5rem;
}

.savings {
  background: #000000;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: bold;
}

.bundle-includes {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.bundle-includes li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 1.5rem;
}

.bundle-includes li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: bold;
}

.bundle-includes li:last-child {
  border-bottom: none;
}

.bundle-benefits {
  margin: 1.5rem 0;
  padding: 1rem;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 0;
  border-left: 4px solid var(--primary-color);
}

.bundle-benefits p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
  color: #000000;
  font-weight: 500;
}

.bundle-btn {
  width: 100%;
  padding: 1rem;
  background: #000000;
  color: white;
  text-decoration: none;
  border-radius: 0;
  font-weight: bold;
  text-align: center;
  display: block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
}

.bundle-btn:hover {
  background: var(--dark-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.bundle-deals-note {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 0;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.bundle-deals-note p {
  margin: 0;
  font-size: 0.9rem;
  color: #000000;
  line-height: 1.5;
}

/* Bundle Deals Mobile Swiper */
.bundle-deals-mobile-grid {
  display: none;
}

.bundle-deals-swiper {
  overflow: hidden;
  position: relative;
}

.bundle-deals-swiper-wrapper {
  display: flex;
  transition: transform 0.3s ease;
  width: 600%; /* 6 slides * 100% */
}

.bundle-deals-swiper-slide {
  flex: 0 0 100%;
  padding: 0 10px;
}

.bundle-deals-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  position: relative;
  z-index: 10;
}

.bundle-deals-pagination .pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background 0.3s ease;
}

.bundle-deals-pagination .pagination-dot.active {
  background: var(--primary-color);
}

/* Bundle Deals Responsive Design */
@media (max-width: 1200px) {
  .bundle-deals-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .bundle-deal-item {
    padding: 1.8rem;
  }
  
  .bundle-deal-item h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 992px) {
  .bundle-deals-section {
    padding: 60px 0;
  }
  
  .bundle-deals-section h2 {
    font-size: 2.2rem;
  }
  
  .bundle-deals-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
  }
  
  .bundle-deal-item {
    padding: 1.5rem;
  }
  
  .bundle-deal-item h3 {
    font-size: 1.3rem;
  }
  
  .bundle-price {
    padding: 0.8rem;
  }
  
  .bundle-price-amount {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .bundle-deals-section {
    padding: 50px 0;
  }
  
  .bundle-deals-section h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }
  
  .bundle-deals-section > .container > p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .bundle-deals-grid {
    display: none;
  }
  
  .bundle-deals-mobile-grid {
    display: block;
    overflow-x: hidden;
  }

  .bundle-deals-swiper {
    overflow: hidden;
    position: relative;
    padding: 10px 0;
    width: 100%;
  }

  .bundle-deals-swiper-wrapper {
    display: flex;
    transition: transform 0.3s ease;
    width: 600%; /* 6 slides * 100% */
  }

  .bundle-deals-swiper-slide {
    flex: 0 0 16.66667%; /* Each slide is 1/6 of the total wrapper width */
    width: 16.66667%;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
  }
  
  .bundle-deals-swiper-slide .bundle-deal-item {
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 0;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 420px;
  }

  .bundle-deals-swiper-slide .bundle-deal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  }
  
  .bundle-deals-swiper-slide .bundle-deal-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #000000;
    font-weight: 600;
  }
  
  .bundle-deals-swiper-slide .bundle-price {
    background: #f8f9fa;
    border: 1px solid #000000;
    border-radius: 0;
    padding: 0.8rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .bundle-deals-swiper-slide .bundle-price-amount {
    font-size: 1.6rem;
    color: #000000;
    font-weight: 700;
  }

  .bundle-deals-swiper-slide .original-price {
    color: #666;
    text-decoration: line-through;
    font-size: 0.9rem;
  }

  .bundle-deals-swiper-slide .savings {
    background: #000000;
    color: #ffffff;
    padding: 0.2rem 0.6rem;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 600;
  }
  
  .bundle-deals-swiper-slide .bundle-includes {
    margin: 1rem 0;
    flex-grow: 1;
  }
  
  .bundle-deals-swiper-slide .bundle-includes li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: #333;
    border-bottom: 1px solid #eee;
  }

  .bundle-deals-swiper-slide .bundle-includes li:last-child {
    border-bottom: none;
  }
  
  .bundle-deals-swiper-slide .bundle-benefits {
    background: #f8f9fa;
    border: 1px solid #000000;
    border-radius: 0;
    margin: 1rem 0;
    padding: 0.8rem;
  }
  
  .bundle-deals-swiper-slide .bundle-benefits p {
    font-size: 0.85rem;
    color: #333;
    margin: 0.2rem 0;
  }
  
  .bundle-deals-swiper-slide .bundle-btn {
    background: #000000;
    color: #ffffff;
    border: 2px solid #000000;
    border-radius: 0;
    padding: 0.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: auto;
  }

  .bundle-deals-swiper-slide .bundle-btn:hover {
    background: #ffffff;
    color: #000000;
  }
  
  .bundle-badge {
    position: absolute;
    top: -8px;
    right: 15px;
    background: #000000;
    color: #ffffff;
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 0;
    z-index: 10;
  }
  
  .bundle-deals-note {
    background: #f8f9fa;
    border: 1px solid #000000;
    border-radius: 0;
    padding: 1rem;
    margin-top: 2rem;
  }
  
  .bundle-deals-note p {
    font-size: 0.85rem;
    color: #333;
    margin: 0;
  }
}

@media (max-width: 600px) {
  .bundle-deals-section {
    padding: 40px 0;
  }
  
  .bundle-deals-section h2 {
    font-size: 1.8rem;
  }
  
  .bundle-deals-swiper-slide {
    padding: 0 8px;
  }
  
  .bundle-deals-swiper-slide .bundle-deal-item {
    max-width: 300px;
    padding: 1.2rem;
    min-height: 380px;
  }
  
  .bundle-deals-swiper-slide .bundle-deal-item h3 {
    font-size: 1.1rem;
  }
  
  .bundle-deals-swiper-slide .bundle-price-amount {
    font-size: 1.4rem;
  }

  .bundle-deals-swiper-slide .original-price {
    font-size: 0.8rem;
  }

  .bundle-deals-swiper-slide .savings {
    font-size: 0.75rem;
    padding: 0.15rem 0.5rem;
  }
  
  .bundle-deals-swiper-slide .bundle-includes li {
    font-size: 0.85rem;
    padding: 0.3rem 0;
  }
  
  .bundle-deals-swiper-slide .bundle-benefits p {
    font-size: 0.8rem;
  }
  
  .bundle-deals-swiper-slide .bundle-btn {
    padding: 0.7rem;
    font-size: 0.8rem;
  }
  
  .bundle-badge {
    top: -6px;
    right: 10px;
    padding: 0.3rem 0.6rem;
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .bundle-deals-section {
    padding: 30px 0;
  }
  
  .bundle-deals-section h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }
  
  .bundle-deals-section > .container > p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  .bundle-deals-swiper-slide {
    padding: 0 5px;
  }
  
  .bundle-deals-swiper-slide .bundle-deal-item {
    max-width: 280px;
    padding: 1rem;
    min-height: 360px;
  }
  
  .bundle-deals-swiper-slide .bundle-deal-item h3 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }
  
  .bundle-deals-swiper-slide .bundle-price {
    padding: 0.6rem;
    margin-bottom: 0.8rem;
  }
  
  .bundle-deals-swiper-slide .bundle-price-amount {
    font-size: 1.3rem;
  }
  
  .bundle-deals-swiper-slide .original-price {
    font-size: 0.75rem;
  }
  
  .bundle-deals-swiper-slide .savings {
    font-size: 0.7rem;
    padding: 0.1rem 0.4rem;
  }
  
  .bundle-deals-swiper-slide .bundle-includes {
    margin: 0.8rem 0;
  }
  
  .bundle-deals-swiper-slide .bundle-includes li {
    font-size: 0.8rem;
    padding: 0.25rem 0;
  }
  
  .bundle-deals-swiper-slide .bundle-benefits {
    margin: 0.8rem 0;
    padding: 0.6rem;
  }
  
  .bundle-deals-swiper-slide .bundle-benefits p {
    font-size: 0.75rem;
    margin: 0.2rem 0;
  }
  
  .bundle-deals-swiper-slide .bundle-btn {
    padding: 0.6rem;
    font-size: 0.75rem;
  }
  
  .bundle-badge {
    top: -5px;
    right: 8px;
    padding: 0.25rem 0.5rem;
    font-size: 0.6rem;
  }
  
  .bundle-deals-pagination {
    margin-top: 15px;
    gap: 6px;
  }
  
  .bundle-deals-pagination .pagination-dot {
    width: 10px;
    height: 10px;
  }
  
  .bundle-deals-note {
    padding: 0.8rem;
    margin-top: 1.5rem;
  }
  
  .bundle-deals-note p {
    font-size: 0.8rem;
    line-height: 1.4;
  }
}

/* Happy Hours Deals Section */
.happy-hours-section {
  background: #ffffff;
  color: #333;
  padding: 80px 0;
  position: relative;
}

.happy-hours-section .container {
  position: relative;
  z-index: 2;
}

.happy-hours-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #000000;
}

.happy-hours-section > .container > p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: #666;
}

.happy-hour-time-block {
  margin-bottom: 3rem;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 0;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.happy-hour-time-block:last-of-type {
  margin-bottom: 2rem;
}

.time-slot-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.time-slot-header h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #000000;
}

.time-range {
  font-size: 1.1rem;
  color: #333;
  font-weight: bold;
  margin: 0;
  background: rgba(0, 0, 0, 0.05);
  padding: 0.5rem 1rem;
  border-radius: 0;
  display: inline-block;
}

.happy-hours-deals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.happy-hour-deal {
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark-color);
  border-radius: 0;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.happy-hour-deal:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-color);
}

.deal-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.happy-hour-deal h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #000000;
  font-weight: 600;
}

.discount-amount {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent-color);
  margin-bottom: 1rem;
  background: rgba(239, 68, 68, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 0;
  display: inline-block;
}

.happy-hour-deal > p:last-of-type {
  color: #666;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.happy-hour-btn {
  background: #000000;
  color: white;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 0;
  font-weight: bold;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.happy-hour-btn:hover {
  background: var(--dark-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.happy-hours-note {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 0;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
}

.happy-hours-note p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* Happy Hours Mobile Swiper */
.happy-hours-mobile-grid {
  display: none;
}

/* Morning Happy Hours Swiper */
.morning-happy-hours-swiper {
  overflow: hidden;
  position: relative;
  padding: 0 20px;
  touch-action: pan-y;
  height: auto;
  min-height: 320px;
}

.morning-happy-hours-swiper-wrapper {
  display: flex;
  transition: transform 0.3s ease;
  will-change: transform;
}

.morning-happy-hours-swiper-slide {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 0 10px;
  box-sizing: border-box;
}

.morning-happy-hours-swiper-slide .happy-hour-deal {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.morning-happy-hours-swiper-slide .happy-hour-deal:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Evening Happy Hours Swiper */
.evening-happy-hours-swiper {
  overflow: hidden;
  position: relative;
  padding: 0 20px;
  touch-action: pan-y;
  height: auto;
  min-height: 320px;
}

.evening-happy-hours-swiper-wrapper {
  display: flex;
  transition: transform 0.3s ease;
  will-change: transform;
}

.evening-happy-hours-swiper-slide {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 0 10px;
  box-sizing: border-box;
}

.evening-happy-hours-swiper-slide .happy-hour-deal {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.evening-happy-hours-swiper-slide .happy-hour-deal:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Morning Happy Hours Pagination */
.morning-happy-hours-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 0 20px;
}

.morning-happy-hours-pagination .pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background 0.3s ease;
}

.morning-happy-hours-pagination .pagination-dot.active {
  background: var(--primary-color);
}

/* Evening Happy Hours Pagination */
.evening-happy-hours-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 0 20px;
}

.evening-happy-hours-pagination .pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background 0.3s ease;
}

.evening-happy-hours-pagination .pagination-dot.active {
  background: var(--primary-color);
}

/* Happy Hours Responsive */
@media (max-width: 768px) {
  .happy-hours-section {
    padding: 60px 0;
  }
  
  .happy-hours-section h2 {
    font-size: 2rem;
  }
  
  .happy-hours-desktop-grid {
    display: none;
  }
  
  .happy-hours-mobile-grid {
    display: block;
    overflow-x: hidden;
  }
  
  .happy-hours-mobile-grid .happy-hour-time-block {
    margin-bottom: 2rem;
  }
  
  .happy-hours-mobile-grid .happy-hour-time-block:last-child {
    margin-bottom: 0;
  }
  
  .morning-happy-hours-swiper,
  .evening-happy-hours-swiper {
    padding: 0 15px;
    min-height: 280px;
  }
  
  .morning-happy-hours-swiper-slide,
  .evening-happy-hours-swiper-slide {
    padding: 0 5px;
  }
  
  .morning-happy-hours-swiper-slide .happy-hour-deal,
  .evening-happy-hours-swiper-slide .happy-hour-deal {
    padding: 1.5rem;
    max-width: 300px;
  }
  
  .morning-happy-hours-swiper-slide .deal-icon,
  .evening-happy-hours-swiper-slide .deal-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .morning-happy-hours-swiper-slide .happy-hour-deal h3,
  .evening-happy-hours-swiper-slide .happy-hour-deal h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #000000;
    font-weight: bold;
  }
  
  .morning-happy-hours-swiper-slide .discount-amount,
  .evening-happy-hours-swiper-slide .discount-amount {
    font-size: 1.2rem;
    padding: 0.4rem 0.8rem;
    background: #000000;
    color: white;
    border-radius: 0;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: bold;
  }
  
  .morning-happy-hours-swiper-slide .happy-hour-deal > p:not(.discount-amount),
  .evening-happy-hours-swiper-slide .happy-hour-deal > p:not(.discount-amount) {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    color: #666;
  }
  
  .morning-happy-hours-swiper-slide .happy-hour-btn,
  .evening-happy-hours-swiper-slide .happy-hour-btn {
    background: #000000;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    margin-top: auto;
    align-self: center;
    transition: all 0.3s ease;
    min-width: 140px;
  }
  
  .morning-happy-hours-swiper-slide .happy-hour-btn:hover,
  .evening-happy-hours-swiper-slide .happy-hour-btn:hover {
    background: #333333;
    transform: translateY(-2px);
  }
  
  .happy-hours-note {
    padding: 1rem;
    margin-top: 2rem;
  }
}

@media (max-width: 600px) {
  .happy-hours-section {
    padding: 40px 0;
  }
  
  .happy-hours-section h2 {
    font-size: 1.8rem;
  }
  
  .morning-happy-hours-swiper,
  .evening-happy-hours-swiper {
    padding: 0 10px;
    min-height: 260px;
  }
  
  .morning-happy-hours-swiper-slide,
  .evening-happy-hours-swiper-slide {
    padding: 0 5px;
  }
  
  .morning-happy-hours-swiper-slide .happy-hour-deal,
  .evening-happy-hours-swiper-slide .happy-hour-deal {
    padding: 1.2rem;
    max-width: 280px;
  }
  
  .morning-happy-hours-swiper-slide .deal-icon,
  .evening-happy-hours-swiper-slide .deal-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }
  
  .morning-happy-hours-swiper-slide .happy-hour-deal h3,
  .evening-happy-hours-swiper-slide .happy-hour-deal h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }
  
  .morning-happy-hours-swiper-slide .discount-amount,
  .evening-happy-hours-swiper-slide .discount-amount {
    font-size: 1.1rem;
    padding: 0.3rem 0.6rem;
    margin-bottom: 0.8rem;
  }
  
  .morning-happy-hours-swiper-slide .happy-hour-deal > p:not(.discount-amount),
  .evening-happy-hours-swiper-slide .happy-hour-deal > p:not(.discount-amount) {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
  }
  
  .morning-happy-hours-swiper-slide .happy-hour-btn,
  .evening-happy-hours-swiper-slide .happy-hour-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
    min-width: 120px;
  }
  
  .morning-happy-hours-pagination,
  .evening-happy-hours-pagination {
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .happy-hours-section {
    padding: 30px 0;
  }
  
  .happy-hours-section h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }
  
  .happy-hours-section > .container > p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  .morning-happy-hours-swiper,
  .evening-happy-hours-swiper {
    padding: 0 5px;
    min-height: 240px;
  }
  
  .morning-happy-hours-swiper-slide,
  .evening-happy-hours-swiper-slide {
    padding: 0 3px;
  }
  
  .morning-happy-hours-swiper-slide .happy-hour-deal,
  .evening-happy-hours-swiper-slide .happy-hour-deal {
    padding: 1rem;
    max-width: 260px;
  }
  
  .morning-happy-hours-swiper-slide .deal-icon,
  .evening-happy-hours-swiper-slide .deal-icon {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
  }
  
  .morning-happy-hours-swiper-slide .happy-hour-deal h3,
  .evening-happy-hours-swiper-slide .happy-hour-deal h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .morning-happy-hours-swiper-slide .discount-amount,
  .evening-happy-hours-swiper-slide .discount-amount {
    font-size: 1rem;
    padding: 0.25rem 0.5rem;
    margin-bottom: 0.6rem;
  }
  
  .morning-happy-hours-swiper-slide .happy-hour-deal > p:not(.discount-amount),
  .evening-happy-hours-swiper-slide .happy-hour-deal > p:not(.discount-amount) {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  
  .morning-happy-hours-swiper-slide .happy-hour-btn,
  .evening-happy-hours-swiper-slide .happy-hour-btn {
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
    min-width: 100px;
  }
  
  .morning-happy-hours-pagination,
  .evening-happy-hours-pagination {
    padding: 0 5px;
  }
  
  .happy-hours-pagination .pagination-dot {
    width: 10px;
    height: 10px;
  }
  
  .happy-hours-note {
    padding: 0.8rem;
    margin-top: 1.5rem;
  }
  
  .happy-hours-note p {
    font-size: 0.8rem;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .happy-hour-time-block {
    padding: 1rem;
  }
  
  .time-slot-header {
    margin-bottom: 1.5rem;
  }
  
  .deal-icon {
    font-size: 2rem;
    height: 40px;
  }
  
  .happy-hour-deal h3 {
    font-size: 1.2rem;
  }
}

/* DCC Compliant Legal Section */
.dcc-compliant-legal-section {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 3rem 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #475569;
}

.dcc-compliant-legal-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.dcc-compliant-legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.dcc-legal-column {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.dcc-legal-column:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dcc-legal-column p {
  margin: 0;
  text-align: justify;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #4a5568;
}

.dcc-legal-column:first-child {
  border-left: 4px solid var(--primary-color);
}

.dcc-legal-column:nth-child(2) {
  border-left: 4px solid #ef4444;
}

.dcc-legal-column:nth-child(3) {
  border-left: 4px solid #f59e0b;
}

.dcc-legal-column:nth-child(4) {
  border-left: 4px solid #10b981;
}

/* DCC Compliant Responsive Design */
@media (max-width: 1024px) {
  .dcc-compliant-legal-section {
    padding: 2.5rem 0;
  }
  
  .dcc-compliant-legal-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .dcc-legal-column {
    padding: 1.25rem;
  }
}

@media (max-width: 768px) {
  .dcc-compliant-legal-section {
    padding: 2rem 0;
  }
  
  .dcc-compliant-legal-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .dcc-legal-column {
    padding: 1rem;
  }
  
  .dcc-legal-column p {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .dcc-compliant-legal-section {
    padding: 1.5rem 0;
  }
  
  .dcc-legal-column {
    padding: 0.875rem;
    border-radius: 6px;
  }
  
  .dcc-legal-column p {
    font-size: 0.775rem;
    text-align: left;
  }
}

/* Mobile App Section */
.mobile-app {
  background: #ffffff;
  color: #333;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.mobile-app .container {
  position: relative;
  z-index: 2;
}

.mobile-app-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Ensure equal left and right margins for screens wider than 768px */
@media (min-width: 769px) {
  .mobile-app-content {
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.mobile-app-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #000000;
  font-weight: 700;
}

.mobile-app-text > p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #000000;
}

.app-features {
  margin-bottom: 2.5rem;
}

.app-features h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #000000;
  font-weight: 600;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  padding: 0.5rem 0;
}

.feature-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  width: 2rem;
  text-align: center;
}

.features-list li span:last-child {
  font-size: 1rem;
  line-height: 1.4;
  color: #000000;
}

.app-download h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #000000;
  font-weight: 600;
}

.app-download p {
  margin-bottom: 1.5rem;
  color: #000000;
}

.app-store-btn {
  display: inline-block;
  padding: 1rem;
}

.app-store-btn img {
  height: 140px;
  width: auto;
  border-radius: 12px;
}

.mobile-app-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-screen-image {
  max-width: 100%;
  width: 350px;
  height: auto;
  border-radius: 20px;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-screen-image:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 35px 70px rgba(0, 0, 0, 0.4),
    0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Mobile App Responsive */
@media (max-width: 1024px) {
  .mobile-app {
    padding: 60px 0;
  }
  
  .mobile-app-content {
    gap: 3rem;
  }
  
  .mobile-app-text h2 {
    font-size: 2.2rem;
  }
  
  .app-screen-image {
    width: 300px;
  }
}

@media (max-width: 768px) {
  .mobile-app {
    padding: 50px 0;
  }
  
  .mobile-app-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .mobile-app-text {
    padding: 0 20px;
  }
  
  .mobile-app-text h2 {
    font-size: 2rem;
  }
  
  .app-screen-image {
    width: 280px;
  }
  
  .mobile-app-text > p {
    font-size: 1rem;
  }
  
  .features-list li {
    justify-content: flex-start;
    text-align: left;
    align-items: flex-start;
  }
  
  .feature-icon {
    font-size: 1.3rem;
    margin-right: 0.75rem;
    width: 1.8rem;
    text-align: center;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .mobile-app {
    padding: 40px 0;
  }
  
  .mobile-app-text {
    padding: 0 16px;
  }
  
  .mobile-app-text h2 {
    font-size: 1.8rem;
  }
  
  .app-screen-image {
    width: 250px;
  }
  
  .features-list li {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    align-items: flex-start;
  }
  
  .feature-icon {
    font-size: 1.2rem;
    margin-right: 0.75rem;
    width: 1.5rem;
    height: 1.5rem;
    text-align: center;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .features-list li span:last-child {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

/* ===== CHECKOUT PROMOTIONS SECTION ===== */
.checkout-promotions {
  color: black;
  padding: 80px 0;
  text-align: center;
}

.checkout-promotions-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: black;
}

.checkout-promotions-content > p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.promotions-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.promo-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
}

.promo-icon {
  font-size: 1.5rem;
}

.promotions-cta {
  margin-top: 2rem;
}

.promotions-btn {
  background: #ff0000;
  color: white;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 1rem;
}

.promotions-btn:hover {
  background: #333333;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.promotions-note {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .checkout-promotions {
    padding: 60px 0;
  }
  
  .checkout-promotions-content {
    padding: 0 20px;
  }
  
  .checkout-promotions-content h2 {
    font-size: 2rem;
  }
  
  .checkout-promotions-content > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .promotions-features {
    gap: 1.5rem;
  }
  
  .promo-feature {
    font-size: 0.9rem;
  }
  
  .promotions-btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .checkout-promotions {
    padding: 50px 0;
  }
  
  .checkout-promotions-content {
    padding: 0 16px;
  }
  
  .checkout-promotions-content h2 {
    font-size: 1.8rem;
  }
  
  .promotions-features {
    flex-direction: column;
    gap: 1rem;
  }
  
  .promo-feature {
    justify-content: center;
  }
}

/* ====================
   ABOUT US PAGE STYLES
   ==================== */

/* About Hero Section */
.about-hero {
  position: relative;
  background-color: #000;
  height: 80vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
  width: 100vw;
  margin: 0;
  padding: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  border: none;
  outline: none;
  box-sizing: border-box;
  transform: translateZ(0);
}

.about-hero-video {
  position: absolute;
  top: -100px;
  left: -100px;
  width: calc(100% + 200px);
  height: calc(100% + 200px);
  object-fit: cover;
  object-position: center;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  transform: scale(1.2);
  min-width: 120vw;
  min-height: 120vh;
}

.about-hero-overlay {
  position: absolute;
  top: -100px;
  left: -100px;
  width: calc(100% + 200px);
  height: calc(100% + 200px);
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  min-width: 120vw;
  min-height: 120vh;
}

.about-hero-content {
  margin-top: 4rem;
  position: relative;
  z-index: 3;
}

.about-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about-hero-content p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.6;
}

/* RESPONSIVE DESIGN FOR ABOUT HERO */
@media (max-width: 768px) {
  .about-hero {
    padding: 6rem 20px 2rem;
  }
  
  .about-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .about-hero-content p {
    font-size: 1.1rem;
    padding: 0 20px;
  }
}

@media (max-width: 600px) {
  .about-hero {
    padding: 5.5rem 18px 1.8rem;
  }
  
  .about-hero-content h1 {
    font-size: 2.3rem;
    line-height: 1.3;
    font-weight: bold;
  }
  
  .about-hero-content p {
    font-size: 1.05rem;
    line-height: 1.4;
    padding: 0 18px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 5rem 16px 1.5rem;
  }
  
  .about-hero-content h1 {
    font-size: 2rem;
  }
  
  .about-hero-content p {
    font-size: 1rem;
    padding: 0 16px;
  }
}

/* ====================
   FAQ PAGE STYLES
   ==================== */

/* FAQ Hero Section */
.faq-hero {
  position: relative;
  background-image: url('../img/hero-faq.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.faq-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: calc(100% + 200px);
  height: calc(100% + 200px);
  background-image: url('../img/hero-faq.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  transform: scale(1.2);
}

.faq-hero-content {
  margin-top: 4rem;
  position: relative;
  z-index: 2;
}

.faq-hero .container {
  position: relative;
  z-index: 2;
}

.faq-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.faq-hero-content p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.6;
}

/* FAQ Content Section */
.faq-content {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e9ecef;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f8f9fa;
}

.faq-question h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: #2c3e50;
  flex: 1;
  padding-right: 1rem;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: #6c757d;
  transition: transform 0.3s ease, color 0.3s ease;
  user-select: none;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #28a745;
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 1.5rem 2rem;
}

.faq-answer p {
  margin: 0;
  line-height: 1.6;
  color: #495057;
}

.faq-answer a {
  color: #28a745;
  text-decoration: none;
  font-weight: 500;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
  .faq-hero {
    padding: 6rem 0 3rem;
  }
  
  .faq-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .faq-hero-content p {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
  
  .faq-content {
    padding: 3rem 0;
  }
  
  .faq-question {
    padding: 1.25rem 1.5rem;
  }
  
  .faq-question h3 {
    font-size: 1.1rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 1.25rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .faq-hero {
    padding: 5.5rem 0 2.5rem;
  }
  
  .faq-hero-content h1 {
    font-size: 2.3rem;
    line-height: 1.3;
    font-weight: bold;
  }
  
  .faq-hero-content p {
    font-size: 1.05rem;
    line-height: 1.4;
    padding: 0 1rem;
  }
  
  .faq-question h3 {
    font-size: 1.05rem;
    line-height: 1.3;
  }
  
  .faq-answer p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .faq-hero-content h1 {
    font-size: 2rem;
  }
  
  .faq-question {
    padding: 1rem 1.25rem;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 1rem 1.25rem;
  }
}

/* =================================================
   MOBILE DEVICE CONSISTENCY FOR ALL PAGES
   ================================================= */

/* Modern mobile devices (390px-430px) - iPhone 12/13/14/15, Pixel, etc. */
@media (min-width: 376px) and (max-width: 430px) {
  /* About Us Page Hero */
  .about-hero-content h1 {
    font-size: 2.2rem !important;
    line-height: 1.3 !important;
    font-weight: bold !important;
  }
  
  .about-hero-content p {
    font-size: 1.05rem !important;
    line-height: 1.4 !important;
    padding: 0 18px !important;
  }
  
  /* FAQ Page Hero */
  .faq-hero-content h1 {
    font-size: 2.2rem !important;
    line-height: 1.3 !important;
    font-weight: bold !important;
  }
  
  .faq-hero-content p {
    font-size: 1.05rem !important;
    line-height: 1.4 !important;
    padding: 0 1.1rem !important;
  }
  
  /* FAQ Content */
  .faq-question h3 {
    font-size: 1.05rem !important;
    line-height: 1.3 !important;
  }
  
  .faq-answer p {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
  }
}

/* Galaxy and smaller modern devices (360px-375px) */
@media (min-width: 321px) and (max-width: 375px) {
  /* About Us Page Hero */
  .about-hero-content h1 {
    font-size: 2rem !important;
    line-height: 1.3 !important;
    font-weight: bold !important;
  }
  
  .about-hero-content p {
    font-size: 1rem !important;
    line-height: 1.4 !important;
    padding: 0 16px !important;
  }
  
  /* FAQ Page Hero */
  .faq-hero-content h1 {
    font-size: 2rem !important;
    line-height: 1.3 !important;
    font-weight: bold !important;
  }
  
  .faq-hero-content p {
    font-size: 1rem !important;
    line-height: 1.4 !important;
    padding: 0 1rem !important;
  }
  
  /* FAQ Content */
  .faq-question h3 {
    font-size: 1rem !important;
    line-height: 1.3 !important;
  }
  
  .faq-answer p {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
  }
  
  .faq-question {
    padding: 0.9rem 1.1rem !important;
  }
  
  .faq-item.active .faq-answer {
    padding: 0.9rem 1.1rem !important;
  }
}

/* Extra small screens (320px and down) */
@media (max-width: 320px) {
  /* About Us Page Hero */
  .about-hero-content h1 {
    font-size: 1.8rem !important;
    line-height: 1.3 !important;
    font-weight: bold !important;
  }
  
  .about-hero-content p {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    padding: 0 14px !important;
  }
  
  /* FAQ Page Hero */
  .faq-hero-content h1 {
    font-size: 1.8rem !important;
    line-height: 1.3 !important;
    font-weight: bold !important;
  }
  
  .faq-hero-content p {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    padding: 0 0.8rem !important;
  }
  
  /* FAQ Content */
  .faq-question h3 {
    font-size: 0.95rem !important;
    line-height: 1.3 !important;
  }
  
  .faq-answer p {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
  }
  
  .faq-question {
    padding: 0.8rem 1rem !important;
  }
  
  .faq-item.active .faq-answer {
    padding: 0.8rem 1rem !important;
  }
}

/* =================================================
   PROMOTIONS & LOCATIONS PAGE MOBILE CONSISTENCY
   ================================================= */

/* Modern mobile devices (390px-430px) - iPhone 12/13/14/15, Pixel, etc. */
@media (min-width: 376px) and (max-width: 430px) {
  /* Promotions Page Content */
  .promotions-section h2 {
    font-size: 2.1rem !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
  }
  
  .promotions-section p {
    font-size: 1.1rem !important;
    line-height: 1.4 !important;
    padding: 0 1rem !important;
    margin-bottom: 2.5rem !important;
  }
  
  .promotion-item h3 {
    font-size: 1.3rem !important;
    line-height: 1.3 !important;
  }
  
  .promotion-item p:not(.promotion-discount) {
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
  }
  
  .hero-discount-text {
    font-size: 1.2rem !important;
    margin-bottom: 1.3rem !important;
  }
  
  /* Locations Page Content */
  .locations-section h2 {
    font-size: 2.1rem !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
  }
  
  .locations-section p {
    font-size: 1.1rem !important;
    line-height: 1.4 !important;
    padding: 0 1rem !important;
    margin-bottom: 2.5rem !important;
  }
  
  .location-item h3 {
    font-size: 1.3rem !important;
    line-height: 1.3 !important;
  }
  
  .location-item p {
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
  }
}

/* Galaxy and smaller modern devices (360px-375px) */
@media (min-width: 321px) and (max-width: 375px) {
  /* Promotions Page Content */
  .promotions-section h2 {
    font-size: 1.9rem !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
  }
  
  .promotions-section p {
    font-size: 1.05rem !important;
    line-height: 1.4 !important;
    padding: 0 0.8rem !important;
    margin-bottom: 2.3rem !important;
  }
  
  .promotion-item h3 {
    font-size: 1.2rem !important;
    line-height: 1.3 !important;
  }
  
  .promotion-item p:not(.promotion-discount) {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
  }
  
  .hero-discount-text {
    font-size: 1.1rem !important;
    margin-bottom: 1.2rem !important;
  }
  
  /* Locations Page Content */
  .locations-section h2 {
    font-size: 1.9rem !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
  }
  
  .locations-section p {
    font-size: 1.05rem !important;
    line-height: 1.4 !important;
    padding: 0 0.8rem !important;
    margin-bottom: 2.3rem !important;
  }
  
  .location-item h3 {
    font-size: 1.2rem !important;
    line-height: 1.3 !important;
  }
  
  .location-item p {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
  }
}

/* Extra small screens (320px and down) */
@media (max-width: 320px) {
  /* Promotions Page Content */
  .promotions-section h2 {
    font-size: 1.7rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0.8rem !important;
  }
  
  .promotions-section p {
    font-size: 1rem !important;
    line-height: 1.4 !important;
    padding: 0 0.6rem !important;
    margin-bottom: 2rem !important;
  }
  
  .promotion-item h3 {
    font-size: 1.1rem !important;
    line-height: 1.3 !important;
  }
  
  .promotion-item p:not(.promotion-discount) {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
  }
  
  .hero-discount-text {
    font-size: 1rem !important;
    margin-bottom: 1rem !important;
  }
  
  /* Locations Page Content */
  .locations-section h2 {
    font-size: 1.7rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0.8rem !important;
  }
  
  .locations-section p {
    font-size: 1rem !important;
    line-height: 1.4 !important;
    padding: 0 0.6rem !important;
    margin-bottom: 2rem !important;
  }
  
  .location-item h3 {
    font-size: 1.1rem !important;
    line-height: 1.3 !important;
  }
  
  .location-item p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
  }
}

/* ========================================
   AGE VERIFICATION MODAL
======================================== */
.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  backdrop-filter: blur(5px);
}

.age-modal.hidden {
  display: none;
}

.age-modal-content {
  background: #fff;
  border-radius: 0;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: modalFadeIn 0.3s ease-out;
}



@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.age-modal-header {
  margin-bottom: 1.5rem;
  text-align: center;
}

.age-modal-logo {
  height: 7rem;
  margin-bottom: 1rem;
}

.age-modal-header h2 {
  color: #333;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.age-modal-body p {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.age-modal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.age-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 140px;
}

.age-btn-yes {
  background-color: #00ACC9;
  color: white;
}

.age-btn-yes:hover {
  background-color: #0097A7;
  transform: translateY(-2px);
}

.age-btn-no {
  background-color: #e0e0e0;
  color: #666;
}

.age-btn-no:hover {
  background-color: #d0d0d0;
  transform: translateY(-2px);
}

.age-rejection-message {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #ffebee;
  border-left: 4px solid #f44336;
  border-radius: 0;
}

.age-rejection-message p {
  color: #d32f2f;
  font-weight: 500;
  margin: 0;
}

/* Prevent scrolling when modal is active */
body.modal-active {
  overflow: hidden;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .age-modal-content {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  .age-modal-header {
    text-align: center;
  }
  
  .age-modal-logo {
    display: block;
    margin: 0 auto 1rem auto;
    height: 6rem;
  }
  
  .age-modal-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .age-btn {
    width: 100%;
  }
}

/* Modern mobile devices (390px-430px) - Consistent age modal styling */
@media (min-width: 376px) and (max-width: 430px) {
  .age-modal-content {
    padding: 1.5rem !important;
    margin: 1rem !important;
    max-width: 85% !important;
  }
  
  .age-modal-logo {
    height: 6rem !important;
    margin: 0 auto 1rem auto !important;
  }
  
  .age-modal-header h2 {
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
  }
  
  .age-modal-body p {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    margin-bottom: 1.5rem !important;
  }
  
  .age-btn {
    width: 100% !important;
    padding: 0.75rem 1rem !important;
    font-size: 1rem !important;
    margin: 0.375rem 0 !important;
  }
}

/* Galaxy and smaller devices (360px-375px) - Age modal consistency */
@media (min-width: 321px) and (max-width: 375px) {
  .age-modal-content {
    padding: 1.3rem !important;
    margin: 0.8rem !important;
    max-width: 90% !important;
  }
  
  .age-modal-logo {
    height: 5.5rem !important;
    margin: 0 auto 0.8rem auto !important;
  }
  
  .age-modal-header h2 {
    font-size: 1.3rem !important;
    margin-bottom: 0.8rem !important;
  }
  
  .age-modal-body p {
    font-size: 0.85rem !important;
    line-height: 1.3 !important;
    margin-bottom: 1.3rem !important;
  }
  
  .age-btn {
    width: 100% !important;
    padding: 0.7rem 0.8rem !important;
    font-size: 0.9rem !important;
    margin: 0.3rem 0 !important;
  }
}

/* ==================== 
   PROMOTIONS MOBILE SWIPER 
   ==================== */

/* Hide mobile grid by default */
.promotions-mobile-grid {
  display: none;
}

/* Mobile swiper container */
.promotions-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  touch-action: pan-y;
  height: auto;
  min-height: 450px;
}

/* Swiper wrapper */
.promotions-swiper-wrapper {
  display: flex;
  transition: transform 0.3s ease;
  will-change: transform;
  width: 500%; /* 5 slides total */
}

/* Individual slides */
.promotions-swiper-slide {
  flex: 0 0 20%; /* 100% / 5 slides */
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 0 1rem;
  box-sizing: border-box;
}

/* Promotion items in mobile */
.promotions-swiper-slide .promotion-item {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  background: white;
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 550px;
  position: relative;
}

/* Promotion badge in mobile - hide badges */
.promotions-swiper-slide .promotion-badge {
  display: none;
}

/* Typography in mobile */
.promotions-swiper-slide .promotion-item h3 {
  font-size: 1.3rem !important;
  font-weight: bold !important;
  color: #000000 !important;
  margin: 0.5rem 0 !important;
  text-align: center !important;
  line-height: 1.2;
}

.promotions-swiper-slide .promotion-item .promotion-discount {
  font-size: 1.5rem;
  font-weight: bold;
  color: rgb(2, 59, 46);
  margin: 0.75rem 0;
}

.promotions-swiper-slide .promotion-item p {
  color: #000000 !important;
  font-size: 0.95rem !important;
  text-align: center !important;
  margin: 0.5rem 0 !important;
  line-height: 1.5;
  flex-grow: 1;
}

/* Promotion buttons in mobile */
.promotions-swiper-slide .promotion-btn {
  background-color: #000000 !important;
  color: white !important;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0 !important;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
  display: inline-block;
  text-align: center;
}

.promotions-swiper-slide .promotion-btn:hover {
  background-color: #333333 !important;
  transform: translateY(-2px);
}

/* Pagination */
.promotions-pagination {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  position: relative;
  z-index: 10;
}

.promotions-pagination .pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.promotions-pagination .pagination-dot.active {
  background-color: rgb(2, 59, 46);
  transform: scale(1.2);
}

/* Mobile responsive behavior */
@media (max-width: 768px) {
  /* Show mobile grid as 1-column, hide desktop grid */
  .promotions-mobile-grid {
    display: block !important;
    padding: 0 1rem;
  }
  
  .promotions-grid {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .promotions-mobile-grid {
    padding: 0 1rem;
  }
  
  /* Maintain horizontal layout on all mobile devices */
  .promotions-mobile-grid .promotion-item {
    flex-direction: row !important;
    min-height: 220px;
  }
  
  .promotions-mobile-grid .promotion-left {
    width: 50% !important;
    min-height: 220px;
  }
  
  .promotions-mobile-grid .promotion-right {
    width: 50% !important;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .promotions-mobile-grid {
    padding: 0 0.75rem;
  }
  
  /* Maintain horizontal layout on small mobile devices */
  .promotions-mobile-grid .promotion-item {
    flex-direction: row !important;
    margin-bottom: 1.25rem;
    min-height: 200px;
  }
  
  .promotions-mobile-grid .promotion-left {
    width: 50% !important;
    min-height: 200px;
  }
  
  .promotions-mobile-grid .promotion-right {
    width: 50% !important;
    padding: 0.75rem;
  }
  
  /* Better spacing for promotion buttons */
  .promotions-swiper-slide .promotion-btn {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.9rem !important;
    margin-top: 1rem !important;
  }
}

/* ===========================================
   FINAL DESKTOP GRID OVERRIDE - LIFESTYLE SECTION
   This ensures 3-column layout works on desktop
   =========================================== */
@media screen and (min-width: 1025px) {
  .life-styles .lifestyle-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-template-rows: auto auto !important;
    gap: 2rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
    width: 100% !important;
    align-items: stretch !important;
    justify-content: center !important;
  }
  
  .life-styles .lifestyle-mobile-grid {
    display: none !important;
    visibility: hidden !important;
  }
  
  .life-styles .lifestyle-grid .lifestyle-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    flex: none !important;
  }
}