@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

/* ========================================
   TRAD CHICKEN — MAIN COLORS
======================================== */

:root {
  --green-950: #073d27;
  --green-900: #085033;
  --green-800: #0b5d38;
  --green-700: #147348;

  --gold: #f6b915;
  --gold-dark: #dc9d00;

  --cream: #fffaf0;
  --white: #ffffff;

  --ink: #173c2f;
  --muted: #63786f;
  --line: #dce7e1;

  --shadow:
    0 16px 40px rgba(6, 65, 39, 0.12);

  --radius: 22px;

  --content:
    min(1180px, calc(100% - 40px));
}


/* ========================================
   BASIC SETTINGS
======================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  color: var(--ink);
  background: var(--white);

  font-family:
    Inter,
    "Segoe UI",
    Arial,
    sans-serif;

  font-size: 16px;
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

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


/* ========================================
   HEADER
======================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;

  height: 86px;

  background:
    rgba(255, 255, 255, 0.97);

  border-bottom:
    1px solid rgba(11, 93, 56, 0.08);

  backdrop-filter: blur(14px);
}

.nav-wrap {
  width: var(--content);
  height: 100%;

  margin-inline: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;
}

.brand-logo {
  width: 76px;
  height: 76px;

  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;

  gap: 34px;

  margin-inline-start: auto;
}

.main-nav a {
  position: relative;

  padding: 30px 0 26px;

  color: var(--green-950);

  font-weight: 700;
}

.main-nav a::after {
  content: "";

  position: absolute;

  inset-inline: 0;
  bottom: 20px;

  height: 3px;

  border-radius: 999px;

  background: var(--gold);

  transform: scaleX(0);

  transition:
    transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}


/* Language button */

.language-toggle {
  padding: 9px 16px;

  border:
    1.5px solid var(--gold-dark);

  border-radius: 999px;

  color: var(--green-950);
  background: var(--white);

  font-weight: 800;

  cursor: pointer;
}


/* Mobile menu button */

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  border:
    1px solid var(--line);

  border-radius: 12px;

  color: var(--green-950);
  background: var(--white);

  font-size: 1.4rem;

  cursor: pointer;
}


/* ========================================
   HOMEPAGE HERO
======================================== */

.home-hero {
  min-height: 480px;

  display: grid;

  grid-template-columns:
    42% 58%;

  overflow: hidden;

  background: var(--green-900);
}

.hero-copy {
  position: relative;
  isolation: isolate;

  padding:
    clamp(54px, 7vw, 98px)
    clamp(28px, 7vw, 100px);

  display: flex;
  flex-direction: column;

  align-items: flex-start;
  justify-content: center;

  color: var(--white);
}

.hero-copy::after {
  content: "🐔";

  position: absolute;

  inset-inline-start: -20px;
  bottom: -24px;

  z-index: -1;

  font-size: 11rem;

  opacity: 0.08;

  filter: grayscale(1);
}

.eyebrow {
  display: inline-flex;

  padding: 6px 22px;

  border:
    2px solid var(--gold);

  border-radius: 999px;

  color: var(--white);

  font-weight: 800;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}

.hero-copy h1 {
  margin:
    20px 0 12px;

  color: var(--gold);

  font-size:
    clamp(3rem, 5.3vw, 5.2rem);

  line-height: 0.98;

  letter-spacing: -0.04em;

  text-transform: uppercase;
}

.hero-copy h1 span {
  color: var(--white);
}

.hero-copy p {
  max-width: 520px;

  margin:
    0 0 28px;

  font-size:
    clamp(1.1rem, 1.8vw, 1.45rem);
}


/* ========================================
   PHOTO PLACEHOLDERS
======================================== */

.hero-photo,
.story-photo {
  min-height: 320px;

  background-color: #e8efe9;

  background-position: center;
  background-size: cover;
}

.media-placeholder {
  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  gap: 8px;

  color: var(--green-800);

  font-weight: 800;
}

.media-placeholder.has-image > * {
  display: none;
}

.placeholder-icon {
  font-size: 4rem;
}


/* ========================================
   BUTTONS
======================================== */

.button {
  min-height: 48px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 12px 24px;

  border-radius: 999px;

  font-weight: 800;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 10px 22px
    rgba(0, 0, 0, 0.12);
}

.button-gold {
  color: #17251f;
  background: var(--gold);
}

.button-outline {
  color: var(--green-900);
  background: var(--white);

  border:
    1.5px solid var(--gold-dark);
}


/* ========================================
   GENERAL SECTIONS
======================================== */

.section {
  width: var(--content);

  margin-inline: auto;

  padding: 58px 0;
}

.section-heading {
  margin-bottom: 30px;

  text-align: center;
}

.section-heading.align-start {
  text-align: start;
}

.section-heading h2 {
  display: inline-block;

  margin: 0;

  color: var(--green-950);

  font-size:
    clamp(1.9rem, 3vw, 2.6rem);

  line-height: 1.15;
}

.section-heading h2::after {
  content: "";

  display: block;

  width: 58px;
  height: 4px;

  margin:
    10px auto 0;

  border-radius: 999px;

  background: var(--gold);
}

.section-heading.align-start h2::after {
  margin-inline: 0;
}


/* ========================================
   INNER PAGE HERO
======================================== */

.page-hero {
  position: relative;

  min-height: 220px;

  padding: 42px 20px;

  display: grid;
  place-items: center;

  overflow: hidden;

  text-align: center;

  color: var(--white);

  background:
    linear-gradient(
      135deg,
      var(--green-950),
      var(--green-700)
    );
}

.page-hero h1 {
  margin: 0;
  color: #fbbd18;

  font-size:
    clamp(2.5rem, 5vw, 4.5rem);

  line-height: 1.05;
}

.page-hero p {
  margin:
    10px 0 0;

  font-size:
    clamp(1.05rem, 2vw, 1.35rem);
}

.corner-chicken {
  position: absolute;

  bottom: -40px;

  font-size: 10rem;

  opacity: 0.1;

  filter: grayscale(1);
}

.corner-chicken.left {
  inset-inline-start: -20px;

  transform: scaleX(-1);
}

.corner-chicken.right {
  inset-inline-end: -20px;
}


/* ========================================
   PRODUCT GRID
======================================== */

.product-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 20px;
}

.bestseller-grid {
  gap: 24px;
}

.product-card {
  position: relative;

  min-width: 0;

  overflow: hidden;

  border:
    1px solid var(--line);

  border-radius: 18px;

  background: var(--white);

  box-shadow:
    0 8px 22px
    rgba(5, 62, 38, 0.08);

  cursor: pointer;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-4px);

  border-color: var(--gold);

  box-shadow: var(--shadow);

  outline: none;
}


/* Product photo area */

.product-media {
  position: relative;

  aspect-ratio: 4 / 3;

  overflow: hidden;

  display: grid;
  place-items: center;

  color:
    rgba(11, 93, 56, 0.35);

  background:
    linear-gradient(
      145deg,
      #f3f8f4,
      #fff8e8
    );

  font-size: 3.2rem;
}

.product-media img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.product-media img[hidden] {
  display: none;
}


/* Product title */

.product-card-body {
  min-height: 86px;

  padding: 18px 14px;

  display: grid;
  place-items: center;

  text-align: center;
}

.product-card h3 {
  margin: 0;

  color: var(--green-950);

  font-size: 1.05rem;
  line-height: 1.35;
}

.bestseller-grid
.product-card-body {
  min-height: 105px;
}

.view-product {
  display: block;

  margin-top: 5px;

  color: var(--green-700);

  font-size: 0.9rem;

  text-decoration: underline;
}


/* ========================================
   PRODUCT FILTER BUTTONS
======================================== */

.filter-tabs {
  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 12px;

  margin-bottom: 34px;
}

.filter-tab {
  min-height: 44px;

  padding: 9px 22px;

  border:
    1.5px solid var(--green-700);

  border-radius: 999px;

  color: var(--green-900);
  background: var(--white);

  font-weight: 800;

  cursor: pointer;
}

.filter-tab:hover,
.filter-tab.active {
  color: var(--white);
  background: var(--green-800);

  border-color: var(--gold);

  box-shadow:
    inset 0 0 0 1px
    var(--gold);
}


/* ========================================
   ABOUT PAGE
======================================== */

.story-grid {
  display: grid;

  grid-template-columns:
    0.9fr 1.1fr;

  gap: 46px;

  align-items: center;
}

.story-copy p {
  font-size: 1.08rem;
}

.story-photo {
  min-height: 360px;

  border-radius: var(--radius);

  box-shadow: var(--shadow);
}

.values-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 22px;

  margin-top: 42px;
}

.value-card {
  padding: 28px 22px;

  text-align: center;

  border:
    1px solid var(--line);

  border-radius: var(--radius);

  box-shadow:
    0 8px 22px
    rgba(5, 62, 38, 0.08);
}

.value-icon {
  font-size: 2.5rem;
}

.value-card h3 {
  margin:
    8px 0 2px;

  color: var(--green-900);

  font-size: 1.25rem;
}

.value-card p {
  margin: 0;
}

.closing-statement {
  margin:
    32px 0 0;

  text-align: center;

  color: var(--green-950);

  font-size:
    clamp(1.25rem, 2.2vw, 1.8rem);

  font-weight: 900;
}


/* ========================================
   CONTACT PAGE
======================================== */

.contact-grid {
  display: grid;

  grid-template-columns:
    0.85fr 1.15fr;

  gap: 34px;

  align-items: start;
}

.contact-list {
  display: grid;

  gap: 13px;
}

.contact-card {
  min-height: 88px;

  padding: 16px 18px;

  display: grid;

  grid-template-columns:
    54px 1fr auto;

  gap: 15px;

  align-items: center;

  border:
    1px solid var(--line);

  border-radius: 18px;

  background: var(--white);

  box-shadow:
    0 8px 22px
    rgba(5, 62, 38, 0.08);
}

.contact-card:hover {
  border-color: var(--gold);
}

.contact-card strong,
.contact-card small {
  display: block;
}

.contact-card strong {
  color: var(--green-950);

  font-size: 1.08rem;
}

.contact-card small {
  color: var(--green-800);

  font-size: 0.95rem;
}

.contact-icon {
  width: 50px;
  height: 50px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: var(--white);

  font-size: 1.55rem;
  font-weight: 900;
}

.contact-icon.whatsapp {
  background: #1fbd5b;
}

.contact-icon.phone {
  background: var(--gold-dark);
}

.contact-icon.email {
  background: var(--green-900);
}

.social-pair {
  color: var(--green-800);

  font-size: 1.45rem;
  font-weight: 900;
}


/* Opening hours */

.hours-card {
  margin-top: 16px;

  padding: 20px;

  display: grid;

  grid-template-columns:
    54px 1fr;

  gap: 16px;

  border:
    1px solid var(--line);

  border-radius: 18px;

  box-shadow:
    0 8px 22px
    rgba(5, 62, 38, 0.08);
}

.hours-card h3 {
  margin:
    0 0 8px;

  color: var(--green-900);

  font-size: 1.35rem;
}

.hours-card p {
  margin: 5px 0;

  display: flex;

  justify-content: space-between;

  gap: 20px;
}


/* Map */

.map-frame {
  min-height: 460px;

  overflow: hidden;

  border:
    8px solid var(--white);

  border-radius: var(--radius);

  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 460px;

  display: block;

  border: 0;
}

.map-buttons {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 12px;

  margin-top: 14px;
}

.address-card {
  margin-top: 12px;

  padding: 16px 20px;

  display: flex;

  align-items: center;

  gap: 10px;

  border:
    1px solid var(--line);

  border-radius: 16px;
}


/* ========================================
   FOOTER
======================================== */

.site-footer {
  color: var(--white);

  background:
    linear-gradient(
      135deg,
      var(--green-950),
      var(--green-800)
    );
}

.footer-main {
  width: var(--content);

  margin-inline: auto;

  padding:
    32px 0 22px;

  display: grid;

  grid-template-columns:
    1.15fr 1fr 1.2fr;

  gap: 28px;
}

.footer-zone + .footer-zone {
  padding-inline-start: 28px;

  border-inline-start:
    1px solid
    rgba(255, 255, 255, 0.35);
}

.footer-brand {
  display: flex;

  align-items: center;

  gap: 16px;

  font-weight: 800;
}

.footer-brand img {
  width: 84px;
  height: 84px;

  object-fit: contain;
}

.footer-zone h3 {
  margin:
    0 0 10px;

  font-size: 1rem;
}

.footer-links {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap:
    4px 20px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

.footer-contact {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap:
    8px 18px;
}

.footer-contact a {
  display: flex;

  align-items: center;

  gap: 8px;
}

.footer-bottom {
  width: var(--content);

  margin-inline: auto;

  padding:
    14px 0 18px;

  display: flex;

  justify-content: space-between;

  gap: 20px;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.35);

  font-size: 0.9rem;
}

.footer-legal {
  display: flex;

  gap: 18px;
}


/* ========================================
   CENTERED PRODUCT POP-UP
======================================== */

.modal-overlay {
  position: fixed;

  inset: 0;

  z-index: 100;

  padding: 24px;

  display: grid;
  place-items: center;

  background:
    rgba(9, 30, 22, 0.64);

  backdrop-filter: blur(3px);
}

.product-modal {
  position: relative;

  width:
    min(900px, 92vw);

  max-height:
    min(650px, 88vh);

  overflow: auto;

  display: grid;

  grid-template-columns:
    0.9fr 1.1fr;

  border:
    2px solid var(--green-800);

  border-top:
    8px solid var(--gold);

  border-radius: 24px;

  background: var(--cream);

  box-shadow:
    0 28px 80px
    rgba(0, 0, 0, 0.38);
}

.modal-close {
  position: absolute;

  inset-inline-end: 18px;
  top: 14px;

  z-index: 2;

  width: 42px;
  height: 42px;

  border: 0;

  border-radius: 50%;

  color: var(--green-900);

  background:
    rgba(255, 255, 255, 0.85);

  font-size: 1.8rem;
  line-height: 1;

  cursor: pointer;
}

.modal-media {
  min-height: 390px;

  display: grid;
  place-items: center;

  overflow: hidden;

  color:
    rgba(11, 93, 56, 0.35);

  background:
    linear-gradient(
      145deg,
      #e7f1ea,
      #fff0c9
    );

  font-size: 5rem;
}

.modal-media img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.modal-content {
  padding:
    70px 46px 48px;
}

.modal-category {
  color: var(--gold-dark);

  font-weight: 900;

  letter-spacing: 0.1em;

  text-transform: uppercase;
}

.modal-content h2 {
  margin:
    10px 0 28px;

  color: var(--green-950);

  font-size:
    clamp(2.2rem, 4vw, 3.6rem);

  line-height: 1;
}

.modal-content h3 {
  margin:
    0 0 8px;

  color: var(--green-900);

  font-size: 1.35rem;
}

.modal-content p {
  margin: 0;

  font-size: 1.05rem;
}

.ingredients-placeholder {
  padding: 18px;

  border-inline-start:
    4px solid var(--gold);

  border-radius: 10px;

  background: var(--white);
}


/* ========================================
   ARABIC / RTL
======================================== */

[dir="rtl"] body {
  font-family:
    Tahoma,
    Arial,
    sans-serif;
}

[dir="rtl"] .hero-copy h1 {
  letter-spacing: 0;

  text-transform: none;
}

[dir="rtl"] .eyebrow,
[dir="rtl"] .modal-category {
  letter-spacing: 0;
}

[dir="rtl"] .corner-chicken.left {
  transform: none;
}

[dir="rtl"] .corner-chicken.right {
  transform: scaleX(-1);
}

[dir="rtl"] .product-modal {
  direction: rtl;
}


/* ========================================
   TABLET AND MOBILE
======================================== */

@media (max-width: 900px) {

  :root {
    --content:
      min(100% - 28px, 760px);
  }

  .site-header {
    height: 74px;
  }

  .brand-logo {
    width: 64px;
    height: 64px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .language-toggle {
    margin-inline-start: auto;
  }

  .main-nav {
    position: absolute;

    inset-inline: 14px;
    top: 74px;

    display: none;

    padding: 12px;

    flex-direction: column;

    gap: 0;

    border:
      1px solid var(--line);

    border-radius:
      0 0 18px 18px;

    background: var(--white);

    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: 100%;

    padding: 13px 15px;

    text-align: center;
  }

  .main-nav a::after {
    bottom: 7px;

    inset-inline: 40%;
  }

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

  .hero-copy {
    min-height: 410px;

    align-items: center;

    text-align: center;
  }

  .hero-photo {
    min-height: 320px;
  }

  .product-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .story-copy {
    order: 1;
  }

  .story-photo {
    order: 2;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-zone + .footer-zone {
    padding-inline-start: 0;
    padding-top: 20px;

    border-inline-start: 0;

    border-top:
      1px solid
      rgba(255, 255, 255, 0.3);
  }

  .product-modal {
    grid-template-columns: 1fr;
  }

  .modal-media {
    min-height: 240px;
    max-height: 280px;
  }

  .modal-content {
    padding: 35px 26px;
  }
}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 560px) {

  .language-toggle {
    padding: 7px 11px;
  }

  .page-hero {
    min-height: 190px;
  }

  .corner-chicken {
    font-size: 7rem;
  }

  .section {
    padding: 42px 0;
  }

  .product-grid {
    gap: 12px;
  }

  .product-card-body {
    min-height: 78px;

    padding: 13px 9px;
  }

  .product-card h3 {
    font-size: 0.95rem;
  }

  .filter-tabs {
    justify-content: flex-start;

    flex-wrap: nowrap;

    overflow-x: auto;

    padding-bottom: 6px;
  }

  .filter-tab {
    flex: 0 0 auto;
  }

  .map-buttons {
    grid-template-columns: 1fr;
  }

  .hours-card p {
    flex-direction: column;

    gap: 0;
  }

  .footer-bottom {
    flex-direction: column;

    align-items: center;

    text-align: center;
  }

  .footer-contact {
    grid-template-columns: 1fr;
  }

  .modal-overlay {
    padding: 12px;
  }

  .product-modal {
    max-height: 92vh;
  }
}


/* ========================================
   REDUCED MOTION
======================================== */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    transition: none !important;
  }

}

.map-buttons {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
    width: 100%;
}

.map-buttons .button,
.map-buttons .location-line {
    width: 100%;
    min-width: 0;
    min-height: 64px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.map-buttons .location-line {
    gap: 10px;
    padding: 14px 20px;
    border: 1px solid #d8e3dd;
    border-radius: 999px;
    background: white;
    color: #064e3b;
    font-weight: 700;
}

@media (max-width: 700px) {
    .map-buttons {
        grid-template-columns: 1fr;
    }
}

.map-column > .hours-card {
    width: 100% !important;
    max-width: none !important;
    grid-column: 1 / -1 !important;
    margin-top: 18px;
    padding: 22px 26px;
    box-sizing: border-box;
}
.map-column {
    width: 100%;
}
.map-buttons > .hours-card,
.map-column > .hours-card {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 100% !important;
    justify-self: stretch !important;
    box-sizing: border-box;
    margin-top: 18px;
}
.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px;
    border: 1px solid #d8e3dd;
    border-radius: 22px;
    background: white;
    color: #064e3b;
    text-decoration: none;
    box-sizing: border-box;
    transition: 0.2s ease;
}

.social-card:hover {
    transform: translateY(-3px);
    border-color: #fbbd18;
}

.social-card-icon {
    font-size: 30px;
}

.social-card h3,
.social-card p {
    margin: 0;
}

.social-card p {
    margin-top: 5px;
}

@media (max-width: 700px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
}
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;

    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25d366;
    color: white;
    border: 3px solid white;
    border-radius: 50%;

    font-size: 30px;
    text-decoration: none;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    z-index: 9999;

    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@media (max-width: 600px) {
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
        font-size: 27px;
    }
}
.whatsapp-float img {
    width: 34px;
    height: 34px;
    display: block;
}

.bi-instagram {
    color: #e4405f;
}

.bi-facebook {
    color: #1877f2;
}

.bi-whatsapp {
    color: #25d366;
}

.bi-envelope-fill {
    color: #fbbd18;
}

.footer-contact i,
.social-card-icon i {
    font-size: 25px;
}

.social-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px;
    width: 100%;
}

.social-card {
    width: 100% !important;
    max-width: 100% !important;
}
