/* CSS Variables for Theme */
:root {
  --primary-color: #104734; /* Logo Dark Green */
  --primary-dark: #0b3224;
  --secondary-color: #c8cf4f; /* Logo Lime/Yellow (Darkened slightly for better contrast) */
  --accent-color: #F8F9FA;
  --text-dark: #333333;
  --text-light: #777777;
  --background-light: #F4F7F6;
  --white: #FFFFFF;
  --danger: #E63946;
  
  --font-family: 'Inter', 'Ubuntu', sans-serif;
  --transition: all 0.3s ease-in-out;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
  --glass-bg: rgba(255, 255, 255, 0.4);
  --glass-border: 1px solid rgba(255, 255, 255, 0.18);
  --border-radius: 12px;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}



a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Glassmorphism Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
  transition: background 0.3s ease;
  height: 70px;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0;
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  min-width: 160px;
}
.logo img {
  position: absolute;
  top: 20px;
  left: 0;
  scale: 1.5;
  width: auto;
  z-index: 1001;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 600;
  color: var(--text-dark);
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.cart-icon {
  position: relative;
  font-size: 20px;
  color: var(--primary-color);
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: var(--danger);
  color: var(--white);
  font-size: 11px;
  font-weight: bold;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Swiper Hero Section */
.hero-swiper {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 400px;
  margin-bottom: 80px;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
}

.slide-bg-video, .slide-bg-img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 10;
  pointer-events: none;
}

.hero-content-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
  text-align: center;
  color: var(--white);
  width: 100%;
  max-width: 800px;
  pointer-events: none;
}

.hero-content-overlay .hero-buttons a {
  pointer-events: auto;
}

.swiper-button-next, .swiper-button-prev {
  color: var(--white) !important;
  z-index: 12;
}

.swiper-pagination-bullet {
  background: var(--white) !important;
}

.swiper-pagination {
  z-index: 12;
}

/* Floating Mini Products over Banner */
.hero-mini-products-wrapper {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  z-index: 20;
}

.hero-mini-products {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.mini-product-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  padding: 10px 15px;
  padding-right: 68px;
  display: flex;
  align-items: center;
  gap: 15px;
  width: 260px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transition: transform 0.3s, background 0.3s;
  position: relative;
  text-decoration: none;
  cursor: pointer;
}

.mini-product-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.95);
}

@media (max-width: 992px) {
  .hero-mini-products-wrapper {
    bottom: 60px;
    padding: 0;
    overflow: hidden;
  }

  .hero-mini-products {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 14px 20px 14px 20px;
    width: 100%;
    max-width: 100%;
    scrollbar-width: none;
    cursor: grab;
  }

  .hero-mini-products:active {
    cursor: grabbing;
  }

  .hero-mini-products::-webkit-scrollbar {
    display: none;
  }

  .mini-product-card {
    flex: 0 0 240px;
    min-width: 240px;
    max-width: 240px;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }

  .mini-product-card .mini-wishlist-btn {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-30px) scale(1) !important;
  }
}

.mini-add-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: transform 0.3s, background-color 0.2s;
  z-index: 2;
  cursor: pointer;
}

.mini-product-card:hover .mini-add-btn {
  transform: scale(1.05);
}

.mini-add-btn:hover {
  background-color: var(--primary-dark) !important;
  transform: scale(1.15) !important;
}

/* Sola Doğru Açılan Mini Favori Butonu (+ butonu ile birebir aynı 24px boyutunda) */
.mini-product-card .mini-wishlist-btn,
.mini-wishlist-btn {
  position: absolute !important;
  bottom: 10px !important;
  right: 10px !important;
  top: auto !important;
  width: 24px !important;
  height: 24px !important;
  border-radius: 50% !important;
  background-color: var(--white) !important;
  color: #64748b !important;
  border: 1px solid rgba(16, 71, 52, 0.18) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 11px !important;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15) !important;
  z-index: 1 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  cursor: pointer !important;
  transform: translateX(0) scale(0.65) !important;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.25s ease,
              background-color 0.2s ease,
              border-color 0.2s ease,
              color 0.2s ease,
              box-shadow 0.2s ease !important;
}

.mini-product-card:hover .mini-wishlist-btn {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(-30px) scale(1) !important;
}

.mini-product-card .mini-wishlist-btn:hover {
  background-color: #fef2f2 !important;
  border-color: #fca5a5 !important;
  color: #e53935 !important;
  transform: translateX(-30px) scale(1.15) !important;
  box-shadow: 0 3px 8px rgba(229, 57, 53, 0.25) !important;
}

.mini-product-card .mini-wishlist-btn.active {
  background-color: #fef2f2 !important;
  border-color: #fca5a5 !important;
  color: #e53935 !important;
}

.mini-product-card .mini-wishlist-btn.active i {
  font-weight: 900 !important;
}

.mini-product-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.95);
}

.mini-product-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.mini-product-info {
  display: flex;
  flex-direction: column;
}

.mini-product-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: 5px;
}

.mini-product-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-color);
}

.hero-text-center h1 {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  line-height: 1.1;
}

.hero-text-center p {
  font-size: 24px;
  margin-bottom: 40px;
  font-weight: 400;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-lg {
  padding: 15px 35px;
  font-size: 18px;
}

.btn-add-cart:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(16, 71, 52, 0.2);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(16, 71, 52, 0.4);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 71, 52, 0.3);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Product Grid Section */
.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Product Card - Glassmorphism */
.product-card {
  background: var(--white);
  border-radius: 8px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.product-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background-color: var(--accent-color);
  border-radius: 10px;
  padding: 10px;
}

.product-img img {
  max-height: 100%;
  transition: var(--transition);
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-category {
  font-size: 9.5px;
  color: var(--secondary-color);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.product-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
  transition: var(--transition);
}

.product-title:hover {
  color: var(--primary-dark);
}

.cart-item-title {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.cart-item-title:hover {
  color: var(--primary-dark);
}

.product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--accent-color);
}

.product-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-color);
}

.old-price {
  font-size: 14px;
  color: #9ca3af;
  text-decoration: line-through;
  margin-left: 8px;
  font-weight: 500;
}

.discount-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #c8cf4f;
  color: var(--primary-color);
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  z-index: 2;
  box-shadow: 0 4px 6px rgba(200, 207, 79, 0.4);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 8px rgba(16, 71, 52, 0.25);
}

.product-size {
  display: inline-block;
  background: var(--bg-light);
  color: var(--text-light);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.product-card-actions {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.btn-add-cart {
  position: relative;
  z-index: 2;
  background-color: var(--accent-color);
  color: var(--primary-color);
  border: none;
  width: 40px;
  height: 40px;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.product-card:hover .btn-add-cart,
.tip-card:hover .btn-add-cart {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(16, 71, 52, 0.25);
}

.btn-add-cart:hover {
  background-color: var(--primary-dark) !important;
  transform: scale(1.08);
}

/* Sola Doğru Açılan Favori Butonu */
.btn-wishlist {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  color: #64748b;
  border: 1px solid rgba(16, 71, 52, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(0) scale(0.65);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.25s ease,
              background-color 0.2s ease,
              border-color 0.2s ease,
              color 0.2s ease,
              box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.product-card:hover .btn-wishlist,
.tip-card:hover .btn-wishlist,
.product-card-actions:hover .btn-wishlist {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-48px) scale(1);
}

.btn-wishlist:hover {
  background-color: #fef2f2 !important;
  border-color: #fca5a5 !important;
  color: #e53935 !important;
  transform: translateX(-48px) scale(1.1);
  box-shadow: 0 4px 12px rgba(229, 57, 53, 0.25);
}

.btn-wishlist.active {
  background-color: #fef2f2;
  border-color: #fca5a5;
  color: #e53935;
}

.btn-wishlist.active i {
  font-weight: 900;
}

/* ========================================================
   Redesigned Split 2-Card Product Showcase - Modern Theme POC
   ======================================================== */
.product-hero-section {
  padding-top: 110px;
  padding-bottom: 35px;
}

@media (max-width: 768px) {
  .product-hero-section {
    padding-top: 90px;
    padding-bottom: 25px;
  }
}

.product-split-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

@media (max-width: 1024px) {
  .product-split-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ========================================================
   LEFT COLUMN: Product Visuals & Trust Modules
   ======================================================== */
.product-visual-column {
  display: flex;
  flex-direction: column;
}

/* Main Image Card */
.product-main-image-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(16, 71, 52, 0.08);
  box-shadow: 0 4px 20px -2px rgba(16, 71, 52, 0.04), 0 2px 6px rgba(0, 0, 0, 0.02);
  padding: 22px 24px;
  position: relative;
  overflow: hidden;
}

.product-card-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  z-index: 2;
  position: relative;
}

.product-top-badges-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.badge-discount-pink {
  background: #fce7e7;
  color: #e53935;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.02em;
}

.badge-vegan-pill {
  background: #eaf5ee;
  color: #104734;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.02em;
}

.badge-vegan-pill i {
  color: #16a34a;
}

.btn-image-zoom {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f1f5f3;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
}

.btn-image-zoom:hover {
  background: var(--surface-mint);
  color: var(--primary-color);
  transform: scale(1.05);
}

.product-image-viewport {
  width: 100%;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0 10px;
}

.product-image-viewport img {
  max-height: 360px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.product-main-image-card:hover .product-image-viewport img {
  transform: scale(1.025);
}

.product-image-footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #edf2ef;
  padding-top: 14px;
  margin-top: 10px;
  font-size: 12.5px;
}

.product-image-footer-bar .feature-leaf {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-image-footer-bar .feature-wash {
  color: var(--on-surface-variant);
  font-weight: 700;
}

/* 4 Mini Cards Row below Main Image */
.product-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}

@media (max-width: 480px) {
  .product-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.preview-thumb-box {
  background: #ffffff;
  border: 1.5px solid #e5ede8;
  border-radius: 14px;
  height: 82px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}

.preview-thumb-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.preview-thumb-box:hover {
  border-color: var(--secondary-color);
  transform: translateY(-2px);
}

.preview-thumb-box.active {
  border-color: var(--primary-color);
  border-width: 2px;
  box-shadow: 0 4px 12px rgba(16, 71, 52, 0.12);
}

.badge-lifestyle {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background: rgba(16, 71, 52, 0.9);
  color: #ffffff;
  font-size: 8.5px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  line-height: 1.2;
}

.preview-pill-box {
  border-radius: 14px;
  height: 82px;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 5px;
  border: 1px solid transparent;
  transition: transform 0.2s ease;
}

.preview-pill-box:hover {
  transform: translateY(-2px);
}

.preview-pill-lime {
  background: #f4f8e6;
  border-color: #e5edc4;
  color: #4a540a;
}

.preview-pill-lime i {
  color: #656d0a;
  font-size: 18px;
}

.preview-pill-lime span {
  font-size: 9.5px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.preview-pill-mint {
  background: #eaf5ee;
  border-color: #d1ebd8;
  color: #104734;
}

.preview-pill-mint i {
  color: #16a34a;
  font-size: 18px;
}

.preview-pill-mint span {
  font-size: 9.5px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

/* 3 Trust Cards Row below Mini Cards */
.product-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

@media (max-width: 640px) {
  .product-trust-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.trust-badge-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(16, 71, 52, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-badge-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #edf6f1;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.trust-badge-text {
  display: flex;
  flex-direction: column;
}

.trust-badge-text strong {
  font-size: 12px;
  font-weight: 700;
  color: var(--on-surface);
  line-height: 1.2;
}

.trust-badge-text span {
  font-size: 10.5px;
  color: var(--on-surface-variant);
  line-height: 1.2;
  margin-top: 2px;
}

/* ========================================================
   RIGHT COLUMN: Separate Product Info & Action Card
   ======================================================== */
.product-info-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(16, 71, 52, 0.08);
  box-shadow: 0 4px 20px -2px rgba(16, 71, 52, 0.04), 0 2px 6px rgba(0, 0, 0, 0.02);
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .product-info-card {
    padding: 24px 20px;
  }
}

.product-info-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 10px;
}

.info-top-badges {
  display: flex;
  gap: 8px;
  align-items: center;
}

.badge-bestseller {
  background: #84cc16;
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-formula {
  background: #f1f5f3;
  color: var(--primary-color);
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 6px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.sku-text {
  font-size: 11.5px;
  color: #94a3b8;
}

.sku-text strong {
  color: var(--on-surface);
  font-weight: 700;
}

/* Product Tabs Section */
.product-tabs-section {
  padding: 40px 0 20px 0;
  width: 100%;
}

.product-tabs-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-tabs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  padding-bottom: 6px;
  gap: 10px;
  flex-wrap: wrap;
}

.tab-button {
  cursor: pointer;
  padding: 10px 22px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 13.5px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  color: var(--on-surface-variant, #52635a);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.tab-button:hover {
  color: var(--primary-color);
  border-color: rgba(16, 71, 52, 0.25);
}

.tab-button.bg-primary {
  background: var(--primary-color) !important;
  color: #ffffff !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 4px 12px rgba(16, 71, 52, 0.2);
}

.product-tab-content-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  padding: 32px 36px;
}

@media (max-width: 768px) {
  .product-tab-content-card {
    padding: 20px 16px;
  }
}

.product-info-card .product-category {
  display: inline-block;
  font-size: 13px;
  color: var(--secondary-color);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
  transition: opacity 0.2s ease;
}

.product-info-card .product-category:hover {
  opacity: 0.85;
}

.product-title-bold {
  font-size: 30px;
  font-weight: 800;
  color: #0c3325;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .product-title-bold {
    font-size: 23px;
  }
}

.product-description-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: #52635a;
  margin-bottom: 16px;
}

.product-review-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
}

.product-review-row .stars {
  color: #f59e0b;
  display: flex;
  gap: 2px;
  font-size: 12px;
}

.product-review-row .rating-score-bold {
  font-weight: 700;
  color: var(--on-surface);
}

.product-review-row .rating-count-text {
  color: var(--on-surface-variant);
}

/* Pricing Panel */
.product-price-panel {
  background: #fbfdfc;
  border: 1px solid #edf2ee;
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 22px;
}

.price-main-line {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.main-price-val {
  font-size: 34px;
  font-weight: 800;
  color: #0c3325;
  line-height: 1;
}

.old-price-val {
  font-size: 18px;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: line-through;
}

.discount-badge-red {
  background-color: #c8cf4f;
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(200, 207, 79, 0.4);
  margin-left: auto;
  display: inline-flex;
  align-items: center;
}

.price-sub-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--on-surface-variant);
  padding-top: 4px;
}

.price-sub-line .kdv-info {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #16a34a;
  font-weight: 600;
}

/* Package / Size Selector */
.size-selector-block {
  margin-bottom: 22px;
}

.size-header-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.size-header-line .choice-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--on-surface);
}

.size-header-line .selected-size-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
}

.size-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 480px) {
  .size-options-grid {
    grid-template-columns: 1fr;
  }
}

.size-option-card {
  border: 1.5px solid #dbe5e0;
  background: #ffffff;
  border-radius: 12px;
  padding: 12px 14px;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
  user-select: none;
}

.size-option-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-2px);
}

.size-option-card.active {
  border-color: var(--primary-color);
  border-width: 2px;
  background: #fbfdfc;
  box-shadow: 0 4px 12px rgba(16, 71, 52, 0.08);
}

.size-option-card .check-circle-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  color: var(--primary-color);
  font-size: 14px;
  display: none;
}

.size-option-card.active .check-circle-icon {
  display: block;
}

.badge-advantage {
  position: absolute;
  top: -9px;
  right: 12px;
  background: #104734;
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 9999px;
  box-shadow: 0 2px 4px rgba(16, 71, 52, 0.2);
}

.size-option-card .size-amount {
  font-size: 14px;
  font-weight: 700;
  color: var(--on-surface);
  line-height: 1.2;
}

.size-option-card .size-subtitle {
  font-size: 11px;
  color: var(--on-surface-variant);
  margin-top: 3px;
  margin-bottom: 6px;
  line-height: 1.2;
}

.size-option-card .size-price {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--primary-color);
  margin-top: auto;
}

/* Action Row (Quantity + Add to Cart + Wishlist) */
.product-cart-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.qty-stepper-pill {
  display: flex;
  align-items: center;
  background: #f8faf9;
  border: 1.5px solid #dbe5e0;
  border-radius: 9999px;
  padding: 3px;
  height: 48px;
}

.qty-stepper-pill .qty-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: background 0.2s ease, transform 0.1s ease;
}

.qty-stepper-pill .qty-btn:hover {
  background: var(--surface-mint);
}

.qty-stepper-pill .qty-btn:active {
  transform: scale(0.92);
}

.qty-stepper-pill .qty-input {
  width: 38px;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--on-surface);
  outline: none;
}

.btn-add-cart-pill {
  flex: 1;
  min-width: 180px;
  height: 48px;
  background-color: #0f3d2e;
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(15, 61, 46, 0.25);
  transition: all 0.25s ease;
}

.btn-add-cart-pill:hover {
  background-color: #08261c;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(15, 61, 46, 0.35);
}

.btn-add-cart-pill:active {
  transform: translateY(0);
}

.btn-wishlist-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #dbe5e0;
  background: #ffffff;
  color: var(--on-surface-variant);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: all 0.2s ease;
}

.btn-wishlist-circle:hover {
  border-color: #e53935;
  color: #e53935;
  background: #fef2f2;
}

.btn-wishlist-circle.active {
  background: #fef2f2;
  border-color: #fca5a5;
  color: #e53935;
}

/* Direct Manufacturer Box */
.direct-mfg-box {
  background: #f6f9ea;
  border: 1px solid #e5edc4;
  border-radius: 14px;
  padding: 13px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.direct-mfg-box .mfg-icon {
  color: #104734;
  font-size: 20px;
  margin-top: 1px;
  flex-shrink: 0;
}

.direct-mfg-box .mfg-content strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #104734;
  margin-bottom: 3px;
}

.direct-mfg-box .mfg-content p {
  font-size: 11.5px;
  color: #3b4512;
  line-height: 1.45;
  margin: 0;
}

/* Shipping Checklist */
.shipping-checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shipping-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--on-surface-variant);
}

.shipping-check-item .item-icon {
  font-size: 13px;
  width: 18px;
  display: flex;
  justify-content: center;
  color: var(--primary-color);
}

.shipping-check-item .item-icon.icon-lightning {
  color: #16a34a;
}

.shipping-check-item .item-icon.icon-truck {
  color: #104734;
}

.shipping-check-item .item-icon.icon-box {
  color: #104734;
}

.shipping-check-item span strong {
  color: var(--on-surface);
}

.product-details-collapse {
  margin-top: 40px;
}

.detail-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
}

.detail-card summary {
  padding: 20px 30px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--accent-color);
  user-select: none;
}

.detail-card summary::-webkit-details-marker {
  display: none;
}

.detail-card[open] summary .indicator {
  transform: rotate(180deg);
}

.detail-card .indicator {
  transition: transform 0.3s;
  color: var(--primary-color);
}

.detail-content {
  padding: 30px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

/* Cart Page */
.cart-section {
  padding: 120px 0 60px;
}

.cart-wrapper {
  display: flex;
  gap: 40px;
}

.cart-items {
  flex: 2;
  background: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.cart-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cart-item-img {
  width: 100px;
  height: 100px;
  background: var(--accent-color);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cart-item-info {
  flex: 1;
  position: relative;
}

.cart-item-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.cart-item-price {
  color: var(--primary-color);
  font-weight: 700;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.cart-item-wishlist {
  color: var(--text-light);
  cursor: pointer;
  background: none;
  border: none;
  font-size: 16px;
  transition: var(--transition);
}

.cart-item-wishlist:hover,
.cart-item-wishlist.active {
  color: var(--danger);
}

.cart-item-wishlist.active i {
  font-weight: 900;
}

.cart-item-remove {
  color: var(--danger);
  cursor: pointer;
  background: none;
  border: none;
  font-size: 16px;
}

.cart-summary {
  flex: 1;
  background: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  height: fit-content;
}

.cart-summary h3 {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  color: var(--text-light);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #eee;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

.btn-checkout {
  width: 100%;
  margin-top: 30px;
  text-align: center;
  padding: 15px;
}

/* Categories Section - Mouse Draggable Swiper */
#categories .section-title {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.categories-swiper {
  width: 100%;
  padding: 10px 0 20px 0;
  margin-left: 0;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
}

.categories-swiper .swiper-wrapper {
  align-items: stretch;
}

.categories-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.category-card {
  width: 100%;
  height: 140px;
  background: var(--white);
  padding: 20px 15px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(16, 71, 52, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(16, 71, 52, 0.12);
  border-color: rgba(16, 71, 52, 0.2);
  background-color: #fbfdfc;
}

.cat-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(16, 71, 52, 0.15);
  background: var(--white);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.cat-nav-btn:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: scale(1.06);
  box-shadow: 0 4px 10px rgba(16, 71, 52, 0.25);
}

.category-icon {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 15px;
  transition: transform 0.3s;
}

.category-card:hover .category-icon {
  transform: scale(1.1);
}

.category-name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 14px;
}

/* Home Academy Section (3'lü Yapı & Tab Filtreleme) */
.home-academy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.home-academy-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

@media (max-width: 1024px) {
  .home-academy-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .home-academy-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Academy CTA Banner */
.academy-cta {
  position: relative;
  background-image: url('https://doatemizlik.com.tr/Content/Panel/Teaser/1050311_ENDEKSKI%CC%87MYA2-(1).jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  text-align: center;
  color: var(--white);
  margin-top: 60px;
  margin-bottom: 60px;
}

.academy-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(16, 71, 52, 0.9), rgba(16, 71, 52, 0.7));
  z-index: 1;
}

.academy-cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.academy-cta-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.academy-cta-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 35px;
  opacity: 0.9;
}

.btn-academy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--accent-color);
  color: var(--text-dark);
  padding: 15px 35px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
  box-shadow: 0 4px 15px rgba(231, 236, 133, 0.3);
}

.btn-academy:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(231, 236, 133, 0.5);
  background-color: #f5f8a0;
}

/* Testimonials Section */
.testimonials-section {
  width: 100%;
  background-color: #edf6f1;
  padding: 75px 0 85px 0;
  margin-top: 60px;
  margin-bottom: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(16, 71, 52, 0.06);
  border: 1px solid rgba(16, 71, 52, 0.08);
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(16, 71, 52, 0.1);
}

.quote-icon {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(16, 71, 52, 0.2);
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 14px;
}

/* Sticky Catalog Button */
.sticky-catalog-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  z-index: 999;
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.sticky-catalog-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
  background-color: #0b3424;
}

@media (max-width: 768px) {
  .sticky-catalog-btn {
    bottom: 100px;
    left: 16px;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0 !important;
    gap: 0;
    box-shadow: 0 4px 16px rgba(16, 71, 52, 0.4);
  }

  .sticky-catalog-btn i {
    font-size: 20px;
    margin: 0;
    line-height: 1;
  }

  .sticky-catalog-btn span,
  .sticky-catalog-btn .catalog-btn-text {
    display: none !important;
  }
}

/* News Section */
#news .section-title {
  text-align: left;
  color: var(--primary-color);
  font-weight: 800;
  font-size: 32px;
  margin-bottom: 25px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.news-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.news-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.news-date {
  font-size: 13px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.news-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.4;
  flex: 1;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s, gap 0.3s;
  align-self: flex-end;
  margin-left: auto;
}

.news-read-more:hover {
  color: var(--primary-color);
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 15px;
  position: relative;
  transition: color 0.3s;
  padding-bottom: 5px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 12px;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url('https://doatemizlik.com.tr/Content/i/menu-hover.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: width 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  opacity: 1;
}

.nav-links a.active {
  color: var(--primary-color);
}

/* Enhanced Footer */
.main-footer {
  background-color: var(--white);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 20px;
}

.footer-desc {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 25px;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--background-color);
  color: var(--primary-color);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s;
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--text-dark);
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links, .contact-info {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
}

.footer-links a::before {
  content: '\f105';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 8px;
  font-size: 12px;
  color: var(--primary-color);
  transition: transform 0.3s;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-links a:hover::before {
  transform: translateX(3px);
}

.contact-info li {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.5;
}

.contact-info i {
  color: var(--primary-color);
  font-size: 16px;
  margin-top: 3px;
}

.newsletter-form {
  display: flex;
  position: relative;
}

.newsletter-form input {
  width: 100%;
  padding: 12px 50px 12px 20px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 30px;
  outline: none;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s;
}

.newsletter-form input:focus {
  border-color: var(--primary-color);
}

.newsletter-form button {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  width: 40px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.newsletter-form button:hover {
  background-color: #0b3424;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(0,0,0,0.05);
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  color: var(--text-light);
  font-size: 14px;
}

.footer-copyright a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--primary-color);
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Academy Page Styles */
.page-header {
  padding: 120px 0 80px;
  text-align: center;
  color: var(--white);
  margin-top: 70px;
}

.page-header h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.page-header p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.academy-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.filter-btn {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  padding: 10px 25px;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.academy-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.academy-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.academy-card.full-row-card {
  flex-direction: row;
  align-items: stretch;
}

.academy-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.academy-card.full-row-card .academy-img {
  width: 350px;
  height: auto;
  min-height: 250px;
}

.academy-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.academy-category {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-color);
  background: rgba(16, 71, 52, 0.1);
  padding: 5px 12px;
  border-radius: 8px;
  align-self: flex-start;
  margin-bottom: 15px;
}

.academy-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.4;
}

.academy-excerpt {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.academy-read-more {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 15px;
  transition: gap 0.3s;
}

.academy-card:hover .academy-read-more {
  gap: 12px;
}

/* News Page Styles */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.news-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.news-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s;
}

.news-card:hover .news-img {
  transform: scale(1.05);
}

.news-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-date {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-color);
  background: rgba(16, 71, 52, 0.1);
  padding: 5px 12px;
  border-radius: 8px;
  align-self: flex-start;
  margin-bottom: 15px;
}

.news-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
  line-height: 1.4;
  flex-grow: 1;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: gap 0.3s, color 0.3s;
  align-self: flex-end;
  margin-left: auto;
}

.news-card:hover .news-read-more {
  gap: 12px;
}

/* Responsive */
@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .academy-card.full-row-card {
    flex-direction: column;
  }
  .academy-card.full-row-card .academy-img {
    width: 100%;
    height: 220px;
    min-height: 220px;
  }
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }
  
  .hero-image {
    text-align: center;
  }
  
  .nav-links {
    display: none; /* Hide for PoC mobile, assume hamburger menu in real app */
  }
  
  .product-detail-wrapper, .cart-wrapper {
    flex-direction: column;
  }
}

/* Unified Toast Notification - Academy Style with Bottom-Center Placement & Modern Radius */
.toast-container,
.academy-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(25px);
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(16, 71, 52, 0.35), 0 4px 12px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.1px;
  z-index: 99999;
  width: auto;
  min-width: 260px;
  max-width: 90vw;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s;
}

.toast-container.show,
.academy-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.toast-container i,
.academy-toast i {
  color: var(--secondary-color);
  font-size: 19px;
  flex-shrink: 0;
}

/* Wishlist Toast Modifier */
.toast-container.wishlist-toast {
  background-color: var(--primary-color);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 30px rgba(16, 71, 52, 0.38), 0 4px 14px rgba(239, 68, 68, 0.2);
}

.toast-container.wishlist-toast i {
  color: #ff5252;
  font-size: 19px;
  animation: toastHeartBeat 0.4s ease-out;
}

@keyframes toastHeartBeat {
  0% { transform: scale(0.7); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

@media (max-width: 600px) {
  .toast-container,
  .academy-toast {
    bottom: 20px;
    padding: 12px 20px;
    font-size: 13.5px;
    gap: 10px;
    min-width: 240px;
    max-width: 92vw;
  }
}


/* Page Header Banners */
.page-header {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding-top: 70px; /* offset for fixed header */
  margin-top: 0;
}
.page-header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: var(--white);
}
.page-header p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
}



.mini-discount-badge {
  position: absolute;
  top: -8px;
  right: 10px;
  background-color: #c8cf4f;
  color: var(--primary-color);
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 800;
  z-index: 4;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 3px;
  line-height: 1.2;
}

.mini-discount-badge i {
  font-size: 9px;
}
.mini-old-price {
  font-size: 11px;
  color: #9ca3af;
  text-decoration: line-through;
  margin-left: 6px;
  font-weight: 500;
}

/* ========================================================
   Interactive Product Tabs & Feature Panels Component
   ======================================================== */
:root {
  --surface-canvas: #f6f8f7;
  --surface-pristine: #ffffff;
  --surface-mint: #e8f5ee;
  --surface-lime-tint: #f5f8e5;
  --on-surface: #1e2924;
  --on-surface-variant: #52635a;
  --alert-discount-red: #e53935;
}

/* Backgrounds & Colors */
.bg-surface-canvas {
  background-color: var(--surface-canvas);
}
.bg-surface-pristine {
  background-color: var(--surface-pristine);
}
.bg-surface-mint {
  background-color: var(--surface-mint);
}
.bg-surface-lime-tint {
  background-color: var(--surface-lime-tint);
}
.bg-primary {
  background-color: var(--primary-color) !important;
}
.text-primary {
  color: var(--primary-color) !important;
}
.text-secondary {
  color: #7b8414 !important;
}
.text-on-primary {
  color: #ffffff !important;
}
.text-on-surface {
  color: var(--on-surface);
}
.text-on-surface-variant {
  color: var(--on-surface-variant);
}
.text-alert-discount-red {
  color: var(--alert-discount-red);
}
.hover\:text-primary:hover {
  color: var(--primary-color) !important;
}

/* Dimensions & Spacing */
.w-full {
  width: 100%;
}
.max-w-7xl {
  max-width: 80rem; /* 1280px */
}
.max-w-md {
  max-width: 28rem;
}
.max-w-sm {
  max-width: 24rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.px-margin-mobile {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.py-space-xl {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.p-4 {
  padding: 1rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}

/* Flexbox & Grid Utilities */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-start {
  justify-content: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.grid {
  display: grid;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.hidden {
  display: none !important;
}

/* Borders & Shadows */
.rounded-lg {
  border-radius: 0.75rem;
}
.rounded-xl {
  border-radius: 1.25rem;
}
.rounded-full {
  border-radius: 9999px;
}
.shadow-sm {
  box-shadow: 0 2px 8px -2px rgba(16, 71, 52, 0.08), 0 1px 4px -1px rgba(0, 0, 0, 0.04);
}
.transition-all {
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sizing */
.w-12 {
  width: 3rem;
  min-width: 3rem;
}
.h-12 {
  height: 3rem;
}

/* Typography */
.font-title-product {
  font-family: var(--font-family);
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}
.text-body-md {
  font-size: 0.9375rem;
  line-height: 1.55;
}
.font-body-md {
  font-family: var(--font-family);
}
.text-body-sm {
  font-size: 0.8125rem;
  line-height: 1.45;
}
.font-body-sm {
  font-family: var(--font-family);
}
.text-headline-sm {
  font-size: 1.125rem;
  line-height: 1.35;
}
.font-headline-sm {
  font-weight: 700;
}
.text-headline-md {
  font-size: 1.625rem;
  line-height: 1.25;
}
.font-headline-md {
  font-weight: 800;
}
.text-price-lg {
  font-size: 1.25rem;
  line-height: 1.3;
}
.font-price-lg {
  font-weight: 800;
}
.text-center {
  text-align: center;
}
.leading-relaxed {
  line-height: 1.625;
}

/* Specific Font Sizes */
.text-\[18px\] {
  font-size: 18px !important;
}
.text-\[20px\] {
  font-size: 20px !important;
}
.text-\[24px\] {
  font-size: 24px !important;
}
.text-\[56px\] {
  font-size: 56px !important;
}

/* Material Symbols icon support */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

/* Interactive Tabs Specifics */
.tab-button {
  border: 1px solid rgba(16, 71, 52, 0.08);
  outline: none;
  cursor: pointer;
  user-select: none;
}
.tab-button:hover:not(.bg-primary) {
  background-color: #eaf2ed;
  border-color: rgba(16, 71, 52, 0.2);
}
.tab-button.bg-primary {
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(16, 71, 52, 0.25);
}
.tab-panel {
  animation: panelFadeIn 0.35s ease;
}
@keyframes panelFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Media Queries */
@media (min-width: 640px) {
  .sm\:justify-center {
    justify-content: center;
  }
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md\:px-margin {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .md\:p-10 {
    padding: 2.5rem;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:w-1\/2 {
    width: 50%;
  }
  .md\:w-auto {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Products Toolbar Filters & Search Styling */
#product-search-input:focus,
#category-filter-select:focus,
#sort-filter-select:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 3px rgba(16, 71, 52, 0.12) !important;
}

#category-filter-select:hover,
#sort-filter-select:hover {
  border-color: #cbd5e1;
}

@media (max-width: 768px) {
  .products-toolbar {
    flex-direction: column;
    align-items: stretch !important;
  }
  .products-toolbar .search-box {
    max-width: 100% !important;
    width: 100% !important;
  }
  .products-toolbar .filter-dropdowns {
    width: 100%;
    display: flex;
    gap: 10px;
  }
  .products-toolbar .filter-dropdowns .select-wrapper {
    flex: 1;
  }
  .products-toolbar .filter-dropdowns select {
    width: 100% !important;
    min-width: 0 !important;
  }
}

/* Brand Storytelling Ribbon Styles */
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 0.75rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-6 { margin-bottom: 1.5rem !important; }
.mb-8 { margin-bottom: 2rem !important; }
.mb-10 { margin-bottom: 2.5rem !important; }
.mb-12 { margin-bottom: 3rem !important; }
.mt-space-lg {
  margin-top: 2.25rem;
}
.gap-space-md {
  gap: 1.25rem;
}
.p-space-md {
  padding: 1.25rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.border {
  border-width: 1px;
  border-style: solid;
}
.border-border-subtle\/60 {
  border-color: rgba(16, 71, 52, 0.08) !important;
}
.shadow-xs {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
}
.w-10 {
  width: 2.5rem;
  min-width: 2.5rem;
}
.h-10 {
  height: 2.5rem;
}
.shrink-0 {
  flex-shrink: 0;
}
.text-\[22px\] {
  font-size: 22px !important;
}
.text-\[12px\] {
  font-size: 12px !important;
  line-height: 1.45;
}
.brand-storytelling-ribbon-section .bg-surface-pristine {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.brand-storytelling-ribbon-section .bg-surface-pristine:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px -2px rgba(16, 71, 52, 0.08);
  border-color: rgba(16, 71, 52, 0.2) !important;
}

/* Home Products Filter Tabs */
.home-filter-tabs {
  display: inline-flex;
  align-items: center;
  background-color: #eef4f0;
  padding: 4px;
  border-radius: 9999px;
  border: 1px solid rgba(16, 71, 52, 0.08);
  gap: 4px;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  align-self: center;
}

.home-filter-tabs::-webkit-scrollbar {
  display: none;
}

.home-tab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  outline: none;
  font-family: var(--font-family);
  font-weight: 600;
  background: transparent;
  user-select: none;
  font-size: 13.5px;
  line-height: 1.3;
  padding: 8px 18px;
  border-radius: 9999px;
  color: var(--on-surface-variant);
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.home-tab-btn:hover:not(.active) {
  color: var(--primary-color);
  background-color: rgba(16, 71, 52, 0.06);
}

.home-tab-btn.active {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(16, 71, 52, 0.22);
}

@keyframes productCardFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================================
   Section 7: E-Bülten & İndirim Kampanyası Banner
   ======================================================== */
.px-margin {
  padding-left: 20px;
  padding-right: 20px;
}

.mb-space-xl {
  margin-bottom: 60px;
}

.p-space-lg {
  padding: 28px;
}

.p-space-md {
  padding: 24px;
}

.mb-space-sm {
  margin-bottom: 12px;
}

.mb-space-md {
  margin-bottom: 20px;
}

.gap-space-lg {
  gap: 24px;
}

.rounded-3xl {
  border-radius: 24px;
}

.rounded-2xl {
  border-radius: 16px;
}

.rounded {
  border-radius: 6px;
}

.max-w-xl {
  max-width: 580px;
}

.bg-primary-container {
  background-color: var(--primary-color) !important;
}

.hover\:bg-secondary:hover {
  background-color: var(--secondary-color) !important;
}

.font-label-badge {
  font-family: var(--font-family);
}

.text-label-badge {
  font-size: 11px;
}

.font-headline-lg {
  font-family: var(--font-family);
}

.text-headline-lg {
  font-size: 26px;
  line-height: 1.25;
}

.font-label-btn {
  font-family: var(--font-family);
  font-weight: 600;
}

.text-label-btn {
  font-size: 13.5px;
}

.text-outline {
  color: #727974;
}

.text-title-product {
  font-size: 15px;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.text-\[16px\] {
  font-size: 16px !important;
}

.text-\[18px\] {
  font-size: 18px !important;
}

.bg-surface-container-low {
  background-color: #f0f4f1;
}

.inline-flex {
  display: inline-flex;
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.shrink-0 {
  flex-shrink: 0;
}

.uppercase {
  text-transform: uppercase;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.font-extrabold {
  font-weight: 800;
}

.font-medium {
  font-weight: 500;
}

.inline-block {
  display: inline-block;
}

.material-symbols-outlined {
  vertical-align: middle;
  line-height: 1;
}

@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row !important;
  }
  .sm\:text-left {
    text-align: left !important;
  }
}

@media (min-width: 992px) {
  .lg\:flex-row {
    flex-direction: row !important;
  }
  .lg\:p-space-xl {
    padding: 44px !important;
  }
  .lg\:w-5\/12 {
    width: 41.666667% !important;
  }
}

/* ========================================================
   Temizlik Akademisi Modern Design System & Utility Styles
   ======================================================== */
.bg-gradient-to-b {
  background: linear-gradient(180deg, #e8f5ee 0%, #f6f8f7 40%, #f6f8f7 100%);
}
.bg-gradient-to-r {
  background: linear-gradient(90deg, #104734 0%, #175e46 50%, #104734 100%);
}
.bg-gradient-to-br {
  background: linear-gradient(135deg, rgba(232, 245, 238, 0.9) 0%, rgba(245, 248, 229, 0.9) 100%);
}
.bg-gradient-to-t {
  background: linear-gradient(0deg, rgba(16, 71, 52, 0.92) 0%, rgba(16, 71, 52, 0.35) 60%, transparent 100%);
}

.bg-primary-fixed\/60 {
  background-color: rgba(16, 71, 52, 0.1);
}
.bg-surface-mint\/60 {
  background-color: rgba(232, 245, 238, 0.6);
}
.bg-surface-mint\/80 {
  background-color: rgba(232, 245, 238, 0.85);
}
.bg-surface-lime-tint\/80 {
  background-color: rgba(245, 248, 229, 0.85);
}
.bg-secondary-fixed {
  background-color: #d9e262 !important;
}
.bg-secondary-fixed\/40 {
  background-color: rgba(217, 226, 98, 0.4) !important;
}
.text-on-secondary-fixed {
  color: #1a2000 !important;
}
.text-on-secondary-fixed-variant {
  color: #3b4200 !important;
}
.text-secondary-fixed {
  color: #d9e262 !important;
}
.text-secondary-fixed-dim {
  color: #c0ca48 !important;
}
.text-surface-container-highest {
  color: rgba(255, 255, 255, 0.85) !important;
}
.bg-alert-discount-bg {
  background-color: #fef2f2 !important;
}
.text-alert-discount-red {
  color: #e53935 !important;
}
.text-accent-star-gold {
  color: #f59e0b !important;
}

.aspect-square {
  aspect-ratio: 1 / 1;
}
.object-cover {
  object-fit: cover;
}
.object-contain {
  object-fit: contain;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-3\.5 {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.pl-12 {
  padding-left: 3rem;
}
.pr-4 {
  padding-right: 1rem;
}
.w-fit {
  width: fit-content;
}
.w-28 {
  width: 7rem;
}
.h-28 {
  height: 7rem;
}
.w-8 {
  width: 2rem;
}
.h-8 {
  height: 2rem;
}
.w-7 {
  width: 1.75rem;
}
.h-7 {
  height: 1.75rem;
}
.font-display {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.15;
}
.tracking-tight {
  letter-spacing: -0.025em;
}

.scrollbar-none::-webkit-scrollbar {
  display: none;
}
.scrollbar-none {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.active\:scale-95:active {
  transform: scale(0.95);
}

.tip-card {
  border: 1px solid rgba(16, 71, 52, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.tip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(16, 71, 52, 0.12);
  border-color: rgba(16, 71, 52, 0.18);
}
.tip-card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
  background-color: #f1f5f3;
}

.tag-pill {
  cursor: pointer;
  border: 1px solid rgba(16, 71, 52, 0.1);
  outline: none;
  user-select: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.tag-pill:hover:not(.bg-primary) {
  background-color: #e8f5ee;
  color: var(--primary-color);
}

.category-filter-btn {
  cursor: pointer;
  border: none;
  outline: none;
  user-select: none;
  transition: all 0.2s ease;
}
.category-filter-btn:hover:not(.bg-primary) {
  background-color: #e8f5ee;
  color: var(--primary-color);
}

@media (min-width: 640px) {
  .sm\:aspect-\[4\/3\] {
    aspect-ratio: 4 / 3;
  }
  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .lg\:col-span-7 {
    grid-column: span 7 / span 7;
  }
  .lg\:col-span-5 {
    grid-column: span 5 / span 5;
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .lg\:aspect-square {
    aspect-ratio: 1 / 1;
  }
}


/* Modal Popup */
.academy-modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.academy-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.academy-modal-overlay .modal-box {
  transform: scale(0.92);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.academy-modal-overlay.active .modal-box {
  transform: scale(1);
}

/* Academy Header Offset (clears fixed glassmorphic header & hanging logo) */
.academy-header-offset {
  padding-top: 120px;
}

@media (max-width: 768px) {
  .academy-header-offset {
    padding-top: 90px;
  }
}

/* Academy Search & Filter Component */
.academy-search-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 18px 22px;
  box-shadow: 0 10px 30px rgba(16, 71, 52, 0.08);
  border: 1px solid rgba(16, 71, 52, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.academy-search-bar {
  display: flex;
  align-items: center;
  background: #f8faf9;
  border: 1.5px solid #dbe5e0;
  border-radius: 50px;
  padding: 4px 6px 4px 18px;
  gap: 10px;
  transition: all 0.25s ease;
  position: relative;
}

.academy-search-bar:focus-within {
  border-color: var(--primary-color);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(16, 71, 52, 0.12);
}

.academy-search-icon {
  color: #64748b;
  font-size: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: color 0.2s ease;
}

.academy-search-bar:focus-within .academy-search-icon {
  color: var(--primary-color);
}

.academy-search-input {
  flex: 1;
  width: 100%;
  border: none !important;
  background: transparent !important;
  outline: none !important;
  box-shadow: none !important;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  padding: 10px 4px;
}

.academy-search-input::placeholder {
  color: #94a3b8;
  font-size: 14px;
}

.academy-search-submit-btn {
  background-color: var(--primary-color);
  color: #ffffff;
  border: none !important;
  outline: none !important;
  border-radius: 50px;
  padding: 10px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(16, 71, 52, 0.2);
}

.academy-search-submit-btn:hover {
  background-color: #0b3424;
  box-shadow: 0 6px 16px rgba(16, 71, 52, 0.3);
  transform: translateY(-1px);
}

.academy-search-submit-btn:active {
  transform: scale(0.97);
}

.academy-tags-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-top: 2px;
}

.academy-tags-wrapper::-webkit-scrollbar {
  display: none;
}

.academy-tags-title {
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
  margin-right: 4px;
}

.tag-pill {
  border: 1px solid rgba(16, 71, 52, 0.12);
  background: #f1f5f3;
  color: #334155;
  border-radius: 9999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s ease;
  outline: none;
}

.tag-pill:hover {
  background: #e8f5ee;
  color: var(--primary-color);
  border-color: rgba(16, 71, 52, 0.25);
}

.tag-pill.active,
.tag-pill.bg-primary {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 2px 6px rgba(16, 71, 52, 0.2);
}

/* Academy Hero Spotlight Visual Card */
.block {
  display: block !important;
}

.academy-hero-spotlight-card {
  display: block !important;
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(16, 71, 52, 0.16);
  background: #104734;
  text-decoration: none;
}

.academy-hero-spotlight-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.academy-hero-spotlight-card:hover .academy-hero-spotlight-img {
  transform: scale(1.06);
}

.academy-hero-spotlight-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(16, 71, 52, 0.94) 0%, rgba(16, 71, 52, 0.62) 44%, rgba(16, 71, 52, 0.12) 75%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 30px;
  color: #ffffff;
  z-index: 2;
  pointer-events: none;
}

.academy-hero-badge {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 13px;
  border-radius: 9999px;
  width: fit-content;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.academy-hero-overlay-title {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.academy-hero-overlay-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 640px) {
  .academy-search-card {
    padding: 14px;
    gap: 12px;
  }
  .academy-search-bar {
    padding: 4px 6px 4px 14px;
  }
  .academy-search-submit-btn {
    padding: 9px 16px;
    font-size: 13px;
  }
  .academy-search-input {
    font-size: 14px;
  }
  .academy-hero-spotlight-card {
    height: 320px;
  }
  .academy-hero-spotlight-overlay {
    padding: 20px;
  }
  .academy-hero-overlay-title {
    font-size: 18px;
  }
  .academy-hero-overlay-desc {
    font-size: 13px;
  }
}

/* Academy Chemist Consultation Section - Doa Theme Native */
.chemist-consultation-section {
  width: 100%;
  background-color: #edf6f1;
  padding: 70px 0;
  margin-bottom: 80px;
}

.chemist-consultation-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  position: relative;
  overflow: visible;
}

.chemist-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(16, 71, 52, 0.08);
  color: var(--primary-color);
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.chemist-badge i {
  color: var(--primary-color);
  font-size: 14px;
}

.chemist-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.chemist-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 26px;
}

.chemist-trust-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(16, 71, 52, 0.08);
}

.chemist-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
}

.chemist-trust-item i {
  color: var(--secondary-color);
  font-size: 16px;
  flex-shrink: 0;
}

/* Form Container */
.chemist-form-card {
  background: #ffffff;
  border: 1px solid rgba(16, 71, 52, 0.08);
  border-radius: 20px;
  padding: 34px 38px;
  box-shadow: 0 4px 20px rgba(16, 71, 52, 0.03);
}

.chemist-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.chemist-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.chemist-form-group.no-mb {
  margin-bottom: 0;
}

.chemist-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.chemist-input,
.chemist-textarea {
  width: 100%;
  padding: 13px 18px;
  background: #fbfdfc;
  border: 1px solid rgba(16, 71, 52, 0.14);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: var(--text-dark);
  outline: none;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.chemist-input:focus,
.chemist-textarea:focus {
  border-color: var(--primary-color);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(16, 71, 52, 0.1);
}

.chemist-input::placeholder,
.chemist-textarea::placeholder {
  color: #9cb0a6;
  font-size: 14px;
}

.chemist-textarea {
  resize: vertical;
  min-height: 110px;
}

.chemist-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary-color);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(16, 71, 52, 0.25);
  margin-top: 6px;
}

.chemist-submit-btn:hover {
  background: #0b3224;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 71, 52, 0.32);
}

.chemist-submit-btn:active {
  transform: translateY(0);
}

@media (max-width: 991px) {
  .chemist-consultation-section {
    padding: 50px 0;
  }
  .chemist-form-card {
    padding: 24px 20px;
  }
  .chemist-title {
    font-size: 26px;
  }
}

@media (max-width: 640px) {
  .chemist-form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .chemist-form-card {
    padding: 20px 14px;
    border-radius: 16px;
  }
  .chemist-title {
    font-size: 22px;
  }
  .chemist-submit-btn {
    width: 100%;
  }
}

/* Featured Horizontal Product Card - Academy */
.product-card-horizontal {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 22px !important;
  padding: 26px 24px !important;
  width: 100% !important;
  background: #ffffff !important;
  border-radius: 20px !important;
  border: 1px solid rgba(16, 71, 52, 0.1) !important;
  box-shadow: 0 8px 24px rgba(16, 71, 52, 0.05) !important;
  position: relative !important;
  overflow: visible !important;
  transition: var(--transition) !important;
}

.product-card-horizontal:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 30px rgba(16, 71, 52, 0.1) !important;
}

.featured-badge-top {
  position: absolute;
  top: -12px;
  left: 18px;
  background: var(--primary-color);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  box-shadow: 0 3px 10px rgba(16, 71, 52, 0.25);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.featured-badge-top i {
  color: var(--secondary-color);
  font-size: 11px;
}

.product-card-horizontal .discount-badge {
  top: 14px !important;
  right: 16px !important;
}

.product-img-horizontal {
  width: 130px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  border-radius: 14px;
  padding: 8px;
  flex-shrink: 0;
  transition: var(--transition);
  text-decoration: none;
}

.product-img-horizontal img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card-horizontal:hover .product-img-horizontal img {
  transform: scale(1.06);
}

.product-info-horizontal {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  min-width: 0;
}

.product-info-horizontal .product-category {
  margin-bottom: 4px;
}

.product-title-horizontal {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  margin-bottom: 6px;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.product-title-horizontal:hover {
  color: var(--primary-dark);
}

.product-price-row-horizontal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(16, 71, 52, 0.08);
}

.product-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

@media (max-width: 576px) {
  .product-card-horizontal {
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 28px 16px 16px !important;
    gap: 16px !important;
  }
  .product-img-horizontal {
    width: 100%;
    height: 160px;
  }
}

/* News Page Specific Grid & Cards (Academy Style) */
.news-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .news-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .news-page-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.news-page-card {
  background: var(--white);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(16, 71, 52, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.news-page-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(16, 71, 52, 0.1);
  border-color: rgba(16, 71, 52, 0.2);
}

.news-page-card-img-wrap {
  width: 100%;
  height: 210px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 18px;
  position: relative;
  background-color: var(--accent-color);
}

.news-page-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-page-card:hover .news-page-card-img {
  transform: scale(1.06);
}

.news-page-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.news-badge {
  background: #eaf5ee;
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 4px 10px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.news-date-text {
  font-size: 12.5px;
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.news-page-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
  text-decoration: none;
}

.news-page-title:hover {
  color: var(--primary-dark);
}

.news-page-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-page-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(16, 71, 52, 0.06);
}

.news-btn-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
  transition: gap 0.25s ease, color 0.25s ease;
}

.news-btn-read:hover {
  gap: 12px;
  color: var(--primary-dark);
}

.news-btn-share {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 15px;
  padding: 6px;
  border-radius: 50%;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.news-btn-share:hover {
  color: var(--primary-color);
  background-color: #eaf5ee;
}

.text-white {
  color: #ffffff !important;
}

.news-manset-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-color, #104734);
  color: #ffffff !important;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(16, 71, 52, 0.2);
  transition: all 0.25s ease;
  width: fit-content;
}

.news-manset-btn:hover {
  background-color: #0b3426;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 71, 52, 0.3);
}

.news-manset-btn i {
  font-size: 13px;
  color: #ffffff !important;
  transition: transform 0.25s ease;
}

.news-manset-btn:hover i {
  transform: translateX(4px);
}

.max-w-4xl {
  max-width: 56rem !important; /* 896px */
  margin-left: auto;
  margin-right: auto;
}

.container-article {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

/* Article Content Typography & Spacing */
.container-article article p {
  margin-bottom: 1.5rem !important;
}

.container-article article h3 {
  margin-top: 2.25rem !important;
  margin-bottom: 1rem !important;
}

.container-article article .bg-surface-mint\/70 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}











