/* ===================================================
   Mayiliragu FOODS — style.css
   =================================================== */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;1,9..144,400&family=DM+Sans:wght@300;400;500;600&display=swap");

/* ── CSS VARIABLES ── */
:root {
  --color-primary: #4a7c59;
  --color-secondary: #c8842a;
  --color-bg: #faf8f3;
  --color-surface: #ffffff;
  --color-text: #1c1c1a;
  --color-text-muted: #6b6558;
  --color-border: #e5e0d5;
  --color-success: #22c55e;
  --color-whatsapp: #25d366;
  --color-hero-bg: #1e3a28;
  --font-heading: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.13);
  --transition: 0.25s ease;
  --max-width: 1200px;
  --nav-height: 68px;
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: var(--font-body);
}
input,
select,
textarea {
  font-family: var(--font-body);
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  padding: 8px 16px;
  background: var(--color-primary);
  color: #fff;
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}
h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}
h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}
p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

/* ── LAYOUT HELPERS ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 5rem 0;
}
.section-sm {
  padding: 3rem 0;
}
.text-center {
  text-align: center;
}
.text-muted {
  color: var(--color-text-muted);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ── SECTION HEADER ── */
.section-header {
  margin-bottom: 3rem;
  text-align: center;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text);
}
.section-desc {
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0.75rem auto 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: #3a6347;
  border-color: #3a6347;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-secondary:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-1px);
}
.btn-amber {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary);
}
.btn-amber:hover {
  background: #b07424;
  border-color: #b07424;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-white {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--color-bg);
  transform: translateY(-1px);
}
.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  border-color: var(--color-whatsapp);
}
.btn-whatsapp:hover {
  background: #1da951;
  border-color: #1da951;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}
.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}
.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.82rem;
}
.btn-block {
  width: 100%;
  justify-content: center;
}
.btn-loading {
  opacity: 0.7;
  pointer-events: none;
}

/* ── NAVIGATION ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 248, 243, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  height: var(--nav-height);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-primary);
}
.nav-logo span {
  color: var(--color-secondary);
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary);
  background: rgba(74, 124, 89, 0.1);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem;
  z-index: 999;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: var(--shadow-lg);
}
.nav-mobile.open {
  display: flex;
}
.nav-mobile a {
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--color-text);
}
.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--color-primary);
  background: rgba(74, 124, 89, 0.08);
}
.nav-mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--color-hero-bg);
  height: 70vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://aquilainnovations.in/customer/mayiliragu/image/m_home1.png");
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 40, 0.85) 0%,
    rgba(30, 58, 40, 0.5) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 132, 42, 0.25);
  border: 1px solid rgba(200, 132, 42, 0.5);
  color: #f0c677;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: #fff;
  margin-bottom: 1rem;
}
.hero h1 em {
  color: #f0c677;
  font-style: italic;
}
.hero h2 {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-usp {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-usp-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
}
.hero-usp-item svg {
  opacity: 0.7;
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--color-hero-bg) 0%, #2d5a3d 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://aquilainnovations.in/customer/mayiliragu/image/m_home1.png") center/cover
    no-repeat;
  opacity: 0.1;
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  color: #fff;
  margin-bottom: 0.75rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}
.breadcrumb a:hover {
  color: #f0c677;
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

/* ── USP STRIP ── */
.usp-strip {
  background: var(--color-primary);
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.usp-item {
  padding: 1.75rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.usp-item:last-child {
  border-right: none;
}
.usp-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.usp-icon svg {
  color: #fff;
}
.usp-item h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  font-family: var(--font-body);
}
.usp-item p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  margin: 0;
}

/* ── ABOUT SNIPPET ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--color-secondary);
  color: #fff;
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge strong {
  display: block;
  font-size: 1.6rem;
  font-family: var(--font-heading);
}
.about-badge span {
  font-size: 0.75rem;
  opacity: 0.9;
}
.about-text .section-label {
  text-align: left;
}
.about-text h2 {
  text-align: left;
  margin-bottom: 1.25rem;
}
.about-text p {
  color: var(--color-text-muted);
}
.about-text .btn {
  margin-top: 0.75rem;
}

/* ── PRODUCT CARDS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.product-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-image img {
  transform: scale(1.06);
}
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 58, 40, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-card-overlay {
  opacity: 1;
}
.product-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--color-secondary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}
.product-card-body {
  padding: 1.25rem;
}
.product-card-body h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.product-card-body p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-heading);
}
.product-price small {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--color-text-muted);
  font-family: var(--font-body);
}

/* ── FILTER TABS ── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.filter-tab {
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  border: 1.5px solid var(--color-border);
  background: transparent;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: var(--transition);
  cursor: pointer;
}
.filter-tab:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.filter-tab.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: linear-gradient(135deg, #f0ede6 0%, #e8f0eb 100%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.testimonial-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.testimonial-stars {
  color: var(--color-secondary);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.testimonial-quote {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.88rem;
}
.testimonial-loc {
  font-size: 0.76rem;
  color: var(--color-text-muted);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--color-hero-bg);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(74, 124, 89, 0.3) 0%,
    transparent 70%
  );
}
.cta-banner-content {
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  color: #fff;
  margin-bottom: 1rem;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  margin: 0 auto 2rem;
}
.cta-banner-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #f0c677;
  font-size: 1.35rem;
  font-family: var(--font-heading);
  font-weight: 700;
}

/* ── FOOTER ── */
.footer {
  background: #101c14;
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .nav-logo {
  color: #fff;
  margin-bottom: 1rem;
}
.footer-brand .nav-logo span {
  color: #f0c677;
}
.footer-desc {
  font-size: 0.88rem;
  opacity: 0.7;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}
.footer-social svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-size: 0.88rem;
  opacity: 0.7;
  transition: var(--transition);
}
.footer-links a:hover {
  opacity: 1;
  color: #f0c677;
}
.footer-contact-item {
  display: flex;
  gap: 0.65rem;
  font-size: 0.85rem;
  opacity: 0.75;
  margin-bottom: 0.75rem;
  align-items: flex-start;
}
.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.6;
}
.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.4;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
}

/* ── CARDS / SURFACES ── */
.card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(74, 124, 89, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.card-icon svg {
  color: var(--color-primary);
}

/* ── STATS / COUNTERS ── */
.stats-strip {
  background: var(--color-primary);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-item {
  padding: 2.5rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.stat-item:last-child {
  border-right: none;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item:nth-child(4n + 1) {
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 58, 40, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gallery-zoom {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}
.lightbox.open {
  display: flex;
}
.lightbox-img {
  max-width: 88vw;
  max-height: 82vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
  transition: var(--transition);
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
}
.lightbox-prev {
  left: 1.5rem;
}
.lightbox-next {
  right: 1.5rem;
}

/* ── MENU PAGE ── */
.menu-tabs {
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 0;
}
.menu-tabs-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-tabs-inner::-webkit-scrollbar {
  display: none;
}
.menu-tab {
  padding: 1rem 1.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-muted);
  border: none;
  background: transparent;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
}
.menu-tab:hover {
  color: var(--color-primary);
}
.menu-tab.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}
.menu-section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--color-border);
}
.menu-section:last-child {
  border-bottom: none;
}
.menu-section-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}
.menu-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.menu-item {
  padding: 1rem 0.5rem;
  border-bottom: 1px dashed var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.menu-item:hover {
  background: rgba(74, 124, 89, 0.04);
}
.menu-item-info {
  flex: 1;
}
.menu-item-name {
  font-weight: 600;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.menu-item-desc {
  color: var(--color-text-muted);
  font-size: 0.78rem;
  margin-top: 0.2rem;
}
.menu-item-price {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.95rem;
  white-space: nowrap;
}
.menu-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.menu-dot.veg {
  background: #22c55e;
  border: 1.5px solid #16a34a;
}
.menu-dot.nonveg {
  background: #ef4444;
  border: 1.5px solid #dc2626;
}
.menu-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.menu-badge-special {
  background: rgba(200, 132, 42, 0.15);
  color: var(--color-secondary);
}
.menu-badge-best {
  background: rgba(74, 124, 89, 0.15);
  color: var(--color-primary);
}
.special-box {
  background: linear-gradient(
    135deg,
    rgba(200, 132, 42, 0.12) 0%,
    rgba(74, 124, 89, 0.08) 100%
  );
  border: 1.5px solid rgba(200, 132, 42, 0.3);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.special-box-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 0.4rem;
}
.special-box h3 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}
.special-box p {
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}
.team-card {
  text-align: center;
}
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-border);
  margin-bottom: 1rem;
  transition: var(--transition);
}
.team-card:hover .team-photo {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(74, 124, 89, 0.15);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.team-role {
  color: var(--color-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.team-bio {
  color: var(--color-text-muted);
  font-size: 0.82rem;
  line-height: 1.6;
}
.team-socials {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.team-social {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.team-social:hover {
  background: var(--color-primary);
}
.team-social svg {
  width: 13px;
  height: 13px;
  fill: var(--color-text-muted);
}
.team-social:hover svg {
  fill: #fff;
}
.founder-section {
  background: linear-gradient(135deg, #f0ede6, #e8f0eb);
  padding: 5rem 0;
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}
.founder-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.founder-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
blockquote {
  border-left: 3px solid var(--color-secondary);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  font-family: var(--font-heading);
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: start;
}
.pricing-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-border);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.pricing-card.featured {
  border-color: var(--color-primary);
  box-shadow:
    0 0 0 4px rgba(74, 124, 89, 0.12),
    var(--shadow-lg);
  transform: translateY(-8px);
}
.pricing-badge {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.pricing-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
.pricing-price small {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--color-text-muted);
}
.pricing-desc {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin: 0.75rem 0 1.5rem;
}
.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pricing-features li {
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pricing-features li .check {
  color: var(--color-success);
  font-weight: 700;
}
.pricing-features li .cross {
  color: #ef4444;
}
.comparison-table-wrap {
  overflow-x: auto;
  margin-top: 4rem;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
}
.comparison-table thead {
  position: sticky;
  top: var(--nav-height);
  background: var(--color-bg);
}
.comparison-table th,
.comparison-table td {
  padding: 0.9rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.88rem;
}
.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
}
.comparison-table thead th {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}
.comparison-table tbody tr:hover td {
  background: rgba(74, 124, 89, 0.04);
}
.check-icon {
  color: var(--color-success);
  font-size: 1rem;
}
.cross-icon {
  color: #e5e0d5;
  font-size: 1rem;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  gap: 1rem;
}
.faq-q:hover {
  color: var(--color-primary);
}
.faq-arrow {
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}
.faq-a {
  display: none;
  padding-bottom: 1.25rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
}
.faq-item.open .faq-a {
  display: block;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
}
.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}
.trust-badge-item svg {
  color: var(--color-success);
}

/* ── CONTACT ── */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
}
.contact-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
}
.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(74, 124, 89, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.contact-card-icon svg {
  color: var(--color-primary);
}
.contact-card h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
  font-family: var(--font-body);
}
.contact-card a,
.contact-card p {
  color: var(--color-text);
  font-size: 0.9rem;
}
.contact-form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
}
.form-label .req {
  color: var(--color-secondary);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.15);
}
.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #ef4444;
}
.form-error {
  color: #ef4444;
  font-size: 0.75rem;
  margin-top: 0.3rem;
  display: none;
}
.form-error.show {
  display: block;
}
.form-textarea {
  resize: vertical;
  min-height: 130px;
}
.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 2rem;
}
.map-wrap iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: 0;
}
.social-links-section {
  text-align: center;
  padding: 4rem 0;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}
.social-icon-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-border);
  transition: var(--transition);
}
.social-icon-btn svg {
  width: 22px;
  height: 22px;
  transition: var(--transition);
}
.social-icon-btn.instagram:hover {
  background: #e1306c;
}
.social-icon-btn.facebook:hover {
  background: #1877f2;
}
.social-icon-btn.youtube:hover {
  background: #ff0000;
}
.social-icon-btn:hover svg {
  fill: #fff;
}

/* ── SHOP & CART ── */
.shop-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
}
.shop-sidebar {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  height: fit-content;
  position: sticky;
  top: calc(var(--nav-height) + 1rem);
}
.sidebar-section {
  margin-bottom: 1.75rem;
}
.sidebar-section:last-child {
  margin-bottom: 0;
}
.sidebar-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  font-family: var(--font-body);
}
.sidebar-checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0;
  cursor: pointer;
  font-size: 0.88rem;
}
.sidebar-checkbox input {
  accent-color: var(--color-primary);
}
.price-range {
  width: 100%;
  accent-color: var(--color-primary);
}
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}
.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cart-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.cart-item-img {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-info {
  flex: 1;
}
.cart-item-name {
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.cart-item-variant {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty-btn {
  width: 34px;
  height: 34px;
  background: var(--color-bg);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}
.qty-btn:hover {
  background: var(--color-primary);
  color: #fff;
}
.qty-val {
  width: 40px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}
.cart-item-remove {
  color: #ef4444;
  font-size: 0.8rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition);
}
.cart-item-remove:hover {
  color: #dc2626;
}
.cart-item-price {
  text-align: right;
}
.cart-item-price-val {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
}
.cart-summary {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: sticky;
  top: calc(var(--nav-height) + 1rem);
}
.cart-summary h3 {
  margin-bottom: 1.5rem;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--color-border);
}
.summary-line:last-of-type {
  border-bottom: 2px solid var(--color-text);
  font-weight: 700;
  font-size: 1rem;
}
.cart-empty {
  text-align: center;
  padding: 5rem 2rem;
}
.cart-empty svg {
  opacity: 0.2;
  margin: 0 auto 1.5rem;
}

/* ── TOAST NOTIFICATIONS ── */
.toast {
  position: fixed;
  top: calc(var(--nav-height) + 1rem);
  right: 1rem;
  z-index: 9998;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transform: translateX(120%);
  transition: transform 0.35s ease;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  max-width: 340px;
}
.toast.show {
  transform: translateX(0);
}
.toast.success {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  color: #15803d;
}
.toast.error {
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
  color: #dc2626;
}

/* ── ANIMATIONS / FADE-IN ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 {
  transition-delay: 0.1s;
}
.fade-in-delay-2 {
  transition-delay: 0.2s;
}
.fade-in-delay-3 {
  transition-delay: 0.3s;
}

/* ── ABOUT ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  text-align: center;
}
.why-item {
  padding: 1.5rem 1rem;
}
.why-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(74, 124, 89, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.why-icon svg {
  color: var(--color-primary);
}
.why-title {
  font-weight: 700;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}
.why-desc {
  color: var(--color-text-muted);
  font-size: 0.82rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-form-section {
    grid-template-columns: 1fr;
  }
  .shop-grid {
    grid-template-columns: 1fr;
  }
  .shop-sidebar {
    position: static;
  }
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured {
    transform: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-badge {
    right: 0;
  }
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .menu-items {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .hero {
    min-height: 85vh;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-usp {
    flex-direction: column;
    gap: 0.75rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .usp-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item:nth-child(4n + 1) {
    grid-row: span 1;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .usp-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-img {
  height: 60px;
  width: auto;
  display: block;
}

.nav-logo-text {
  font-size: 28px;
  font-weight: 700;
  color: #4a7c59;
  white-space: nowrap;
}

/* Tablet */
@media (max-width: 768px) {
  .nav-logo-img {
    height: 50px;
  }

  .nav-logo-text {
    font-size: 22px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .nav-logo-img {
    height: 40px;
  }

  .nav-logo-text {
    font-size: 18px;
  }
}
