/* 
 * Mertsan Oluklu Mukavva - Custom Clean CSS3
 * Pure CSS replacement for WordPress/Visual Composer/Revolution Slider styles
 */

/* ==========================================================================
   1. CSS Variables & Reset
   ========================================================================== */
:root {
  --primary-color: #2c56a4;
  --primary-hover: #1e3f7c;
  --text-color: #5e5d6c;
  --heading-dark: #333333;
  --heading-secondary: #474545;
  --bg-light: #f7f9fa;
  --bg-footer: #f5fbfc;
  --border-color: #e7e7e7;
  --font-main: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --transition-fast: all 0.3s ease;
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.1);
  --radius-sm: 5px;
  --radius-md: 8px;
}

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

html {
  font-family: var(--font-main);
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: #ffffff;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--primary-hover);
}

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* ==========================================================================
   2. Top Bar
   ========================================================================== */
#top-bar {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  font-size: 13px;
  padding: 10px 0;
  color: var(--text-color);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.top-bar-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-content span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-content i {
  color: var(--primary-color);
  font-size: 13px;
}

.top-bar-content a {
  color: var(--text-color);
  font-weight: 500;
}

.top-bar-content a:hover {
  color: var(--primary-color);
}

.top-bar-socials {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-bar-socials .text {
  font-size: 12px;
  color: #888888;
}

.top-bar-socials .icons {
  display: flex;
  gap: 12px;
}

.top-bar-socials .icons a {
  color: var(--text-color);
  font-size: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f0f2f5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.top-bar-socials .icons a:hover {
  background: var(--primary-color);
  color: #ffffff;
}

/* ==========================================================================
   3. Main Header & Navigation
   ========================================================================== */
#site-header {
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition-fast);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

#site-logo .main-logo img {
  max-width: 240px;
  max-height: 60px;
  object-fit: contain;
}

/* Navigation Menu */
#main-nav .menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

#main-nav .menu > li {
  position: relative;
  padding: 30px 0;
}

#main-nav .menu > li > a {
  color: #333333;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

#main-nav .menu > li:hover > a,
#main-nav .menu > li.active > a {
  color: var(--primary-color);
}

.nav-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}

#main-nav .menu > li:hover > a .nav-arrow {
  transform: rotate(180deg);
}

/* Submenu Dropdown */
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #ffffff;
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--primary-color);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 100;
}

#main-nav .menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu li {
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}

.sub-menu li:last-child {
  border-bottom: none;
}

.sub-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  color: #444444;
  font-size: 14px;
  font-weight: 500;
}

.sub-menu li:hover > a {
  background-color: var(--bg-light);
  color: var(--primary-color);
  padding-left: 25px;
}

/* Nested Submenu (KVKK) */
.sub-menu .sub-menu {
  top: 0;
  left: 100%;
  border-top: 3px solid var(--primary-color);
}

/* Header Action Buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-search-trigger {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-light);
  color: #333333;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.header-search-trigger:hover {
  background: var(--primary-color);
  color: #ffffff;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: #333333;
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ==========================================================================
   4. Search Modal Overlay
   ========================================================================== */
.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 20, 40, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.search-modal.active {
  opacity: 1;
  visibility: visible;
}

.search-modal-content {
  position: relative;
  width: 90%;
  max-width: 650px;
}

.search-close {
  position: absolute;
  top: -60px;
  right: 0;
  color: #ffffff;
  font-size: 45px;
  line-height: 1;
}

.search-form {
  display: flex;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
}

.search-field {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 24px;
  font-family: inherit;
}

.search-field::placeholder {
  color: #aaaaaa;
}

.search-submit {
  background: var(--primary-color);
  color: #ffffff;
  border: none;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.search-submit:hover {
  background: var(--primary-hover);
}

/* ==========================================================================
   5. Hero Corporate Banner Section
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  background: linear-gradient(135deg, #0b182e 0%, #173268 50%, #2c56a4 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(44, 86, 164, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(240, 173, 78, 0.15) 0%, transparent 40%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #f0f4fd;
  margin-bottom: 24px;
}

.hero-badge i {
  color: #ffc107;
}

.hero-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero-title .highlight-text {
  color: #60a5fa;
}

.hero-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: #d1d5db;
  max-width: 780px;
  margin: 0 auto 35px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(44, 86, 164, 0.4);
}

.btn-primary:hover {
  background-color: #1e3f7c;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 86, 164, 0.6);
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  background-color: #ffffff;
  color: var(--primary-color);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Kurumsal İstatistik Kartları Grid */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.hero-stat-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 20px 15px;
  text-align: center;
  transition: var(--transition-fast);
}

.hero-stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: #60a5fa;
  line-height: 1.2;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: #e5e7eb;
}

.scroll-down-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-down-btn a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

/* ==========================================================================
   6. About Us Section (#about-section)
   ========================================================================== */
.about-section {
  padding: 90px 0;
  background-image: url('https://www.mertsanoluklu.com/wp-content/uploads/2020/01/section-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text-content .main-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
}

.main-title .blue-text {
  color: var(--primary-color);
  display: block;
}

.main-title .dark-text {
  color: var(--heading-secondary);
  font-weight: 600;
}

.decorative-dots {
  margin: 15px 0 25px 0;
}

.decorative-dots.center {
  text-align: center;
}

.about-paragraphs p {
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-image-content .image-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-image-content img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image-content:hover img {
  transform: scale(1.03);
}

/* ==========================================================================
   7. Products Category Grid Section
   ========================================================================== */
.products-section {
  padding: 90px 0;
  background-color: var(--bg-light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  position: relative;
  height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 35px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.product-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.92) 80%);
  transition: var(--transition-fast);
}

.product-card:hover .product-card-overlay {
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.96) 75%);
}

.product-card-body {
  position: relative;
  z-index: 2;
}

.product-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--heading-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #333333;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  padding-bottom: 4px;
}

.product-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition-fast);
}

.product-card:hover .product-link {
  color: var(--primary-color);
}

.product-card:hover .product-link::after {
  width: 100%;
}

.product-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.product-card:hover .product-link i {
  transform: translateX(5px);
}

/* ==========================================================================
   8. Value Proposition & Features Section
   ========================================================================== */
.features-section {
  padding: 90px 0;
  background-image: url('https://www.mertsanoluklu.com/wp-content/uploads/2020/01/section-bg2.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.features-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: var(--heading-dark);
  max-width: 900px;
  margin: 0 auto 10px;
  line-height: 1.25;
}

.features-title .blue-text {
  color: var(--primary-color);
}

.features-box {
  max-width: 750px;
  margin: 30px auto 0;
  text-align: center;
}

.features-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 30px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  max-width: 650px;
  margin: 0 auto;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: #444444;
}

.features-list i {
  color: var(--primary-color);
  font-size: 18px;
  margin-top: 3px;
}

/* ==========================================================================
   9. Footer & Bottom Bar
   ========================================================================== */
#footer {
  background-color: var(--bg-footer);
  background-image: url('https://www.mertsanoluklu.com/wp-content/uploads/2020/01/footer-bg-1.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  border-top: 1px solid var(--border-color);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-col .widget-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-dark);
  margin-bottom: 20px;
  position: relative;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  width: 135px;
  height: auto;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.7;
}

.work-hours p,
.office-address,
.contact-info {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 8px;
}

.contact-info a {
  color: var(--text-color);
}

.contact-info a:hover {
  color: var(--primary-color);
}

.mt-4 {
  margin-top: 25px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition-fast);
}

.footer-socials a:hover {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
}

#bottom-bar {
  background-color: rgba(245, 251, 252, 0.9);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: #777777;
}

/* ==========================================================================
   10. Language Switcher & Scroll to Top
   ========================================================================== */
.trp-language-switcher {
  position: fixed;
  bottom: 25px;
  right: 85px;
  z-index: 999;
  background: #ffffff;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-sm);
  cursor: pointer;
  user-select: none;
}

.trp-current-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #333333;
}

.trp-lang-list {
  display: none;
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: 5px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-sm);
  width: 140px;
  overflow: hidden;
}

.trp-language-switcher.open .trp-lang-list {
  display: block;
}

.trp-lang-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #444444;
  transition: var(--transition-fast);
}

.trp-lang-list a:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

#scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

#scroll-top:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
}

/* ==========================================================================
   11. Responsive Media Queries
   ========================================================================== */
@media (max-width: 991px) {
  .hero-title {
    font-size: 34px;
  }

  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-inner {
    height: 75px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  #main-nav {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 999;
  }

  #main-nav.active {
    max-height: calc(100vh - 75px);
    overflow-y: auto;
  }

  #main-nav .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 20px 0;
  }

  #main-nav .menu > li {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid #f0f0f0;
  }

  #main-nav .menu > li > a {
    padding: 14px 25px;
    justify-content: space-between;
  }

  .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    display: none;
    background: var(--bg-light);
    width: 100%;
  }

  .sub-menu.open {
    display: block;
  }

  .sub-menu li a {
    padding-left: 40px;
  }

  .sub-menu .sub-menu li a {
    padding-left: 60px;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  #top-bar {
    display: none; /* Clean mobile header look */
  }

  .hero-section {
    padding: 60px 0 80px;
    min-height: auto;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .main-title {
    font-size: 26px !important;
  }

  .features-title {
    font-size: 24px !important;
  }
}

/* ==========================================================================
   12. About Page Specific Styling
   ========================================================================== */
.page-title-banner {
  background: url('https://www.mertsanoluklu.com/wp-content/uploads/2022/10/featured-title-bg.png') no-repeat center top / cover;
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.page-title-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 22, 39, 0.45);
  z-index: 1;
}

.page-title-banner .container {
  position: relative;
  z-index: 2;
}

.page-title-banner .page-title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.page-title-banner .breadcrumbs {
  font-size: 15px;
  color: #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.page-title-banner .breadcrumbs a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 600;
}

.page-title-banner .breadcrumbs a:hover {
  text-decoration: underline;
  color: #ffffff;
}

.about-page-intro {
  padding: 70px 0 50px;
}

.intro-header .subtitle {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.intro-header .title {
  font-size: 38px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 40px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.story-text .highlight-box {
  background: #f0f4fd;
  border-left: 4px solid var(--primary-color);
  padding: 20px 25px;
  font-size: 17px;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1.6;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 25px;
}

.story-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-color);
}

.story-visual-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
  min-height: 260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.story-gif-bg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 62%;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.story-logo-front {
  position: relative;
  z-index: 2;
  width: 65%;
  height: auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.value-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: #eef4ff;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
}

.value-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: var(--light-text);
  line-height: 1.6;
}

.highlights-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: #f8fafc;
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
}

.highlight-col h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.5;
}

.highlight-col p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-color);
}

/* Vision & Mission Sections */
.vision-section, .mission-section {
  padding: 60px 0;
}

.vision-section {
  background-color: #f7f9fa;
}

.mission-section {
  background-color: #ffffff;
}

.vision-grid, .mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.vision-image img, .mission-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.vision-content h2, .mission-content h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 16px;
}

.vision-content .subtitle, .mission-content .subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 25px;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-list li i {
  color: var(--primary-color);
  font-size: 14px;
}

/* Principles & Accordion Section (Centered) */
.principles-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

.principles-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.principles-section .section-header {
  margin-bottom: 45px;
}

.principles-section .section-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.principles-section .section-desc {
  font-size: 16px;
  color: var(--light-text);
}

.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.accordion-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.accordion-item:hover {
  border-color: var(--primary-color);
}

.accordion-header {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-color);
  cursor: pointer;
  text-align: left;
  transition: var(--transition-fast);
}

.accordion-header:hover {
  color: var(--primary-color);
  background-color: #f1f5f9;
}

.accordion-item.active .accordion-header {
  color: #ffffff;
  background-color: var(--primary-color);
}

.accordion-header .acc-icon {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header .acc-icon {
  transform: rotate(180deg);
  color: #ffffff;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  background-color: #ffffff;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
  padding: 20px 24px 24px;
  border-top: 1px solid #e2e8f0;
}

.accordion-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-color);
  margin: 0;
}

/* About Responsive Adjustments */
@media (max-width: 991px) {
  .about-story-grid, .values-grid, .highlights-two-col, .vision-grid, .mission-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .mission-grid .mission-image {
    order: -1;
  }
}

@media (max-width: 576px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .intro-header .title {
    font-size: 28px;
  }

  .principles-section .section-header h2 {
    font-size: 24px;
  }

  .accordion-header {
    font-size: 16px;
    padding: 16px 18px;
  }
}

/* ==========================================================================
   13. Policy Pages Specific Styling (Kalite, Çevre, OHSAS, FSC)
   ========================================================================== */
.policy-section {
  padding: 70px 0;
  background-color: #ffffff;
}

.policy-section.bg-light, .fsc-section.bg-light {
  background-color: #f7f9fa;
}

.section-title-wrap {
  max-width: 900px;
  margin: 0 auto 50px;
}

.section-title-wrap h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title-wrap h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 12px auto 0;
  border-radius: 2px;
}

.policy-intro {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-color);
  background: #f8fafc;
  border-left: 4px solid var(--primary-color);
  padding: 20px 25px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  text-align: left;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.policy-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 35px 25px;
  text-align: center;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.policy-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.policy-card-icon {
  width: 64px;
  height: 64px;
  background-color: #eef4ff;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: var(--transition-fast);
}

.policy-card-icon.green-icon {
  background-color: #eefdf4;
  color: #16a34a;
}

.policy-card-icon.dark-blue-icon {
  background-color: #e0f2fe;
  color: #0284c7;
}

.policy-card:hover .policy-card-icon {
  background-color: var(--primary-color);
  color: #ffffff;
}

.policy-card:hover .policy-card-icon.green-icon {
  background-color: #16a34a;
  color: #ffffff;
}

.policy-card:hover .policy-card-icon.dark-blue-icon {
  background-color: #0284c7;
  color: #ffffff;
}

.policy-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.policy-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--light-text);
  margin: 0;
}

/* FSC Section */
.fsc-section {
  padding: 70px 0;
}

.fsc-header {
  max-width: 900px;
  margin: 0 auto 40px;
}

.fsc-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 16px;
}

.fsc-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-color);
}

.fsc-content-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

.fsc-image-card {
  background: #ffffff;
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  text-align: center;
}

.fsc-image-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.fsc-list-card {
  background: #ffffff;
  padding: 35px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.fsc-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fsc-check-list li {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-color);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.list-icon-danger {
  color: #dc2626;
  font-size: 16px;
  margin-top: 2px;
}

.list-icon-success {
  color: #16a34a;
  font-size: 16px;
  margin-top: 2px;
}

.fsc-footer-note {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #166534;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .policy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fsc-content-grid {
    grid-template-columns: 1fr;
  }

  .fsc-check-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .section-title-wrap h2, .fsc-header h2 {
    font-size: 26px;
  }
}

/* ==========================================================================
   14. Certificate Gallery Page Specific Styling
   ========================================================================== */
.certificates-section {
  padding: 70px 0;
  background-color: #f8fafc;
}

.certificates-header {
  max-width: 800px;
  margin: 0 auto 50px;
}

.certificates-header h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.certificates-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 12px auto 0;
  border-radius: 2px;
}

.certificates-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--light-text);
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.certificate-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.certificate-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.cert-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: pointer;
  background-color: #f1f5f9;
}

.cert-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.certificate-card:hover .cert-image-wrap img {
  transform: scale(1.06);
}

.cert-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 22, 39, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cert-image-wrap:hover .cert-overlay {
  opacity: 1;
}

.cert-overlay i {
  font-size: 32px;
}

.cert-overlay span {
  font-size: 13px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.cert-info {
  padding: 20px 18px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
}

.cert-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 6px;
}

.cert-info p {
  font-size: 13px;
  color: var(--light-text);
  margin: 0;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-modal-content {
  position: relative;
  max-width: 900px;
  max-height: 90vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.lightbox-close:hover {
  color: var(--primary-color);
}

.lightbox-caption {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

.lightbox-image-container {
  width: 100%;
  max-height: 80vh;
  display: flex;
  justify-content: center;
}

.lightbox-image-container img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

@media (max-width: 1200px) {
  .certificates-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .certificates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .certificates-grid {
    grid-template-columns: 1fr;
  }

  .certificates-header h2 {
    font-size: 26px;
  }
}

/* ==========================================================================
   15. Legal Document Page Styling (Gizlilik Politikası, KVKK)
   ========================================================================== */
.legal-document-section {
  padding: 60px 0 80px;
  background-color: #f8fafc;
}

.legal-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  padding: 50px 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.legal-card-header {
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 25px;
  margin-bottom: 35px;
}

.legal-card-header h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--secondary-color);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.legal-card-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}

.legal-content {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-color);
}

.legal-content p {
  margin-bottom: 18px;
}

.legal-content a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--secondary-color);
}

.lead-text {
  font-size: 16px;
  line-height: 1.8;
  background-color: #f1f5f9;
  padding: 20px 24px;
  border-left: 4px solid var(--primary-color);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 25px;
}

.legal-section-block {
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px dashed var(--border-color);
}

.legal-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-heading i {
  color: var(--primary-color);
  font-size: 18px;
}

.legal-list {
  list-style: none;
  padding-left: 0;
  margin: 15px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.6;
}

.legal-list li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--primary-color);
  font-size: 14px;
}

.company-data-box {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--primary-color);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 25px 0;
}

.company-data-box h5 {
  color: var(--secondary-color);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.company-data-box p {
  margin-bottom: 8px;
  font-size: 14px;
}

.company-data-box p:last-child {
  margin-bottom: 0;
}

/* Legal Tables */
.legal-table-wrapper {
  overflow-x: auto;
  margin: 20px 0 30px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  text-align: left;
  background: #ffffff;
}

.legal-table th {
  background-color: var(--secondary-color);
  color: #ffffff;
  font-weight: 700;
  padding: 12px 18px;
  border-bottom: 2px solid var(--primary-color);
}

.legal-table td {
  padding: 12px 18px;
  border-bottom: 1px solid #e2e8f0;
  color: var(--text-color);
  line-height: 1.6;
  vertical-align: top;
}

.legal-table td:first-child {
  font-weight: 700;
  color: var(--secondary-color);
  background-color: #f8fafc;
  width: 28%;
}

.legal-table tr:last-child td {
  border-bottom: none;
}

.legal-table tr:hover td {
  background-color: #f1f5f9;
}

/* KVKK Application Form Specific Styling */
.kvkk-form-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  padding: 40px 50px;
  max-width: 960px;
  margin: 0 auto;
}

.kvkk-form-section {
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e2e8f0;
}

.kvkk-form-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.kvkk-section-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.kvkk-section-title i {
  color: var(--primary-color);
}

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

.form-grid-full {
  grid-column: span 2;
}

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

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-color);
}

.form-group label .required {
  color: #e11d48;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: #ffffff;
  transition: var(--transition-normal);
  color: var(--text-color);
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(44, 86, 164, 0.15);
}

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

.radio-grid, .checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 15px;
  margin-top: 10px;
}

.radio-item, .checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: #f8fafc;
  cursor: pointer;
  transition: var(--transition-normal);
  font-size: 14px;
  font-weight: 500;
}

.radio-item:hover, .checkbox-item:hover {
  border-color: var(--primary-color);
  background-color: #f1f5f9;
}

.radio-item input[type="radio"], .checkbox-item input[type="checkbox"] {
  accent-color: var(--primary-color);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.form-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 30px;
}

.btn-print {
  background-color: #64748b;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-normal);
}

.btn-print:hover {
  background-color: #475569;
}

.btn-submit {
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-normal);
}

.btn-submit:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

.submission-box {
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-bottom: 25px;
}

.submission-box h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.submission-box ul {
  padding-left: 20px;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .kvkk-form-card {
    padding: 25px 20px;
  }

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

  .form-grid-full {
    grid-column: span 1;
  }

  .radio-grid, .checkbox-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-actions {
    flex-direction: column;
  }

  .btn-print, .btn-submit {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .radio-grid, .checkbox-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .legal-card {
    padding: 30px 25px;
  }

  .legal-card-header h2 {
    font-size: 20px;
  }

  .legal-card-header h3 {
    font-size: 16px;
  }
}

/* ==========================================================================
   Products Catalog & Shop Grid Styling
   ========================================================================== */
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e2e8f0;
}

.shop-toolbar .result-count {
  font-size: 15px;
  color: var(--text-color);
  font-weight: 500;
  margin: 0;
}

.shop-order-select {
  padding: 8px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: #ffffff;
  color: var(--secondary-color);
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition-normal);
}

.shop-order-select:focus {
  outline: none;
  border-color: var(--primary-color);
}

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

.product-card {
  background-color: #ffffff;
  border: none;
  border-radius: 0;
  overflow: visible;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-3px);
}

.product-thumb {
  position: relative;
  overflow: hidden;
  background-color: #ffffff !important;
  aspect-ratio: 1 / 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  box-shadow: none !important;
  border: none !important;
}

.product-thumb a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff !important;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background-color: #ffffff !important;
  transition: transform 0.4s ease;
}

.product-card:hover .product-thumb img {
  transform: scale(1.04);
}

.product-info {
  padding: 12px 0 0 0;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.product-category {
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  color: #64748b;
  margin-bottom: 4px;
  display: block;
  font-weight: 400;
}

.product-title {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0;
  line-height: 1.35;
}

.product-title a {
  color: #1e293b;
  transition: var(--transition-normal);
  text-decoration: none;
}

.product-title a:hover {
  color: var(--primary-color);
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .shop-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}




