/* ======================================================
   FAST FOOD HOMEPAGE STYLES - PREMIUM THEME INTEGRATION (Fixed)
   ====================================================== */

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background-color: var(--color-bg);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--color-text); /* Using variable instead of hardcode */
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive clamp */
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 500;
    margin-bottom: 2.5rem;
    max-width: 700px;
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.4s;
    animation-fill-mode: both;
}

.hero-features {
    display: flex;
    gap: 30px;
    animation: fadeInUp 1s ease-out 0.6s;
    animation-fill-mode: both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
}

.hero-feature i {
    font-size: 1.5rem;
    color: var(--color-accent);
}

/* --- Buttons (Scoped with specificity to avoid plugin conflicts) --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    border-radius: 50px;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FIXED: Added Focus State for A11y */
.btn:focus-visible {
    outline: 3px solid var(--color-text);
    outline-offset: 4px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: var(--color-bg);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-text);
}

.btn-secondary:hover {
    background: var(--color-text);
    color: var(--color-bg);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

/* --- Slider Controls --- */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
    pointer-events: none; /* Let clicks pass through empty space */
}

.slider-prev, .slider-next {
    pointer-events: auto;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--color-text);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover, .slider-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--color-accent);
    transform: scale(1.2);
}

/* --- Combos Section --- */
.combos-section {
    padding: 80px 0;
    background-color: var(--color-bg);
}

.combos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.combo-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.combo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.combo-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.combo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.combo-card:hover .combo-image img {
    transform: scale(1.1);
}

.combo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.combo-badge.bestseller {
    background: var(--color-accent);
    color: var(--color-bg);
}

.combo-badge.spicy {
    /* FIXED: Use variable for warning color */
    background: var(--color-warning, #FFC107);
    color: #000;
}

.combo-badge.new {
    /* FIXED: Use variable for success color */
    background: var(--color-success, #4CAF50);
    color: var(--color-bg);
}

.combo-info {
    padding: 20px;
}

.combo-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text);
}

.combo-description {
    margin-bottom: 20px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.combo-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.combo-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent);
}

.add-to-cart {
    background: var(--color-accent);
    color: var(--color-bg);
    border: none;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.add-to-cart:hover {
    background: var(--color-accent-dark);
}

/* FIXED: Added Focus State */
.add-to-cart:focus-visible {
    box-shadow: 0 0 0 3px var(--color-bg), 0 0 0 5px var(--color-accent);
}

/* --- Delivery Zones Section --- */
.delivery-zones-section {
    padding: 80px 0;
    background-color: var(--color-muted-surface);
}

.delivery-zones-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.map-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container img {
    width: 100%;
    height: auto;
    display: block;
}

.zone-markers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.zone-marker {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zone-marker.zone-a {
    top: 30%;
    left: 25%;
    background: var(--color-success, #4CAF50);
}

.zone-marker.zone-b {
    top: 50%;
    left: 50%;
    background: var(--color-warning, #FFC107);
}

.zone-marker.zone-c {
    top: 70%;
    left: 75%;
    background: var(--color-danger, #FF3B30);
}

.marker-tooltip {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-text);
    color: var(--color-bg);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.zone-marker:hover .marker-tooltip {
    opacity: 1;
    visibility: visible;
}

.zones-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.zone-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.zone-card:hover {
    transform: translateY(-5px);
}

.zone-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.zone-a-card .zone-icon {
    background: rgba(76, 175, 80, 0.1);
    color: var(--color-success, #4CAF50);
}

.zone-b-card .zone-icon {
    background: rgba(255, 193, 7, 0.1);
    color: var(--color-warning, #FFC107);
}

.zone-c-card .zone-icon {
    background: rgba(255, 59, 48, 0.1);
    color: var(--color-danger, #FF3B30);
}

.zone-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.zone-description {
    margin-bottom: 15px;
    color: var(--color-text-muted);
}

.zone-time {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
}

.zone-cta {
    grid-column: span 3;
    text-align: center;
    margin-top: 20px;
}

/* --- Offers Section - PREMIUM STYLE --- */
.ff-offers-section {
  padding: 80px 0;
  background: var(--color-bg);
}

.ff-offers-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* FIXED: Scoped Section Title to this specific section */
.ff-offers-section .section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

.ff-offers-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
  border-radius: 2px;
}

.ff-offers-section .divider {
  display: block;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
  margin: 0 auto 30px;
  border-radius: 2px;
}

/* Premium Slider Container */
.ff-offers-slider {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  overflow: hidden;
}

.ff-offers-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Premium Offer Card */
.ff-offer-card {
  flex: 0 0 calc(33.333% - 20px);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.ff-offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.ff-offer-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--color-wood, #f5e6c7); /* Fallback color */
}

.ff-offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ff-offer-card:hover .ff-offer-image img {
  transform: scale(1.05);
}

.ff-offer-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--color-accent);
  color: var(--color-bg);
  padding: 6px 14px;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 8px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.ff-offer-content {
  padding: 25px;
  text-align: center;
}

.ff-offer-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 15px;
  line-height: 1.4;
}

.ff-offer-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 20px;
  display: block;
}

.ff-offer-price del {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-right: 10px;
  text-decoration: line-through;
}

/* Premium Countdown Timer */
.ff-offer-timer {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text-muted);
  margin: 20px 0;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  gap: 8px;
  font-family: 'Courier New', monospace;
}

/* FIXED: Dangerous generic classes. 
   Using parent selector > child to reduce risk, 
   though renaming HTML is the real fix. */
.ff-offer-timer > span {
  background: var(--color-bg);
  padding: 8px 14px;
  border-radius: 8px;
  min-width: 40px;
  display: inline-block;
  min-width: 28px;
  text-align: center;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.ff-offer-timer .h { color: var(--color-text); }
.ff-offer-timer .m { color: var(--color-text-muted); }
.ff-offer-timer .s { color: var(--color-text-muted); }

/* Premium Offer Actions */
.ff-offer-actions {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-outline {
  padding: 12px 24px;
  border: 2px solid var(--color-border);
  background: transparent;
  color: var(--color-text);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-outline:hover {
  background: var(--color-bg);
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

/* Premium Slider Navigation */
.ff-offers-prev, .ff-offers-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow-md);
  z-index: 10;
  transition: all 0.3s ease;
}

.ff-offers-prev { left: 0; }
.ff-offers-next { right: 0; }

.ff-offers-prev:hover, .ff-offers-next:hover {
  background: var(--color-surface);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  transform: translateY(-50%) scale(1.1);
}

/* --- Timer Discount Section --- */
.timer-discount-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--color-bg);
}

.timer-discount-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.timer-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-bg);
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
}

.timer-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.timer-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2.5rem;
}

.countdown-block {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 20px;
    min-width: 100px;
    text-align: center;
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    color: var(--color-bg);
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-bg);
    opacity: 0.9;
}

/* FIXED: Scoped specific button override to this section */
.timer-discount-section .btn-primary {
    background: linear-gradient(135deg, var(--color-bg), var(--color-text));
    color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.timer-discount-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* --- App Section --- */
.app-section {
    padding: 80px 0;
    background-color: var(--color-bg);
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mockup-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.mockup-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.app-subtitle {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.app-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.app-benefits {
    margin-bottom: 2rem;
}

.app-benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.app-benefit i {
    color: var(--color-accent);
    font-size: 1.2rem;
}

/* FIXED: Removed parent width/height constraint that was breaking layout */
.app-buttons {
    display: flex;
    gap: 20px;
}

.app-store-btn,
.google-play-btn {
    display: block;
    /* Fixed dimensions for badges */
    width: 150px;
    height: 60px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.app-store-btn img,
.google-play-btn img {
    position: absolute;
    width: 100%;
    height: 100%;
    /* FIXED: Changed to contain so badge text isn't cropped */
    object-fit: contain;
    object-position: center;
}

.app-store-btn:hover, .google-play-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* --- Customer Reviews Section --- */
.reviews-section {
    padding: 5rem 0;
    background-color: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
    z-index: 0;
}

.reviews-section > .container {
    position: relative;
    z-index: 1;
}

/* FIXED: Scoped Section Header to this section to prevent conflicts */
.reviews-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.reviews-section .section-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.reviews-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
    border-radius: var(--radius-sm);
}

.reviews-section .divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    margin: 0 auto 2rem;
}

.reviews-slider-wrapper {
    position: relative;
    padding: 0 2rem;
}

.reviews-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    box-shadow: var(--shadow-md);
    padding: 2rem;
}

.reviews-container {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.review-card {
    min-width: 100%;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-accent-light);
    flex-shrink: 0;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.review-card:hover .review-avatar img {
    transform: scale(1.1);
}

.review-info {
    flex: 1;
}

.reviewer-name {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 0.5rem;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
}

.review-rating .icon-star {
    color: var(--color-text-muted);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.review-rating .icon-star.filled {
    color: var(--color-accent);
}

.review-content {
    position: relative;
}

.review-text {
    font-family: var(--font-serif);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin: 0 0 1rem;
    position: relative;
    z-index: 1;
}

.review-text::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: -10px;
    font-size: 4rem;
    color: var(--color-accent-light);
    opacity: 0.2;
    font-family: var(--font-serif);
}

.review-date {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* Reviews Controls */
.reviews-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.reviews-prev,
.reviews-next {
    background: var(--color-accent);
    color: var(--color-bg);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.reviews-prev:hover,
.reviews-next:hover {
    background: var(--color-accent-dark);
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.reviews-dots {
    display: flex;
    gap: 0.5rem;
}

.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-text-muted);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-dot.active {
    background: var(--color-accent);
    transform: scale(1.3);
    box-shadow: 0 0 0 2px var(--color-bg);
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .delivery-zones-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .app-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .ff-offers-track {
        padding: 0 40px;
    }
    
    .ff-offer-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .combos-grid {
        grid-template-columns: 1fr;
    }
    
    .zones-info {
        grid-template-columns: 1fr;
    }
    
    .zone-cta {
        grid-column: span 1;
    }
    
    .review-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .ff-offer-card {
        flex: 0 0 100%;
    }
    
    .ff-offers-slider {
        padding: 0 20px;
    }
    
    .ff-offer-image {
        height: 220px;
    }
    
    .ff-offer-title {
        font-size: 1.2rem;
    }
    
    .ff-offer-price {
        font-size: 1.5rem;
    }

    .countdown-timer {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .countdown-block {
        min-width: 60px;
        padding: 10px 5px;
    }
}

/* ======================================================
   END FAST FOOD HOMEPAGE STYLES
   ====================================================== */