:root {
  --primary: #4F8B3B;
  --primary-hover: #3d6e2e;
  --secondary: #FBC02D;
  --bg-dark: #17242E;
  --bg-light: #FBFAF6;
  --bg-alt: #F2F0E8;
  --text-dark: #17242E;
  --text-light: #FFFFFF;
  --text-muted: rgba(23, 36, 46, 0.78);
  --border-light: rgba(23, 36, 46, 0.08);
  --border-dark: rgba(255, 255, 255, 0.4);
  --font-main: 'Poppins', sans-serif;
  --font-accent: 'Caveat', cursive;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.1;
  font-weight: 600;
}

.text-accent {
  font-family: var(--font-accent);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.15em;
}

.text-accent-secondary {
  font-family: var(--font-accent);
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.15em;
}

.section-label {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 22px;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 72px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 30px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--bg-dark);
  color: var(--bg-light);
  box-shadow: 0 8px 20px rgba(23, 36, 46, 0.18);
}

.btn-primary:hover {
  background: var(--primary);
  color: var(--text-light);
}

.btn-light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.btn-light:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--text-light);
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* Navbar */
.navbar-wrapper {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: clamp(10px, 1.6vw, 20px) clamp(10px, 2.2vw, 28px) 0;
}

.navbar {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 22px);
  padding: 10px 14px 10px 16px;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 999px;
  background: rgba(251, 250, 246, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-light);
  box-shadow: 0 14px 40px rgba(23, 36, 46, 0.10);
}

.navbar__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 16px);
}

.navbar__links {
  display: none;
  position: relative;
  gap: clamp(14px, 1.5vw, 22px);
  font-size: 15px;
  letter-spacing: 0.01em;
}

@media (min-width: 900px) {
  .navbar__links {
    display: flex;
  }
}

.navbar__links a {
  color: var(--text-dark);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.navbar__links a:hover,
.navbar__links a.active {
  border-bottom: 1px solid var(--primary);
  color: var(--primary);
}


.navbar__burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(23, 36, 46, 0.14);
  background: transparent;
  cursor: pointer;
}

@media (min-width: 900px) {
  .navbar__burger {
    display: none;
  }
}

.navbar__burger-icon {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--bg-dark);
  box-shadow: 0 -6px 0 var(--bg-dark), 0 6px 0 var(--bg-dark);
}

/* Mobile Menu */
.mobile-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  background: var(--bg-light);
  border-radius: 16px;
  padding: 16px 20px;
  position: absolute;
  top: 80px;
  left: 10px;
  right: 10px;
  box-shadow: 0 10px 40px rgba(23, 36, 46, 0.1);
  z-index: 100;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu a {
  color: var(--text-dark);
  padding: 14px 4px;
  font-size: 18px;
  border-bottom: 1px solid rgba(23, 36, 46, 0.06);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 120px clamp(20px, 5vw, 72px) clamp(40px, 6vw, 80px);
}

.hero__bg {
  position: absolute;
  inset: -8% 0 -8% 0;
  background-image: url("img/asset_3.png");
  background-size: cover;
  background-position: center 35%;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 22, 16, 0.55) 0%, rgba(12, 22, 16, 0.15) 40%, rgba(12, 22, 16, 0.82) 100%);
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: clamp(24px, 4vw, 48px);
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
}

.hero__badge-text {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero__title {
  margin: 0;
  color: var(--text-light);
  font-size: clamp(40px, 7.2vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: balance;
  max-width: 16ch;
}

.hero__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.hero__desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.6;
  max-width: 52ch;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__scroll-btn {
  position: absolute;
  left: 50%;
  bottom: 22px;
  margin-left: -22px;
  z-index: 4;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: var(--text-light);
  animation: rg-bob 2.4s ease-in-out infinite;
  transition: all 0.3s ease;
}

.hero__scroll-btn:hover {
  background: rgba(255, 255, 255, 0.26);
}

@keyframes rg-bob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Marquee */
.marquee-section {
  background: var(--bg-dark);
  overflow: hidden;
  padding: 20px 0;
}

.marquee {
  display: flex;
  width: max-content;
  animation: rg-marquee 34s linear infinite;
  gap: 0;
}

.marquee__content {
  display: flex;
  align-items: center;
  gap: 44px;
  padding-right: 44px;
  font-weight: 300;
  font-size: clamp(15px, 1.6vw, 22px);
  color: rgba(251, 250, 246, 0.9);
  white-space: nowrap;
}

.marquee__star-primary {
  color: var(--primary);
}

.marquee__star-secondary {
  color: var(--secondary);
}

@keyframes rg-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Section Common */
.section {
  padding: clamp(72px, 10vw, 80px) 0;
}

.section-alt {
  background: var(--bg-alt);
}

/* About Section */
.about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.about__title {
  font-size: clamp(30px, 4vw, 56px);
  letter-spacing: -0.025em;
  text-wrap: balance;
  margin-bottom: 22px;
}

.about__desc {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 58ch;
  text-wrap: pretty;
  margin-bottom: 22px;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.stat-card {
  padding: 22px;
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--border-light);
  box-shadow: 0 12px 30px rgba(23, 36, 46, 0.05);
}

.stat-card__number {
  font-weight: 600;
  font-size: 34px;
  color: var(--bg-dark);
}

.stat-card__number--primary {
  color: var(--primary);
}

.stat-card__label {
  font-size: 14px;
  color: rgba(23, 36, 46, 0.6);
  margin-top: 6px;
}

.about__image-wrapper {
  position: relative;
}

.about__image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 82%;
  border-radius: 36px;
  box-shadow: 0 30px 70px rgba(23, 36, 46, 0.18);
}

.about__badge {
  position: absolute;
  left: -6px;
  bottom: -22px;
  background: var(--secondary);
  color: var(--bg-dark);
  padding: 20px 26px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(23, 36, 46, 0.18);
  max-width: 240px;
  animation: rg-bob 4.5s ease-in-out infinite;
}

.about__badge-title {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.1;
}

.about__badge-subtitle {
  font-size: 13px;
  margin-top: 4px;
  opacity: 0.75;
}

/* Featured Section */
.featured__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.featured__title {
  font-size: clamp(30px, 4vw, 56px);
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.featured__desc {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--text-muted);
  max-width: 48ch;
  text-wrap: pretty;
}

.featured__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.featured-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  color: var(--text-light);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.featured-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: 1;
}

.featured-card:hover .featured-card__bg {
  transform: scale(1.05);
}

.featured-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 36, 46, 0) 0%, rgba(23, 36, 46, 0.8) 100%);
  z-index: 2;
}

.featured-card__tag {
  position: relative;
  z-index: 3;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.featured-card__content {
  position: relative;
  z-index: 3;
}

.featured-card__title {
  font-size: 24px;
  margin-bottom: 8px;
}

.featured-card__desc {
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Products Section */
.products__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.products__title {
  font-size: clamp(30px, 4vw, 56px);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.products__desc {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--text-muted);
  max-width: 58ch;
  text-wrap: balance;
  margin-bottom: 32px;
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.category-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--font-main);
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #ffffff;
  color: var(--bg-dark);
  border: 1px solid var(--border-light);
}

.category-btn.active {
  background: var(--bg-dark);
  color: var(--bg-light);
  border-color: var(--bg-dark);
}

.category-btn__count {
  opacity: 0.5;
  font-size: 0.9em;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}

.product-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(23, 36, 46, 0.1);
}

.product-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: 1;
}

.product-card:hover .product-card__bg {
  transform: scale(1.05);
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.95) 100%);
  z-index: 2;
}

.product-card__content {
  position: relative;
  z-index: 3;
}

.product-card__content--light {
  color: var(--text-light);
}

.product-card__content--dark {
  color: var(--bg-dark);
}

.product-card__cat {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
  opacity: 0.8;
}

.product-card__title {
  font-size: 20px;
  margin-bottom: 6px;
  font-weight: 600;
}

.product-card__season {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  opacity: 0.9;
}

.product-card__season-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.product-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  z-index: 1;
}

.product-card__placeholder-text {
  font-family: var(--font-accent);
  font-size: 32px;
  color: var(--bg-dark);
  opacity: 0.1;
  transform: rotate(-15deg);
}

/* Production Steps Section */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.step-card {
  padding: 32px 28px;
  background: #fff;
  border-radius: 28px;
  border: 1px solid var(--border-light);
  box-shadow: 0 16px 40px rgba(23, 36, 46, 0.04);
  position: relative;
}

.step-card__no {
  font-family: var(--font-accent);
  font-size: 44px;
  color: var(--bg-dark);
  opacity: 0.1;
  line-height: 1;
  position: absolute;
  top: 24px;
  right: 24px;
}

.step-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(79, 139, 59, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.step-card__title {
  font-size: 20px;
  margin-bottom: 12px;
}

.step-card__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Wholesale Section */
.wholesale__card {
  background: var(--bg-dark);
  border-radius: 32px;
  padding: clamp(32px, 6vw, 64px);
  color: var(--text-light);
  box-shadow: 0 24px 60px rgba(23, 36, 46, 0.2);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
}

.wholesale__title {
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.wholesale__desc {
  font-size: clamp(16px, 1.4vw, 18px);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.wholesale__list {
  display: grid;
  gap: 24px;
}

.wholesale-item {
  display: flex;
  gap: 16px;
}

.wholesale-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(251, 192, 45, 0.15);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wholesale-item__title {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 4px;
}

.wholesale-item__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* FAQ Section */
.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: transparent;
  border: none;
  font-family: var(--font-main);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 500;
  color: var(--bg-dark);
  text-align: left;
  cursor: pointer;
}

.faq-item__icon {
  font-size: 24px;
  color: var(--primary);
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item__text {
  padding-bottom: 24px;
  color: var(--text-muted);
  font-size: clamp(15px, 1.2vw, 16px);
  line-height: 1.7;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 72px) 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(40px, 6vw, 64px);
  margin-bottom: clamp(60px, 8vw, 100px);
}

.footer__desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 32ch;
}

.footer__title {
  font-size: 18px;
  margin-bottom: 24px;
}

.footer__links {
  display: grid;
  gap: 14px;
}

.footer__link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--secondary);
}

.footer__contact {
  display: grid;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.contact-item svg {
  color: var(--primary);
}

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.footer__social a:hover {
  color: var(--text-light);
}

/* Animations */
[data-reveal] {
  opacity: 0;
  will-change: opacity, transform;
}

.revealed {
  opacity: 1 !important;
  transform: none !important;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal="left"] {
  transform: translate3d(-34px, 0, 0);
}

[data-reveal="right"] {
  transform: translate3d(34px, 0, 0);
}

[data-reveal="up"] {
  transform: translate3d(0, 38px, 0);
}

/* Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--primary);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s ease-out;
}


/* MOBILE FIXES */
@media (max-width: 768px) {
  .navbar {
    width: calc(100% - 32px) !important;
    border-radius: 16px !important;
    justify-content: space-between;
  }

  .d-none-mobile {
    display: none !important;
  }

  /* Hero */
  .hero {
    align-items: center !important;
    padding-top: 80px !important;
    padding-bottom: 40px !important;
  }

  .hero__scroll-btn {
    display: none !important;
  }

  .mobile-center {
    text-align: center;
    align-items: center;
  }

  .mobile-center .hero__footer {
    justify-content: center;
  }

  .mobile-center .hero__badge {
    margin: 0 auto 24px;
  }

  .mobile-center .hero__actions {
    justify-content: center;
  }

  .hero__actions .btn {
    padding: 12px 24px !important;
    font-size: 14px;
  }

  /* Hakkımızda */
  .about-content-mobile {
    text-align: center;
  }

  .about-content-mobile .about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  /* Uretim */
  #uretim .section-label {
    display: block;
    text-align: center;
  }

  .mobile-center-title {
    text-align: center;
  }

  #uretim p.production__desc {
    text-align: center;
    margin: 0 auto 40px !important;
  }

  .production-steps {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Urunler grid */
  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  .product-card {
    height: 280px !important;
    border-radius: 20px !important;
  }

  .product-card__content {
    padding: 16px !important;
  }

  .product-card__title {
    font-size: 16px !important;
  }

  .product-card__cat {
    font-size: 10px !important;
    margin-bottom: 6px !important;
  }

  /* Bireysel Siparis */
  .bireysel-header-wrap {
    text-align: center;
    justify-content: center !important;
    flex-direction: column;
    align-items: center !important;
  }

  .bireysel-header-wrap>div {
    max-width: 100% !important;
  }

  .bireysel-header-wrap .btn {
    padding: 14px 24px !important;
    font-size: 14px !important;
  }

  .bireysel-cards-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .bireysel-card-3 {
    grid-column: span 2;
  }

  .bireysel-steps-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Footer Top */
  .footer-top-wrap {
    flex-direction: column;
    text-align: center;
  }

  .footer-top-wrap h2 {
    text-align: center;
  }

  .footer-contact-wrap {
    flex-direction: column;
    gap: 24px !important;
    align-items: center;
  }

  .footer-contact-wrap>div {
    text-align: center;
  }

  /* Footer Bottom */
  .footer-bottom-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .footer-copyright-wrap {
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
  }
}

@media (max-width: 480px) {
  /* On very small screens, maybe product grid is 1fr? The user asked for 2li grid, so keep it 2 */
}

.mobile-menu a.btn-primary {
  color: var(--bg-light) !important;
  border-bottom: none !important;
  align-self: stretch !important;
  text-align: center;
  justify-content: center;
  margin-top: 16px;
  width: auto;
}