/* ================================================
   Tohumsa CMS — Ana CSS Dosyası
   public/assets/css/app.css
   ================================================ */

/* Buraya kendi CSS dosyanın içeriğini yapıştır
   veya @import ile ayrı dosyaları ekle:

   @import url('variables.css');
   @import url('layout.css');
   @import url('components.css');
*/
:root {
   /* Colors */
   --c-navy: #163223;
   --c-green: #C87C31;
   --c-grey: #8E9BAE;
   --c-white: #FFFFFF;
   --c-lab-white: #F8F9FA;
   --c-text-dark: #333333;
   --c-text-light: #666666;

   /* Typography */
   --font-heading: 'Montserrat', sans-serif;
   --font-body: 'Inter', sans-serif;

   /* Layout */
   --nav-height: 80px;
   --container-width: 1200px;
   --transition: all 0.3s ease;
   --radius: 8px;
   --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Reset & Base */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   -webkit-tap-highlight-color: transparent !important;
}

html,
body {
   overflow-x: hidden;
   width: 100%;
   position: relative;
   -webkit-overflow-scrolling: touch;
}

body {
   font-family: var(--font-body);
   color: var(--c-text-dark);
   background-color: var(--c-lab-white);
   line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: var(--font-heading);
   font-weight: 700;
   color: var(--c-navy);
   margin-bottom: 1rem;
}

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

ul {
   list-style: none;
}

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

.container {
   width: 100%;
   max-width: var(--container-width);
   margin: 0 auto;
   padding: 0 15px;
}

/* Ana içerik alanı — fixed header için padding */
.site-main {
   padding-top: var(--nav-height);
}

/* 2 sütun genel ızgara (hakkımızda, araçlar vb.) */
.dashboard-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
}

@media (max-width: 900px) {
   .dashboard-grid {
      grid-template-columns: 1fr;
      gap: 40px;
   }
}

/* --- Hakkımızda Sayfası --- */
.about-image {
   width: 100%;
   height: 400px;
   object-fit: cover;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
}

.value-box {
   background: var(--c-white);
   padding: 30px;
   border-radius: var(--radius);
   text-align: center;
   border-bottom: 4px solid var(--c-green);
   box-shadow: var(--shadow);
}

.value-icon {
   font-size: 3rem;
   margin-bottom: 15px;
   color: var(--c-green);
}

.grid.vizyon-grid {
   grid-template-columns: 1fr 1fr;
   max-width: 1000px;
   margin: 40px auto 0;
}

.grid.team-grid {
   grid-template-columns: repeat(4, 1fr);
   gap: 20px;
   text-align: center;
}

@media (max-width: 1024px) {
   .dashboard-grid {
      grid-template-columns: 1fr;
      gap: 30px;
   }

   .grid.vizyon-grid,
   .grid.team-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
   }

   .about-image {
      height: auto;
      max-height: 400px;
   }
}

@media (max-width: 768px) {

   .grid.vizyon-grid,
   .grid.team-grid {
      grid-template-columns: 1fr;
      gap: 20px;
      max-width: 100%;
   }
}

/* --- İletişim Sayfası --- */
.contact-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
}

@media (max-width: 1100px) {
   .contact-grid {
      grid-template-columns: 1fr;
      gap: 40px;
   }
}

/* --- Blog & Haberler --- */
.blog-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 30px;
}

.blog-card {
   background: var(--c-white);
   border-radius: var(--radius);
   overflow: hidden;
   box-shadow: var(--shadow);
   transition: var(--transition);
   display: flex;
   flex-direction: column;
   border: 1px solid rgba(142, 155, 174, 0.2);
}

.blog-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.blog-img {
   width: 100%;
   height: 250px;
   object-fit: cover;
   display: block;
}

.blog-content {
   padding: 30px;
   display: flex;
   flex-direction: column;
   flex-grow: 1;
}

.blog-date {
   color: var(--c-green);
   font-weight: 700;
   font-size: 0.85rem;
   margin-bottom: 10px;
   text-transform: uppercase;
   letter-spacing: 1px;
}

.blog-title {
   font-size: 1.4rem;
   margin-bottom: 15px;
   line-height: 1.4;
   color: var(--c-navy);
   font-family: var(--font-heading);
}

.blog-desc {
   color: var(--c-text-light);
   margin-bottom: 25px;
   flex-grow: 1;
   line-height: 1.6;
}

.btn-read {
   align-self: flex-start;
   padding: 10px 24px;
   font-size: 0.85rem;
   border-radius: 30px;
   border: 2px solid var(--c-navy);
   color: var(--c-navy);
   font-weight: 700;
   text-decoration: none;
   transition: all 0.3s ease;
   letter-spacing: 0.5px;
}

.btn-read:hover {
   background: var(--c-navy);
   color: var(--c-white);
}

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

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

/* --- Araçlar / Hava Durumu --- */
.weather-container {
   margin-top: 20px;
   padding: 30px;
   background: linear-gradient(135deg, var(--c-navy), #2C3E50);
   border-radius: var(--radius);
   color: var(--c-white);
   text-align: center;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.weather-temp {
   font-size: 3.5rem;
   font-weight: 700;
   margin: 10px 0;
   font-family: var(--font-heading);
   color: var(--c-green);
}

.weather-desc {
   font-size: 1.2rem;
   text-transform: capitalize;
   margin-bottom: 20px;
}

.weather-details {
   display: flex;
   justify-content: space-around;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding-top: 20px;
}

.w-col span {
   display: block;
   font-size: 0.9rem;
   color: rgba(255, 255, 255, 0.7);
}

.w-col strong {
   font-size: 1.1rem;
}

@media (max-width: 768px) {
   .weather-details {
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center !important;
   }

   .w-col {
      min-width: 45%;
   }
}


/* Typography Utilities */
.text-center {
   text-align: center;
}

.text-white {
   color: var(--c-white);
}

.text-green {
   color: var(--c-green);
}

/* Buttons */
.btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   min-height: 48px;
   /* Touch friendly */
   padding: 0 32px;
   font-family: var(--font-heading);
   font-weight: 600;
   font-size: 1rem;
   border-radius: 50px;
   cursor: pointer;
   transition: var(--transition);
   border: none;
   text-transform: uppercase;
   letter-spacing: 0.5px;
}

.btn-primary {
   background-color: var(--c-green);
   color: var(--c-white);
   box-shadow: 0 4px 15px rgba(200, 124, 49, 0.3);
}

.btn-primary:hover {
   background-color: #a66526;
   transform: translateY(-2px);
   box-shadow: 0 6px 20px rgba(200, 124, 49, 0.4);
   color: var(--c-white);
}

.btn-outline {
   background-color: transparent;
   color: var(--c-navy);
   border: 2px solid var(--c-navy);
}

.btn-outline:hover {
   background-color: var(--c-navy);
   color: var(--c-white);
}

.contact-social-icons {
   display: flex;
   gap: 15px;
   margin-top: 25px;
}

.contact-social-btn {
   width: 50px;
   height: 50px;
   background-color: rgba(255, 255, 255, 0.1);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--c-white);
   transition: var(--transition);
   border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-social-btn:hover {
   background-color: var(--c-green);
   color: var(--c-white);
   transform: translateY(-3px);
   border-color: var(--c-green);
}

@media (max-width: 768px) {
   .btn-outline {
      min-height: 42px;
      padding: 0 20px;
      font-size: 0.85rem;
   }
}

/* --- Header Component --- */
#header-placeholder {
   position: relative;
   z-index: 1000;
}

.site-header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: var(--nav-height);
   z-index: 1000;
   background: rgba(255, 255, 255, 0.85);
   backdrop-filter: blur(12px);
   -webkit-backdrop-filter: blur(12px);
   border-bottom: 1px solid rgba(255, 255, 255, 0.3);
   box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
   display: flex;
   align-items: center;
   transition: var(--transition);
}

.site-header .container {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.logo-link {
   display: flex;
   align-items: center;
}

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

/* Desktop Nav — sadece üst seviye liste */
.nav-list {
   display: flex;
   gap: 30px;
   list-style: none;
}

.main-nav a {
   font-family: var(--font-heading);
   font-weight: 600;
   font-size: 0.95rem;
   color: var(--c-navy);
   text-transform: uppercase;
   letter-spacing: 0.5px;
   position: relative;
   padding: 8px 0;
}

.main-nav a::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 0%;
   height: 2px;
   background-color: var(--c-green);
   transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
   width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
   color: var(--c-green);
}

/* Dropdown Menü */
.nav-item-dropdown {
   position: relative;
}

.dropdown-menu {
   display: none;
   position: absolute;
   top: 100%;
   left: 0;
   background: var(--c-white);
   box-shadow: var(--shadow);
   border-radius: 4px;
   padding: 10px 0;
   min-width: 220px;
   z-index: 1001;
   list-style: none;
   margin: 0;
   flex-direction: column;
}

.nav-item-dropdown:hover .dropdown-menu {
   display: flex;
}

.dropdown-menu li a {
   display: block;
   padding: 10px 20px;
   color: var(--c-navy);
   font-size: 0.95rem;
   font-weight: 500;
   white-space: nowrap;
   transition: background 0.2s, color 0.2s;
}

.dropdown-menu li a:hover {
   background: var(--c-lab-white);
   color: var(--c-green);
}

@media (max-width: 1100px) {
   .dropdown-menu {
      position: static;
      box-shadow: none;
      display: none;
      padding-left: 20px;
      background: transparent;
   }

   .nav-item-dropdown.active-mobile-dropdown .dropdown-menu {
      display: flex;
   }

   .dropdown-menu li a {
      color: rgba(255, 255, 255, 0.8);
      padding: 12px 20px;
   }

   .dropdown-menu li a:hover {
      color: var(--c-green);
      background: transparent;
   }
}


/* Mobile Toggle */
.menu-toggle {
   display: none;
   background: none;
   border: none;
   cursor: pointer;
   width: 44px;
   height: 44px;
   position: relative;
   z-index: 1001;
}

.hamburger {
   display: block;
   width: 24px;
   height: 2px;
   background: var(--c-navy);
   position: relative;
   transition: var(--transition);
   margin: 0 auto;
}

.hamburger::before,
.hamburger::after {
   content: '';
   position: absolute;
   left: 0;
   width: 24px;
   height: 2px;
   background: var(--c-navy);
   transition: var(--transition);
}

.hamburger::before {
   top: -8px;
}

.hamburger::after {
   bottom: -8px;
}

.menu-toggle.is-active .hamburger,
.menu-toggle.is-active .hamburger::before,
.menu-toggle.is-active .hamburger::after {
   background: var(--c-white);
}

.menu-toggle.is-active .hamburger {
   background: transparent;
}

.menu-toggle.is-active .hamburger::before {
   top: 0;
   transform: rotate(45deg);
}

.menu-toggle.is-active .hamburger::after {
   bottom: 0;
   transform: rotate(-45deg);
}


/* --- Section Utilities ---  arkadaki çizgiler backrgound */
.bg-grid {
   background-color: var(--c-lab-white);
   background-image:
      linear-gradient(rgba(142, 155, 174, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(142, 155, 174, 0.04) 1px, transparent 1px);
   background-size: 40px 40px;
}

.section-header {
   display: flex;
   justify-content: space-between;
   align-items: flex-end;
   margin-bottom: 40px;
   gap: 20px;
   flex-wrap: wrap;
}

@media (max-width: 768px) {
   .section-header {
      flex-direction: column;
      align-items: center;
      text-align: center;
   }
}

/* --- Hero Section --- */
.hero {
   position: relative;
   height: 100vh;
   min-height: 600px;
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   color: var(--c-white);
   background-color: var(--c-navy);
   margin-top: calc(-1 * var(--nav-height));
   padding-top: var(--nav-height);
   overflow: hidden;
}

.hero-bg {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   z-index: 0;
   opacity: 0.6;
   /* Dark overlay effect */
}

.hero-content {
   position: relative;
   z-index: 1;
   max-width: 800px;
   padding: 0 20px;
}

.hero h1 {
   color: var(--c-white);
   font-size: clamp(2.5rem, 5vw, 4.5rem);
   line-height: 1.1;
   margin-bottom: 24px;
   text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
   font-size: clamp(1.1rem, 2vw, 1.5rem);
   margin-bottom: 40px;
   opacity: 0.9;
   text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* --- Section Formatting --- */
.section {
   padding: 100px 0;
}

.section-header {
   text-align: center;
   margin-bottom: 60px;
}

.section-title {
   font-size: 2.5rem;
   position: relative;
   display: inline-block;
   padding-bottom: 15px;
}

.section-title::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 50%;
   transform: translateX(-50%);
   width: 60px;
   height: 4px;
   background-color: var(--c-green);
   border-radius: 2px;
}

/* --- Grid System (Card Layout) --- */
.grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 30px;
}

.card {
   background: var(--c-white);
   border-radius: var(--radius);
   overflow: hidden;
   box-shadow: var(--shadow);
   transition: var(--transition);
   display: flex;
   flex-direction: column;
   position: relative;
   border: 1px solid rgba(142, 155, 174, 0.1);
}

.card:hover {
   transform: translateY(-10px);
   box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.card-img-wrapper {
   position: relative;
   height: 240px;
   overflow: hidden;
}

.card-img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.5s ease;
}

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

.card-body {
   padding: 30px;
   flex-grow: 1;
   display: flex;
   flex-direction: column;
}

.card-title {
   font-size: 1.5rem;
   margin-bottom: 15px;
}

.card-text {
   color: var(--c-text-light);
   margin-bottom: 25px;
   flex-grow: 1;
}

/* --- AR-GE Timeline --- */
.timeline {
   position: relative;
   max-width: 800px;
   margin: 0 auto;
   padding: 40px 0;
}

.timeline::before {
   content: '';
   position: absolute;
   top: 0;
   bottom: 0;
   left: 50%;
   width: 2px;
   background: var(--c-green);
   transform: translateX(-50%);
}

.timeline-item {
   position: relative;
   margin-bottom: 60px;
   width: 50%;
   padding-right: 40px;
}

.timeline-item:nth-child(even) {
   margin-left: auto;
   padding-right: 0;
   padding-left: 40px;
}

.timeline-icon {
   position: absolute;
   top: 0;
   right: -24px;
   width: 48px;
   height: 48px;
   background: var(--c-navy);
   border: 4px solid var(--c-lab-white);
   border-radius: 50%;
   z-index: 1;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--c-white);
   font-family: var(--font-heading);
   font-weight: bold;
}

.timeline-item:nth-child(even) .timeline-icon {
   left: -24px;
   right: auto;
}

.timeline-content {
   background: var(--c-white);
   padding: 30px;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
}

.timeline-content h3 {
   color: var(--c-green);
}

.timeline-img {
   width: 100%;
   height: 200px;
   object-fit: cover;
   border-radius: var(--radius);
   margin-bottom: 15px;
}


/* --- Footer Component --- */
.site-footer {
   background-color: var(--c-navy);
   color: var(--c-white);
   padding: 80px 0 40px;
   margin-top: 60px;
}

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

.footer-col h4 {
   color: var(--c-white);
   font-size: 1.2rem;
   margin-bottom: 25px;
   position: relative;
   padding-bottom: 10px;
}

.footer-col h4::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 30px;
   height: 2px;
   background: var(--c-green);
}

.footer-col p,
.footer-col li {
   color: rgba(255, 255, 255, 0.7);
   margin-bottom: 12px;
   font-size: 0.95rem;
}

.footer-col a {
   color: rgba(255, 255, 255, 0.7);
}

.footer-col a:hover {
   color: var(--c-green);
}

.footer-bottom {
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding-top: 20px;
   text-align: center;
   color: rgba(255, 255, 255, 0.5);
   font-size: 0.9rem;
}

/* Newsletter Input */
.newsletter-form {
   display: flex;
   margin-top: 15px;
}

.newsletter-form input {
   flex-grow: 1;
   padding: 12px 15px;
   border: none;
   border-radius: 4px 0 0 4px;
   font-family: var(--font-body);
}

.newsletter-form button {
   background: var(--c-green);
   color: var(--c-white);
   border: none;
   padding: 0 20px;
   border-radius: 0 4px 4px 0;
   cursor: pointer;
   font-weight: 600;
   transition: var(--transition);
}

.newsletter-form button:hover {
   background: #a66526;
}

/* Minimalist Form Elements */
.form-group {
   margin-bottom: 24px;
}

.form-label {
   display: block;
   font-weight: 600;
   margin-bottom: 8px;
   color: var(--c-navy);
}

.form-control {
   width: 100%;
   padding: 14px 18px;
   border: 1px solid var(--c-grey);
   border-radius: var(--radius);
   font-family: var(--font-body);
   font-size: 1rem;
   transition: var(--transition);
   background-color: var(--c-white);
}

.form-control:focus {
   outline: none;
   border-color: var(--c-green);
   box-shadow: 0 0 0 3px rgba(200, 124, 49, 0.1);
}

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


/* --- Responsive Mobile First overrides --- */
@media (max-width: 1100px) {
   .grid {
      grid-template-columns: repeat(2, 1fr);
   }

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

   .timeline::before {
      left: 40px;
   }

   .timeline-item {
      width: 100%;
      padding-left: 100px;
      padding-right: 0;
   }

   .timeline-item:nth-child(even) {
      padding-left: 100px;
   }

   .timeline-icon {
      left: 20px !important;
   }
}

@media (max-width: 1100px) {

   /* Mobile Menu Button */
   .menu-toggle {
      display: block;
   }

   /* Mobile Drawer Overlay */
   .nav-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(4px);
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
   }

   .nav-overlay.is-active {
      opacity: 1;
      visibility: visible;
   }

   /* The actual side drawer */
   .main-nav {
      position: fixed;
      top: 0;
      right: -320px;
      /* Slide from right */
      width: 300px;
      max-width: 80vw;
      height: 100vh;
      background: var(--c-navy);
      box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      padding: 0;
      transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
      z-index: 1000;
      overflow-y: auto;
   }

   .main-nav.is-open {
      right: 0;
   }

   /* Mobile Nav Header inside drawer */
   .mobile-nav-header {
      display: flex !important;
      justify-content: space-between;
      align-items: center;
      padding: 24px 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      margin-bottom: 20px;
   }

   .mobile-logo-img {
      height: 30px;
      width: auto;
   }

   .menu-close {
      background: transparent;
      border: none;
      color: var(--c-white);
      font-size: 2rem;
      line-height: 1;
      cursor: pointer;
      padding: 5px;
   }

   .nav-list {
      flex-direction: column;
      text-align: left;
      gap: 0;
      padding: 0 20px;
   }

   .main-nav li {
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
   }

   .main-nav a {
      color: var(--c-white);
      font-size: 1.1rem;
      display: block;
      padding: 16px 0;
      font-weight: 500;
   }

   /* Reset link active bar for mobile */
   .main-nav a::after {
      display: none;
   }

   .main-nav a.active {
      color: var(--c-green);
   }

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

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

   .section {
      padding: 60px 0;
   }
}

/* Hide desktop elements on desktop, show on mobile inside drawer */
.mobile-nav-header {
   display: none;
}

/* Tools/Widgets Layout */
.dashboard-grid {
   display: grid;
   grid-template-columns: 2fr 1fr;
   gap: 30px;
}

.widget-card {
   background: var(--c-white);
   border-radius: var(--radius);
   padding: 30px;
   box-shadow: var(--shadow);
   border-top: 4px solid var(--c-navy);
}

.widget-card.highlight {
   border-top-color: var(--c-green);
}

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

/* --- Catalog Category Cards --- */
.catalog-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 30px;
}

@media (max-width: 1100px) {
   .catalog-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
   }
}

@media (max-width: 600px) {
   .catalog-grid {
      grid-template-columns: 1fr;
      gap: 20px;
   }
}

/* Responsive Grid Utility */
.grid-3 {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 30px;
}

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

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

.catalog-card {
   background: var(--c-white);
   border-radius: var(--radius);
   overflow: hidden;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   text-decoration: none;
   display: flex;
   flex-direction: column;
   border: 1px solid rgba(142, 155, 174, 0.1);
}

.catalog-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.catalog-img-wrapper {
   padding: 0;
   background: var(--c-white);
   display: flex;
   align-items: center;
   justify-content: center;
   height: 250px;
   overflow: hidden;
}

.catalog-img-wrapper img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.catalog-title {
   padding: 15px 20px;
   text-align: center;
   color: var(--c-navy);
   font-weight: 600;
   font-size: 1.1rem;
   border-top: 1px solid rgba(142, 155, 174, 0.1);
   margin: 0;
}

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

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

/* --- Yeni Geniş Ürün Listeleme (4 Sütun Görünümlü 2'li Blok) --- */
.catalog-grid-wide {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 25px;
}

.catalog-card-wide {
   grid-column: span 2;
   background: var(--c-white);
   border-radius: var(--radius);
   overflow: hidden;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   text-decoration: none;
   display: flex;
   min-height: 280px;
   border: 1px solid rgba(142, 155, 174, 0.1);
}

.catalog-card-wide:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.catalog-card-wide .card-left {
   width: 45%;
   display: flex;
   flex-direction: column;
   border-right: 1px solid rgba(142, 155, 174, 0.1);
   background: #fff;
}

.catalog-card-wide .card-img-box {
   flex: 1;
   overflow: hidden;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 10px;
}

.catalog-card-wide .card-img-box img {
   width: 100%;
   height: 100%;
   object-fit: contain;
   transition: transform 0.5s ease;
}

.catalog-card-wide:hover .card-img-box img {
   transform: scale(1.05);
}

.catalog-card-wide .card-title {
   padding: 15px;
   text-align: center;
   background: var(--c-lab-white);
   margin: 0;
   font-size: 1.1rem;
   color: var(--c-navy);
   font-weight: 700;
}

.catalog-card-wide .card-right {
   width: 55%;
   padding: 15px;
   background: #fff;
   display: flex;
   flex-direction: column;
   justify-content: center;
}

.card-specs {
   display: flex;
   flex-direction: column;
   gap: 8px;
}

.card-spec-item {
   padding: 8px 12px;
   display: flex;
   flex-direction: column;
   gap: 2px;
}

.card-spec-item.highlighted {
   background: var(--c-lab-white);
   border-radius: 6px;
}

.card-spec-item strong {
   font-size: 0.75rem;
   text-transform: uppercase;
   color: var(--c-navy);
   letter-spacing: 0.5px;
   opacity: 0.8;
}

.card-spec-item span {
   font-size: 0.9rem;
   color: var(--c-text-light);
   line-height: 1.3;
}

/* Responsive */
@media (max-width: 1200px) {
   .catalog-card-wide .card-left { width: 40%; }
   .catalog-card-wide .card-right { width: 60%; }
}

@media (max-width: 1024px) {
   .catalog-grid-wide {
      grid-template-columns: repeat(2, 1fr);
   }
   .catalog-card-wide {
      grid-column: span 2;
   }
}

@media (max-width: 650px) {
   .catalog-grid-wide {
      grid-template-columns: 1fr;
   }
   .catalog-card-wide {
      grid-column: span 1;
      flex-direction: column;
      min-height: auto;
   }
   .catalog-card-wide .card-left,
   .catalog-card-wide .card-right {
      width: 100%;
   }
   .catalog-card-wide .card-left {
      border-right: none;
      border-bottom: 1px solid rgba(142, 155, 174, 0.1);
   }
   .catalog-card-wide .card-img-box {
      height: 200px;
   }
}

/* --- Mini Haber Kartı (Anasayfa Blog Önizleme) --- */
.mini-news-card {
   background: var(--c-white);
   border-radius: var(--radius);
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
   overflow: hidden;
   border: 1px solid rgba(142, 155, 174, 0.1);
   transition: var(--transition);
}

.mini-news-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mini-news-img {
   height: 150px;
   width: 100%;
   object-fit: cover;
   display: block;
}

.mini-news-body {
   padding: 20px;
}

.mini-news-body h4 a {
   color: var(--c-navy);
   transition: var(--transition);
}

.mini-news-body h4 a:hover {
   color: var(--c-green);
}

/* ================================================
   Ürünler Sayfası
   ================================================ */

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

.product-card {
   background: var(--c-white);
   border-radius: var(--radius);
   overflow: hidden;
   box-shadow: var(--shadow);
   transition: var(--transition);
   display: flex;
   flex-direction: column;
   border: 1px solid rgba(142, 155, 174, 0.15);
}

.product-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.product-img-wrap {
   position: relative;
   overflow: hidden;
}

.product-img {
   width: 100%;
   height: 220px;
   object-fit: cover;
   display: block;
   transition: transform 0.4s ease;
}

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

.product-badge {
   position: absolute;
   top: 14px;
   left: 14px;
   background: var(--c-green);
   color: var(--c-white);
   font-size: 0.72rem;
   font-weight: 700;
   letter-spacing: 0.5px;
   padding: 4px 12px;
   border-radius: 30px;
   text-transform: uppercase;
}

.product-badge-green {
   background: #E07B28;
}

.product-body {
   padding: 25px;
   display: flex;
   flex-direction: column;
   flex-grow: 1;
}

.product-cat {
   color: var(--c-green);
   font-size: 0.75rem;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 1px;
   margin-bottom: 8px;
   display: block;
}

.product-name {
   font-size: 1.2rem;
   color: var(--c-navy);
   font-family: var(--font-heading);
   margin-bottom: 10px;
   line-height: 1.4;
}

.product-desc {
   color: var(--c-text-light);
   font-size: 0.9rem;
   line-height: 1.6;
   flex-grow: 1;
   margin-bottom: 15px;
}

.product-specs {
   display: flex;
   gap: 8px;
   flex-wrap: wrap;
   margin-bottom: 20px;
}

.product-specs span {
   background: var(--c-lab-white);
   border: 1px solid rgba(142, 155, 174, 0.2);
   padding: 4px 10px;
   border-radius: 20px;
   font-size: 0.78rem;
   color: var(--c-text-light);
   font-weight: 500;
}

.btn-outline-sm {
   display: inline-block;
   padding: 10px 22px;
   border: 2px solid var(--c-navy);
   color: var(--c-navy);
   border-radius: 30px;
   font-size: 0.8rem;
   font-weight: 700;
   letter-spacing: 0.5px;
   text-decoration: none;
   text-align: center;
   transition: all 0.3s ease;
   align-self: flex-start;
}

.btn-outline-sm:hover {
   background: var(--c-navy);
   color: var(--c-white);
}

/* Kategori Filtre Butonları */
.filter-btn {
   padding: 10px 24px;
   border: 2px solid rgba(142, 155, 174, 0.3);
   background: var(--c-white);
   border-radius: 30px;
   font-size: 0.85rem;
   font-weight: 600;
   color: var(--c-text-light);
   cursor: pointer;
   white-space: nowrap;
   transition: all 0.25s ease;
   font-family: var(--font-body);
}

.filter-btn:hover {
   border-color: var(--c-navy);
   color: var(--c-navy);
}

.filter-btn.active {
   background: var(--c-navy);
   border-color: var(--c-navy);
   color: var(--c-white);
}

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

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