/* ============================================
   LONDIS – Design System & Global Styles
   ============================================ */

/* --- Design Tokens --- */
:root {
  --green-primary: #6ea31e;
  --green-dark: #5a8c17;
  --green-light: #8bc53f;
  --green-bg: #6ea31e;

  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;

  --white: #ffffff;
  --black: #000000;

  --wood-light: #e6dfd6;
  --wood-dark: #d9d1c7;

  --yellow-badge: #facc15;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.4s ease;

  --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Roboto Slab', 'Roboto', serif;

  --max-width: 1280px;
  --header-height: 72px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  background-color: var(--white);
  color: var(--gray-900);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
}

strong {
  font-weight: 700;
}

/* Scroll offset for sticky header */
[id] {
  scroll-margin-top: 100px;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   HEADER
   ============================================ */
header {
  background-color: var(--gray-700);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-md);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 1rem;
}

.logo {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--green-primary);
  user-select: none;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.logo:hover {
  text-decoration: none;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
}

/* Search */
.search-form {
  position: relative;
}

.search-input {
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-300);
  padding: 10px 44px 10px 20px;
  font-size: 0.925rem;
  font-family: var(--font-body);
  color: var(--gray-900);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  width: 220px;
  background: var(--white);
}

.search-input::placeholder {
  color: var(--gray-400);
}

.search-input:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(110, 163, 30, 0.25);
}

.search-button {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gray-500);
  font-size: 1rem;
  cursor: pointer;
  transition: color var(--transition-fast);
  padding: 4px;
}

.search-button:hover {
  color: var(--green-primary);
}

/* --- Hamburger Menu --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
  position: relative;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
  position: absolute;
}

.hamburger span:nth-child(1) {
  transform: translateY(-7px);
}

.hamburger span:nth-child(2) {
  transform: translateY(0);
}

.hamburger span:nth-child(3) {
  transform: translateY(7px);
}

/* Hamburger active state */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
}

/* --- Navigation --- */
nav {
  background-color: var(--green-bg);
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.nav-list li a {
  display: block;
  padding: 14px 24px;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: background-color var(--transition-fast);
  white-space: nowrap;
  cursor: pointer;
}

.nav-list li a:hover {
  background-color: var(--green-dark);
  text-decoration: none;
}

/* ============================================
   HERO SECTION (Home)
   ============================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height) - 48px);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding-left: 64px;
  padding-right: 64px;
}

.hero-text {
  flex: 1 1 55%;
  padding: 32px 32px 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text .heading {
  color: var(--green-primary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.15rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-text .text {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 14px;
  color: var(--gray-600);
  max-width: 520px;
}

.hero-image {
  flex: 1 1 45%;
  overflow: hidden;
  position: relative;
  max-height: calc(100vh - var(--header-height) - 48px);
  border-radius: var(--radius-sm);
}

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

/* --- Arrow Buttons (inside hero-image) --- */
.arrow-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--green-primary);
  color: var(--white);
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: var(--shadow-md);
  user-select: none;
}

.arrow-button:hover {
  background-color: var(--green-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-50%) scale(1.08);
}

.arrow-button:active {
  transform: translateY(-50%) scale(0.95);
}

.left-arrow {
  left: 12px;
}

.right-arrow {
  right: 12px;
}

/* --- Image Viewer Overlay --- */
.image-viewer {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(236, 251, 219, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 5;
  padding: 24px;
}

.image-viewer img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

/* ============================================
   SPECIAL OFFERS SECTION
   ============================================ */
.special-offers {
  background-color: var(--wood-light);
  background-image: repeating-linear-gradient(0deg,
      var(--wood-light) 0,
      var(--wood-light) 15px,
      var(--wood-dark) 15px,
      var(--wood-dark) 18px,
      var(--wood-light) 18px,
      var(--wood-light) 33px);
  padding: 72px 24px;
  width: 100%;
}

.special-offers .section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.special-offers .section-title {
  font-size: 2.75rem;
  font-weight: 900;
  margin-bottom: 8px;
  line-height: 1.2;
  color: var(--gray-900);
}

.special-offers .section-subtitle {
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 40px;
  max-width: 36rem;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.offer-card img {
  width: 100%;
  max-width: 160px;
  height: auto;
  object-fit: contain;
  margin-bottom: 8px;
}

.offer-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--yellow-badge);
  color: var(--black);
  font-weight: 800;
  font-size: 1.15rem;
  border-radius: var(--radius-md);
  padding: 8px 14px;
  transform: rotate(10deg);
  box-shadow: var(--shadow-md);
  line-height: 1.2;
  text-align: center;
}

.offer-badge .old-price {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: line-through;
  margin-top: 2px;
}

.offer-card .offer-size {
  font-size: 0.95rem;
  color: var(--gray-600);
  text-align: center;
  margin-top: 6px;
}

.btn-primary {
  display: inline-block;
  background-color: var(--green-primary);
  color: var(--white);
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: var(--radius-full);
  padding: 14px 36px;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  text-align: center;
}

.btn-primary:hover {
  background-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.btn-primary:active {
  transform: translateY(0);
}

.offers-cta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

/* ============================================
   FIND YOUR LONDIS SECTION
   ============================================ */
.find-londis {
  background-color: var(--gray-50);
  padding: 72px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.find-londis .section-title {
  font-weight: 900;
  font-size: 2.75rem;
  margin-bottom: 24px;
  line-height: 1.1;
  text-align: center;
  color: var(--gray-900);
}

.find-londis .store-info {
  text-align: center;
  line-height: 2;
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 28rem;
}

.find-londis .store-info strong {
  color: var(--gray-900);
}

/* ============================================
   SOCIAL & FOLLOW SECTION
   ============================================ */
.social-banner {
  background: linear-gradient(135deg, #7cc0f0 0%, #99ccf3 50%, #b3d9f7 100%);
  padding: 40px 24px;
  text-align: center;
  color: #003366;
}

.social-banner img.brand-logo {
  max-width: 100px;
  height: auto;
  margin: 0 auto 16px;
}

.social-icons-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.social-icons-footer img {
  width: 28px;
  height: 28px;
  transition: transform var(--transition-fast);
}

.social-icons-footer img:hover {
  transform: scale(1.15);
}

.social-icons-footer .follow-text {
  font-size: 1.35rem;
  font-weight: 700;
  color: #003366;
}

.social-banner p {
  font-size: 1.05rem;
  margin-top: 4px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-links {
  background-color: var(--green-primary);
  padding: 48px 24px;
  color: var(--white);
}

.footer-links-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
}

.footer-links a {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  padding: 6px 0;
  transition: opacity var(--transition-fast);
}

.footer-links a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.footer-bottom {
  background-color: var(--gray-800);
  color: var(--gray-400);
  padding: 16px 24px;
  text-align: center;
  font-size: 0.875rem;
}

.footer-bottom a {
  color: var(--gray-400);
  margin: 0 12px;
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ============================================
   CAREERS PAGE
   ============================================ */
.careers-hero {
  padding: 56px 24px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.careers-content {
  flex: 1 1 60%;
}

.careers-content .heading {
  color: var(--green-primary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.careers-content .text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 24px;
  max-width: 600px;
}

.careers-image {
  flex: 1 1 35%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.careers-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* --- Careers Dropdown --- */
.careers-dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border: 2px solid var(--green-primary);
  background: var(--white);
  color: var(--green-primary);
  font-weight: 700;
  font-size: 1.05rem;
  font-family: var(--font-body);
  cursor: pointer;
  width: 100%;
  max-width: 720px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.careers-dropdown-btn:hover {
  background: var(--green-primary);
  color: var(--white);
}

.careers-dropdown-btn .chevron-icon {
  transition: transform var(--transition-base);
  font-size: 0.8rem;
}

.careers-dropdown {
  border: 1px solid var(--gray-200);
  background: var(--white);
  width: 100%;
  max-width: 720px;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
  margin-top: 8px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.careers-dropdown.open {
  max-height: 2000px;
  overflow-y: auto;
}

.careers-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Accordion header – role title */
.careers-dropdown li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  color: var(--gray-800);
  font-weight: 700;
  font-size: 1rem;
  border-bottom: 1px solid var(--gray-100);
  transition: background-color var(--transition-fast), color var(--transition-fast);
  cursor: pointer;
}

.careers-dropdown li a::after {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 0.75rem;
  color: var(--green-primary);
  transition: transform var(--transition-base);
  flex-shrink: 0;
  margin-left: 12px;
}

.careers-dropdown li a:hover {
  background-color: var(--gray-50);
  color: var(--green-primary);
  text-decoration: none;
}

.careers-dropdown li:last-child a {
  border-bottom: none;
}

/* Job Description panel */
.description {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  background: linear-gradient(135deg, var(--gray-50) 0%, #f0f7e8 100%);
  border-left: 4px solid var(--green-primary);
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.8;
  transition: max-height 0.5s ease, padding 0.4s ease;
}

.description.open {
  padding: 24px;
  max-height: 3000px;
}

.description p {
  margin-bottom: 10px;
}

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

.description p strong {
  color: var(--gray-800);
  font-weight: 700;
}

/* Section headers inside description (Key Responsibilities, Skills, etc.) */
.description p strong:only-child {
  display: block;
  color: var(--green-primary);
  font-size: 0.95rem;
  font-weight: 800;
  margin-top: 12px;
  margin-bottom: 4px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(110, 163, 30, 0.2);
}

/* First paragraph (role intro) */
.description p:first-child {
  font-size: 0.95rem;
  color: var(--gray-700);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 16px;
}

/* How to Apply CTA */
.careers-apply {
  text-align: center;
  padding: 40px 24px;
  margin: 0 auto;
  max-width: var(--max-width);
}

.careers-apply h2 {
  color: var(--green-primary);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.careers-apply p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.careers-apply a {
  color: var(--green-primary);
  text-decoration: underline;
}

.careers-apply a:hover {
  color: var(--green-dark);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
  padding: 56px 24px;
  background-color: var(--gray-50);
  min-height: calc(100vh - var(--header-height) - 100px);
}

.contact-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
}

.contact-form-section {
  flex: 1 1 60%;
}

.contact-form-section .heading {
  color: var(--green-primary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.25rem;
  margin-bottom: 12px;
}

.contact-form-section .text {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 520px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 520px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-900);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(110, 163, 30, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
}

.form-status {
  margin-top: 16px;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-status.success {
  color: var(--green-primary);
}

.form-status.error {
  color: #dc2626;
}

/* Contact Info Side */
.contact-info-section {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--green-primary);
}

.contact-info-card h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green-primary);
  margin-bottom: 12px;
}

.contact-info-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.8;
}

.contact-info-card p strong {
  color: var(--gray-900);
}

.contact-social {
  display: flex;
  gap: 16px;
}

.contact-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--white);
  font-size: 1.1rem;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.contact-social a:hover {
  background: var(--green-dark);
  transform: scale(1.1);
  text-decoration: none;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {

  /* Header */
  .hamburger {
    display: flex;
  }

  .topbar {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .topbar-right {
    gap: 0.75rem;
  }

  .search-form {
    flex: 1;
  }

  .search-input {
    width: 100%;
    font-size: 0.875rem;
    padding: 10px 40px 10px 16px;
  }

  /* Navigation – mobile overlay */
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background-color: var(--green-bg);
    z-index: 150;
    transition: right var(--transition-base);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.25);
    padding-top: 72px;
    overflow-y: auto;
  }

  nav.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .nav-list li a {
    padding: 16px 24px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  /* Overlay backdrop – invisible but still closes menu on tap */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 140;
  }

  .nav-overlay.active {
    display: block;
  }

  /* Hero */
  .hero {
    flex-direction: column;
    min-height: auto;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-text {
    padding: 32px 20px;
    order: 1;
  }

  .hero-text .heading {
    font-size: 1.85rem;
    white-space: normal;
  }

  .hero-text .text {
    font-size: 0.975rem;
    line-height: 1.65;
  }

  .hero-image {
    order: 0;
    max-height: 280px;
  }

  .hero-image img {
    height: 280px;
    object-fit: cover;
  }

  /* Arrows – centered on the top image */
  .arrow-button {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    top: 140px;
  }

  .left-arrow {
    left: 24px;
  }

  .right-arrow {
    right: 24px;
  }

  /* Special Offers */
  .special-offers {
    padding: 48px 16px;
  }

  .special-offers .section-title {
    font-size: 2rem;
  }

  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .offer-card img {
    max-width: 120px;
  }

  /* Find Londis */
  .find-londis {
    padding: 48px 16px;
  }

  .find-londis .section-title {
    font-size: 2rem;
  }

  /* Footer */
  .footer-links-inner {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .footer-bottom a {
    display: inline-block;
    margin: 4px 8px;
  }

  /* Careers */
  .careers-hero {
    flex-direction: column;
    padding: 32px 16px;
    gap: 24px;
  }

  .careers-content .heading {
    font-size: 1.85rem;
  }

  .careers-image {
    order: -1;
    width: 100%;
    max-height: 260px;
  }

  .careers-image img {
    height: 260px;
  }

  .careers-dropdown-btn,
  .careers-dropdown {
    max-width: 100%;
  }

  /* Contact */
  .contact-page {
    padding: 32px 16px;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 32px;
  }

  .contact-form-section .heading {
    font-size: 1.85rem;
  }

  .contact-form {
    max-width: 100%;
  }
}

/* Tablet tweaks */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-text {
    padding: 36px 32px;
  }

  .hero-text .heading {
    font-size: 2.25rem;
  }

  .offers-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

/* Large desktop */
@media (min-width: 1025px) {
  .nav-overlay {
    display: none !important;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}