/* MP UlubeyTema - Base CSS Variables & Reset */

:root,
[data-theme="light"] {
  /* Common variables regardless of theme */
  --mp-font-family-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mp-font-size-base: 16px;
  --mp-line-height-base: 1.5;
  --mp-font-weight-light: 300;
  --mp-font-weight-normal: 400;
  --mp-font-weight-bold: 700;

  --mp-spacing-1: 0.25rem;
  --mp-spacing-2: 0.5rem;
  --mp-spacing-3: 1rem;
  --mp-spacing-4: 1.5rem;
  --mp-spacing-5: 3rem;

  --mp-border-radius: 0.25rem;
  --mp-border-radius-lg: 0.5rem;

  --mp-container-max-width: 1200px;
  --mp-container-padding: 15px;

  /* Theme specific Light Colors */
  --mp-color-current: currentColor;
  --mp-color-transparent: transparent;
  
  --mp-color-white: #ffffff;
  --mp-color-black: #000000;
  
  --mp-color-primary: #0056b3; 
  --mp-color-primary-hover: #004494;
  
  --mp-color-secondary: #6c757d;
  --mp-color-success: #28a745;
  --mp-color-danger: #dc3545;
  --mp-color-warning: #ffc107;
  --mp-color-info: #17a2b8;
  
  --mp-color-text-main: #333333;
  --mp-color-text-muted: #777777;
  --mp-color-heading: #000000;
  
  --mp-color-bg-body: #f8f9fa;
  --mp-color-bg-surface: #ffffff;
  
  --mp-border-color: #dee2e6;
}

/* Dark Mode Variables */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --mp-color-text-main: #e0e0e0;
    --mp-color-text-muted: #a0a0a0;
    --mp-color-heading: #ffffff;
    
    --mp-color-bg-body: #121212;
    --mp-color-bg-surface: #1e1e1e;
    
    --mp-border-color: #333333;
    
    --mp-color-primary: #3399ff; 
    --mp-color-primary-hover: #1a7fe6;
  }
}

[data-theme="dark"] {
  --mp-color-text-main: #e0e0e0;
  --mp-color-text-muted: #a0a0a0;
  --mp-color-heading: #ffffff;
  
  --mp-color-bg-body: #121212;
  --mp-color-bg-surface: #1e1e1e;
  
  --mp-border-color: #333333;
  
  --mp-color-primary: #3399ff; 
  --mp-color-primary-hover: #1a7fe6;
}

/* =========================================================================
   Reset & Base Styles
   ========================================================================= */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  overflow-x: visible;
  max-width: 100%;
}

main {
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  position: relative;
}

/* #wrapper section should be full width, no overflow */
#wrapper {
  overflow: visible;
  width: 100%;
  position: relative;
}

body {
  margin: 0;
  font-family: var(--mp-font-family-base);
  font-size: var(--mp-font-size-base);
  line-height: var(--mp-line-height-base);
  color: var(--mp-color-text-main);
  background-color: var(--mp-color-bg-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--mp-color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

/* =========================================================================
   Typography
   ========================================================================= */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: var(--mp-spacing-2);
  font-weight: var(--mp-font-weight-bold);
  color: var(--mp-color-heading);
}

p {
  margin-top: 0;
  margin-bottom: var(--mp-spacing-3);
}

/* =========================================================================
   Layout & Grid System (Micro-Grid)
   ========================================================================= */
.mp-container {
  width: 100%;
  max-width: var(--mp-container-max-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--mp-container-padding);
  padding-left: var(--mp-container-padding);
}

.mp-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: 0;
  margin-left: 0;
}

.mp-col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  padding-right: 0;
  padding-left: 0;
}

/* col-xs-12 (Bootstrap/PrestaShop compat): tam genişlik, padding sıfır */
.col-xs-12 {
  width: 100%;
  max-width: 100%;
  padding: 0;
  box-sizing: border-box;
}

/* Home (index) sayfasında content-wrapper tam ekran genişliği */
body#index #content-wrapper,
body#index #wrapper,
body#index section#wrapper {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  overflow: visible;
}

/* Base utility classes can be added here as needed */
.text-center { text-align: center; }
.mt-3 { margin-top: var(--mp-spacing-3); }
.mb-3 { margin-bottom: var(--mp-spacing-3); }
.d-flex { display: flex; }
.d-none { display: none; }

 /* Column Specific Base Widths */
.mp-col-left, .mp-col-right {
  flex: 0 0 25%;
  max-width: 25%;
}
.mp-col-content {
  flex: 0 0 50%;
  max-width: 50%;
}

/* Adjust if one sidebar */
.layout-left-column .mp-col-content,
.layout-right-column .mp-col-content {
  flex: 0 0 75%;
  max-width: 75%;
}

/* Full width */
.layout-full-width .mp-col-content {
  flex: 0 0 100%;
  max-width: 100%;
}

/* =========================================================================
   Hide PrestaShop core hooks (injected for module compatibility)
   ========================================================================= */
.mp-core-header-hooks,
.mp-core-footer-hooks {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* =========================================================================
   Pos Mega Menu - Theme Overrides
   ========================================================================= */
.elementor-widget-mp_header_menu {
  width: 100% !important;
  display: block !important;
}

#_desktop_megamenu,
#_desktop_megamenu .pos-menu-horizontal {
  width: 100% !important;
  max-width: 100% !important;
}

#_desktop_megamenu .pos-menu-horizontal .menu-content {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
}

#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item {
  list-style: none;
  float: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item::before,
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item::marker {
  content: none;
  display: none;
}

/* =========================================================================
   MP Kurumsal Tema - Ek CSS (mp_ulubeytema base üzerine)
   ========================================================================= */

/* === E-Ticaret Elementlerini Gizle === */
.product-prices,
.product-add-to-cart,
.product-quantity,
.product-discount,
.product-pack,
.cart-summary,
.checkout-step,
.product-miniature .product-price-and-shipping,
.product-miniature .product-flags,
.product-miniature .variant-links,
.product-miniature .highlighted-informations,
.wishlist-button-add,
.compare-button,
#blockcart-modal,
.blockcart,
.product-actions .add-to-cart,
.product-prices .product-price,
.product-prices .product-discount { 
    display: none !important; 
}

/* === CMS Sayfa İçerik Tipografisi === */
.page-cms .page-content {
    line-height: 1.8;
    max-width: 960px;
    margin: 0 auto;
    padding: var(--mp-spacing-4) var(--mp-spacing-3);
}

.page-cms .page-content h1,
.page-cms .page-content h2,
.page-cms .page-content h3,
.page-cms .page-content h4 {
    color: #13467e;
    margin-bottom: var(--mp-spacing-3);
    font-weight: 700;
}

.page-cms .page-content p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.page-cms .page-content strong {
    color: #1a202c;
    font-weight: 600;
}

/* === Sayfa Başlığı === */
.page-header {
    padding: var(--mp-spacing-4) 0;
    margin-bottom: var(--mp-spacing-4);
    border-bottom: 1px solid var(--mp-border-color);
}

.page-header h1 {
    font-size: 2rem;
    font-weight: var(--mp-font-weight-bold);
    color: #13467e;
    margin: 0;
}

/* === İletişim Sayfası === */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

/* === Breadcrumb Kurumsal Stil === */
.breadcrumb {
    font-size: 0.875rem;
    color: var(--mp-color-text-muted);
    padding: 20px 0 15px 0;
    margin-top: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--mp-border-color);
    background: transparent;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li a {
    color: #13467e;
    font-weight: 500;
    transition: color 0.2s ease;
}

.breadcrumb li a:hover {
    color: var(--mp-color-primary-hover);
    text-decoration: underline;
}

.breadcrumb li:not(:last-child)::after {
    content: "/";
    margin: 0 10px;
    color: #cbd5e1;
    font-size: 0.85rem;
}

.breadcrumb li span {
    color: #64748b;
    font-weight: 400;
}

/* === Creative Elements Shopping Cart Widgets === */
.elementor-widget-shopping-cart {
    display: none !important;
}

/* =========================================================================
   Megamenu Dropdown and Caret Styling Override
   ========================================================================= */

/* Dropdown Caret chevron arrows using pure CSS - Desktop Only */
@media (min-width: 992px) {
    .dropdown-icon-custom,
    .icon-rt-arrow-down {
        display: inline-block !important;
        vertical-align: middle !important;
        margin-left: 6px !important;
        width: 6px !important;
        height: 6px !important;
        border-right: 1.5px solid #666666 !important;
        border-bottom: 1.5px solid #666666 !important;
        transform: rotate(45deg) translateY(-2px) !important;
        transition: transform 0.3s ease, border-color 0.3s ease !important;
    }
    
    .icon-rt-arrow-down::before {
        content: "" !important; /* Hide original icon font content glyphs */
    }
    
    /* Hover rotation of caret */
    #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item:hover > a .dropdown-icon-custom,
    #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item:hover > a .icon-rt-arrow-down {
        transform: rotate(225deg) translate(-2px, -2px) !important;
        border-color: #13467e !important; /* Theme primary color */
    }
}

@media (max-width: 991px) {
    .dropdown-icon-custom,
    .icon-rt-arrow-down {
        display: none !important;
    }
}

/* Submenu container transitions and position matching mp_tema */
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown {
    position: absolute !important;
    top: 100% !important;
    z-index: 99 !important;
    visibility: hidden !important;
    opacity: 0 !important;
    text-align: left !important;
    padding-top: 10px !important;
    transition: all 0.3s ease !important;
}

#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item:hover > .menu-dropdown {
    visibility: visible !important;
    opacity: 1 !important;
}

/* Dropdown inner container styled beautifully */
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .pos-sub-inner {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    background: #ffffff !important;
    padding: 20px !important;
    border-radius: var(--mp-border-radius, 4px) !important;
    border-bottom: 3px solid #13467e !important;
}

/* Submenu Columns List Resets (Removes bullets/indentation) */
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-dropdown .ul-column,
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-dropdown .ul-column li,
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-dropdown .category-sub-menu,
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-dropdown .category-sub-menu li {
    list-style: none !important;
    list-style-type: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-dropdown .ul-column {
    padding: 0 !important;
    margin: 0 !important;
}

#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-dropdown .submenu-item {
    margin-bottom: 12px !important;
}

/* Submenu Link Styling */
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-dropdown .submenu-item > a {
    color: #253237 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    display: inline-block !important;
    padding: 2px 0 !important;
    text-decoration: none !important;
    transition: color 0.2s ease-in-out, transform 0.2s ease-in-out !important;
}

#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-dropdown .submenu-item > a:hover {
    color: #13467e !important;
    transform: translateX(5px) !important;
}

/* Category sub-menu links */
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-dropdown .submenu-item .category-sub-menu a {
    color: #666666 !important;
    font-weight: 400 !important;
    font-size: 13px !important;
    padding: 4px 0 !important;
    display: block !important;
    transition: color 0.2s ease-in-out, transform 0.2s ease-in-out !important;
}

#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-dropdown .submenu-item .category-sub-menu a:hover {
    color: #13467e !important;
    transform: translateX(5px) !important;
}

/* Elegant 3D opening transitions for all submenus (matching mp_tema/asmayaprak.com.tr) */
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item > .pos-sub-menu,
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown.cat-drop-menu li > .menu-dropdown {
    transform-origin: 0 0 !important;
    transform: rotateX(-75deg) !important;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease !important;
    min-width: 250px !important;
}

#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item:hover > .pos-sub-menu,
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown.cat-drop-menu li:hover > .menu-dropdown {
    transform: rotateX(0deg) !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* CMS Pages Styling (removes top page header gaps for Creative Elements landing pages) */
body#cms #wrapper {
    padding-top: 0 !important;
}
body#cms #content-wrapper {
    padding-top: 0 !important;
}
body#cms .breadcrumb {
    display: none !important;
}
body#cms #content.page-cms {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* ============================================================
   DENK TUZ KİMYA - CUSTOM CSS
   Tema: Kurumsal Kart Tasarımı
   Renkler: #18206F, #F5F8FD, #E30613
   Font: Work Sans
   ============================================================ */

/* ----- TEMEL RESET ----- */
.denk-card * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ----- ANA KART ----- */
.denk-card {
  max-width: 100%;
  width: 100%;
  background: #ffffff;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  border: none;
  margin: 0;
  font-family: 'Work Sans', 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
}

/* ----- İÇERİK ALANI ----- */
.denk-content {
  padding: 3rem 2.8rem;
  background: white;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ----- BAŞLIK (MARKA) ----- */
.denk-brand {
  border-bottom: 2px solid #E30613;
  padding-bottom: 1.2rem;
  margin-bottom: 0.2rem;
}

.denk-brand h1 {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #18206F;
  line-height: 1.1;
  font-family: 'Work Sans', 'Segoe UI', Roboto, sans-serif;
}

.denk-brand h1 .highlight {
  color: #E30613;
  background: rgba(227, 6, 19, 0.06);
  padding: 0 0.2rem;
  border-radius: 4px;
}

/* ----- BÖLÜM BAŞLIKLARI (H3) ----- */
.denk-section {
  border-bottom: 1px solid rgba(24, 48, 111, 0.06);
  padding-bottom: 1.8rem;
}

.denk-section:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.denk-section h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #18206F;
  font-weight: 700;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Work Sans', 'Segoe UI', Roboto, sans-serif;
}

.denk-section h3 span {
  background: #E30613;
  width: 8px;
  height: 8px;
  border-radius: 10px;
  display: inline-block;
  flex-shrink: 0;
}

/* ----- PARAGRAFLAR ----- */
.denk-section p {
  color: #1f2a44;
  line-height: 1.7;
  font-size: 1rem;
  font-weight: 400;
  font-family: 'Work Sans', 'Segoe UI', Roboto, sans-serif;
}

/* ----- ÖZELLİK ETİKETLERİ (FEATURE BADGES) ----- */
.denk-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  margin-top: 0.8rem;
}

.denk-feature-item {
  background: #F5F8FD;
  border-radius: 40px;
  padding: 0.4rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #18206F;
  border: 1px solid rgba(24, 48, 111, 0.06);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Work Sans', 'Segoe UI', Roboto, sans-serif;
}

.denk-feature-item .dot {
  width: 8px;
  height: 8px;
  background: #E30613;
  border-radius: 10px;
  display: inline-block;
  flex-shrink: 0;
}

/* ----- İSTATİSTİK KARTLARI ----- */
.denk-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}

.denk-stat {
  background: #F5F8FD;
  border-radius: 20px;
  padding: 0.8rem 0.5rem;
  text-align: center;
  border: 1px solid rgba(24, 48, 111, 0.04);
}

.denk-stat .number {
  font-weight: 700;
  font-size: 1.4rem;
  color: #18206F;
  letter-spacing: -0.02em;
  font-family: 'Work Sans', 'Segoe UI', Roboto, sans-serif;
}

.denk-stat .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #4a5a7a;
  letter-spacing: 0.4px;
  font-weight: 500;
  font-family: 'Work Sans', 'Segoe UI', Roboto, sans-serif;
}

.denk-stat .red-dot {
  color: #E30613;
  font-weight: 700;
  margin-right: 2px;
}

/* ----- İHRACAT ROZETİ ----- */
.denk-export-badge {
  display: inline-block;
  background: #E30613;
  color: white;
  padding: 0.1rem 0.9rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 0.3rem;
  font-family: 'Work Sans', 'Segoe UI', Roboto, sans-serif;
}

/* ----- ALT BİLGİ (FOOTER NOTE) ----- */
.denk-footer-note {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  background: #F5F8FD;
  padding: 0.9rem 1.4rem;
  border-radius: 60px;
  color: #18206F;
  border-left: 5px solid #E30613;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1.5rem;
  font-family: 'Work Sans', 'Segoe UI', Roboto, sans-serif;
}

.denk-footer-note strong {
  color: #18206F;
  font-weight: 700;
}

.denk-footer-note .ihracat {
  background: #E30613;
  color: white;
  padding: 0.2rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Work Sans', 'Segoe UI', Roboto, sans-serif;
}

/* ============================================================
   RESPONSIVE (MOBİL UYUM)
   ============================================================ */

/* Tablet ve küçük ekranlar */
@media (max-width: 700px) {
  .denk-content {
    padding: 2rem 1.5rem;
  }

  .denk-brand h1 {
    font-size: 2rem;
  }

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

/* Telefon */
@media (max-width: 500px) {
  .denk-stats {
    grid-template-columns: 1fr;
  }

  .denk-features {
    flex-direction: column;
    gap: 0.4rem;
  }

  .denk-footer-note {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   EK NOTLAR:
   - Bu dosya custom CSS olarak kullanılabilir.
   - Yeni içerik eklenirken sadece HTML div yapısı yeterlidir.
   - İlave CSS gerektiğinde bildirilecektir.
   ============================================================ */
   
   /* ============================================================
   DENK TUZ KİMYA - CUSTOM CSS (GÜNCELLEME)
   Kimyasal Ürün Listesi için Grid Sistemi eklendi
   ============================================================ */

/* ----- KİMYASAL LİSTE GRID ----- */
.denk-chemical-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem 1.5rem;
  margin-top: 0.8rem;
}

.denk-chemical-grid .item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(24, 48, 111, 0.04);
}

.denk-chemical-grid .item .bullet {
  color: #E30613;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.denk-chemical-grid .item .name {
  font-size: 0.92rem;
  color: #1f2a44;
  font-weight: 400;
}

/* ----- TABLET (2 SÜTUN) ----- */
@media (max-width: 992px) {
  .denk-chemical-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem 1.2rem;
  }
}

/* ----- MOBİL (1 SÜTUN) ----- */
@media (max-width: 576px) {
  .denk-chemical-grid {
    grid-template-columns: 1fr;
    gap: 0.2rem 0;
  }
  
  .denk-chemical-grid .item {
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(24, 48, 111, 0.06);
  }
}

/* ============================================================
   DENK TUZ KİMYA - ÜRÜN GRUPLARI STİLİ
   ============================================================ */

/* ----- ÜRÜN GRUPLARI ETİKETLERİ (CHIP) ----- */
.denk-product-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  margin-top: 0.5rem;
}

.denk-product-groups .group-tag {
  background: #F5F8FD;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  color: #18206F;
  border: 1px solid rgba(24, 48, 111, 0.06);
  font-weight: 500;
  transition: all 0.2s ease;
  font-family: 'Work Sans', 'Segoe UI', Roboto, sans-serif;
}

.denk-product-groups .group-tag:hover {
  background: #18206F;
  color: #ffffff;
  border-color: #18206F;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(24, 32, 111, 0.10);
}

/* ----- MOBİL UYUM ----- */
@media (max-width: 576px) {
  .denk-product-groups {
    gap: 0.4rem 0.6rem;
  }
  
  .denk-product-groups .group-tag {
    font-size: 0.78rem;
    padding: 0.3rem 0.9rem;
  }
}

/* ============================================================
   DENK TUZ KİMYA - GIDA KİMYASALLARI STİLİ (EK)
   Mevcut style ile uyumludur.
   ============================================================ */

/* ----- GIDA KİMYASALLARI ÖZEL GRID (isteğe bağlı) ----- */
.denk-food-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem 1.5rem;
  margin-top: 0.8rem;
}

.denk-food-grid .item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(24, 48, 111, 0.04);
}

.denk-food-grid .item .bullet {
  color: #E30613;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.denk-food-grid .item .name {
  font-size: 0.92rem;
  color: #1f2a44;
  font-weight: 400;
}

/* ----- TABLET (2 SÜTUN) ----- */
@media (max-width: 992px) {
  .denk-food-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem 1.2rem;
  }
}

/* ----- MOBİL (1 SÜTUN) ----- */
@media (max-width: 576px) {
  .denk-food-grid {
    grid-template-columns: 1fr;
    gap: 0.2rem 0;
  }
  
  .denk-food-grid .item {
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(24, 48, 111, 0.06);
  }
}

