/* ═══════════════════════════════════════════════
   HARPUT LPG — Marka Renk Paleti
   Lacivert : #0d1b2a  |  Yeşil : #6abf3e  |  Cyan : #00c8e0
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy:   #0d1b2a;
  --navy2:  #162032;
  --green:  #6abf3e;
  --green2: #5aab30;
  --cyan:   #00c8e0;
  --cyan2:  #00afc5;
  --light:  #f4f7f9;
  --border: #e2e8f0;
  --text:   #334155;
  --muted:  #64748b;
  --white:  #ffffff;
  --shadow: 0 4px 24px rgba(13,27,42,0.10);
  --radius: 10px;
}

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

html, body {
  height: 100%;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--light);
  margin: 0; padding: 0;
}

a { color: var(--navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--green); }
img { max-width: 100%; }

/* ── HEADER ── */
#header {
  background: var(--white);
  padding: 0;
  box-shadow: 0 2px 16px rgba(13,27,42,0.08);
}

#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 24px;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 130px;
}

#logo { padding: 0; line-height: 1; margin-right: auto; position: relative; z-index: 1; }
#logo a { 
  display: inline-flex; 
  align-items: center; 
  width: 240px; 
  height: 80px; 
}
#logo a img {
  height: 180px;
  width: auto;
  max-width: none;
  display: block;
  pointer-events: none;
  object-fit: contain;
  object-position: left center;
  transform: scale(1.4);
  transform-origin: left center;
  margin-top: -10px;
  margin-bottom: -10px;
  filter: drop-shadow(0 2px 10px rgba(0,200,224,0.15));
  transition: transform .25s, filter .25s;
}
#logo a:hover img {
  transform: scale(1.45);
  transform-origin: left center;
  filter: drop-shadow(0 4px 20px rgba(106,191,62,0.45));
}

/* HEADER SAĞ — kullanıcı + sepet + arama */
.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  position: relative;
  z-index: 10;
}

/* Kullanıcı linkleri */
ul.header_user {
  display: flex;
  list-style: none;
  margin: 0; padding: 0;
  gap: 8px;
}
ul.header_user li a {
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all .2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
ul.header_user li a:hover {
  background: var(--green);
  color: var(--white) !important;
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(106,191,62,0.25);
}
ul.header_user li a:hover i { color: var(--white) !important; }
ul.header_user li a i { margin: 0; font-size: 14px; color: var(--cyan); transition: color .2s; }

/* Alt satır: arama + sepet */
.header-bottom-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Arama kutusu */
.header_search {
  display: flex;
  align-items: center;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 30px; /* Pill shape */
  overflow: hidden;
  height: 42px;
  width: 240px;
  transition: all .3s ease;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}
.header_search form {
  display: flex;
  width: 100%;
  height: 100%;
}
.header_search:focus-within {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(106,191,62,0.15);
  width: 260px; /* Expands slightly on focus */
}
.header_search #search-field {
  flex: 1;
  height: 100%;
  background: transparent;
  border: none;
  padding: 0 12px;
  color: var(--text);
  font-size: 13px;
  outline: none;
}
.header_search #search-field::placeholder { color: var(--muted); }
.header_search #search-submit {
  background: transparent;
  border: none;
  padding: 0 12px;
  color: var(--muted);
  cursor: pointer;
  font-size: 15px;
  transition: color .2s;
}
.header_search #search-submit:hover { color: var(--cyan); }

/* Sepet butonu */
.header_cart a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white) !important;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  transition: background .2s, transform .15s;
  box-shadow: 0 2px 8px rgba(106,191,62,0.3);
  height: 40px;
  width: auto;
}
.header_cart a:hover {
  background: var(--green2);
  transform: translateY(-1px);
}
.header_cart a i {
  width: auto; height: auto;
  background: none;
  color: var(--white);
  font-size: 16px;
  line-height: 1;
  margin: 0;
}
.header_cart a b, .header_cart a span { color: var(--white); line-height: 1; }
.header_cart a span.money { font-weight: 700; }

/* NAVİGASYON */
#navigation {
  background: #0a1824;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin: 0;
}
#navigation .container {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0 24px;
}
.sf-menu > li { float: left; }
.sf-menu > li > a {
  height: 50px;
  display: block;
  padding: 0 20px;
  border: none;
  border-right: 1px solid rgba(255,255,255,0.07);
  font: 500 14px/50px 'Inter', Arial, sans-serif;
  color: rgba(255,255,255,0.80);
  transition: background .2s, color .2s;
  letter-spacing: .3px;
}
.sf-menu > li > a:hover,
.sf-menu > li.active > a {
  background: rgba(106,191,62,0.12);
  color: var(--green);
}
/* dropdown */
.sf-menu ul {
  width: 210px !important;
  padding: 10px 0;
  background: var(--navy2);
  border-top: 3px solid var(--green);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  top: 50px;
}
.sf-menu ul li { padding: 0; }
.sf-menu ul li a {
  display: block;
  padding: 9px 20px;
  color: rgba(255,255,255,0.70);
  font-size: 13px;
  transition: background .15s, color .15s;
}
.sf-menu ul li a:hover { background: rgba(106,191,62,0.12); color: var(--green); }

/* ── BUTONLAR ── */
.btn, .btn-primary, .btn-info {
  display: inline-block;
  padding: 9px 20px;
  background: var(--navy);
  color: var(--white) !important;
  border: none !important;
  border-radius: 8px;
  font: 600 13px 'Inter', Arial, sans-serif;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(13,27,42,0.18);
}
.btn:hover, .btn-primary:hover, .btn-info:hover {
  background: var(--green);
  color: var(--navy) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(106,191,62,0.35);
}
.btn.btn-sm { padding: 6px 14px; font-size: 12px; }
.btn a, .btn:hover a { background: none !important; border: none !important; }

/* ── FLASH MESAJLARI ── */
.alert {
  border-radius: 8px;
  border: none;
  padding: 12px 18px;
  margin: 14px 0;
  font-size: 13px;
}
.alert-success { background: #d1fae5; color: #065f46; border-left: 4px solid var(--green); }
.alert-danger  { background: #fee2e2; color: #991b1b; border-left: 4px solid #ef4444; }

/* ── SHOWCASE (Ana Sayfa Banner) ── */
#showcase { padding: 28px 0 0 0; }
.slider_wrap {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, #1a3a2a 100%);
  border-radius: var(--radius);
  border: none;
  box-shadow: var(--shadow);
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.slider_wrap::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(106,191,62,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.slider_wrap::after {
  content: '';
  position: absolute;
  bottom: -30px; left: -30px;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(0,200,224,0.14) 0%, transparent 70%);
  border-radius: 50%;
}
.slider_wrap h2 {
  font-size: 32px !important;
  font-weight: 800 !important;
  color: var(--white) !important;
  margin: 0 0 12px 0 !important;
  line-height: 1.2;
}
.slider_wrap p { font-size: 16px !important; color: rgba(255,255,255,0.72) !important; margin: 0 0 24px 0 !important; }
.slider_wrap .btn {
  background: var(--green);
  color: var(--navy) !important;
  font-size: 14px;
  padding: 11px 28px;
}
.slider_wrap .btn:hover { background: #7dd44f; }

/* Kategori vitrin kutuları */
.custom_showcase a {
  display: block;
  padding: 20px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.custom_showcase a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(13,27,42,0.14);
  border-color: var(--green);
}
.custom_showcase a h3 {
  padding: 12px 0 0 0;
  font: 600 15px 'Inter', Arial, sans-serif !important;
  color: var(--navy) !important;
  text-transform: none;
  min-height: auto;
  transition: color .2s;
}
.custom_showcase a:hover h3 { color: var(--green) !important; }
.custom_showcase3, .custom_showcase4 { margin: 18px 0 0 0; }

/* ── ÜRÜN GRID ── */
.page_heading {
  font: 700 22px 'Inter', Arial, sans-serif !important;
  color: var(--navy) !important;
  padding: 24px 0 16px 0 !important;
  border-bottom: 3px solid var(--green);
  margin-bottom: 20px !important;
}

.product-grid { display: flex; flex-wrap: wrap; gap: 20px; }
.product-grid .product { flex: 0 0 calc(25% - 15px); }
@media(max-width:992px){ .product-grid .product { flex: 0 0 calc(33.33% - 14px); } }
@media(max-width:767px){ .product-grid .product { flex: 0 0 calc(50% - 10px); } }
@media(max-width:480px){ .product-grid .product { flex: 0 0 100%; } }

#main_content .product {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .22s, box-shadow .22s;
  margin-top: 0;
}
#main_content .product:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(13,27,42,0.14);
}
#main_content .product .product_img a {
  display: block;
  padding: 16px;
  border: none;
  background: var(--light);
  box-shadow: none;
}
#main_content .product .product_img a:hover { box-shadow: none; }
#main_content .product .product_img img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}
#main_content .product .product_name {
  padding: 14px 14px 4px 14px;
}
#main_content .product .product_name a {
  font-weight: 600;
  font-size: 13px;
  color: var(--navy);
  text-transform: capitalize;
}
#main_content .product .product_name a:hover { color: var(--green); }
#main_content .product .product_desc { padding: 4px 14px; color: var(--muted); font-size: 12px; }
#main_content .product .product_price_sale .money { color: var(--green); }
#main_content .product form { padding: 10px 14px 14px; }

/* İndirim rozeti */
#main_content .product .product_img a .sale span {
  background: var(--green);
  color: var(--navy);
  font-weight: 700;
}

/* ── ÜRÜN DETAY ── */
.product_wrap {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 28px;
}
.product_image { border: 1px solid var(--border) !important; border-radius: 8px; overflow: hidden; background: var(--light); }
.product_wrap .product_name { font-size: 24px !important; font-weight: 700 !important; color: var(--navy) !important; margin-bottom: 6px; }
.product_wrap .product-price .money { font-size: 26px !important; color: var(--green) !important; font-weight: 700; }
.product_wrap .product_details { border-color: var(--border) !important; padding: 12px 0 !important; }
.product_wrap .product_details > div { padding: 4px 0; font-size: 13px; color: var(--muted); }
.product_wrap .product_details strong { color: var(--navy); font-weight: 600; }
#product_description h4 { font-weight: 700; color: var(--navy); margin-bottom: 8px; }
#product_description p { color: var(--text); line-height: 1.7; white-space: pre-line; }

/* ── SEPETİN GÖRÜNÜMÜ ── */
.cart-list > .row { border-color: var(--border); }
.cart_subtotal h3 { border-color: var(--border); color: var(--navy); }
.cart-list .item_remove a { color: #ef4444; }

/* Sepet üst bar - ürün sayısı ve tümünü temizle */
.cart-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 20px;
  margin-bottom: 20px;
}
.cart-item-count {
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-item-count i {
  color: var(--green);
  font-size: 16px;
}
.cart-clear-btn {
  background: none;
  border: 1.5px solid #ef4444;
  color: #ef4444;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', Arial, sans-serif;
}
.cart-clear-btn:hover {
  background: #ef4444;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}
.cart-clear-btn i {
  font-size: 14px;
}

/* Tek ürün kaldırma butonu */
.cart-remove-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  color: #94a3b8;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  padding: 0;
}
.cart-remove-btn:hover {
  background: #fef2f2;
  border-color: #ef4444;
  color: #ef4444;
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.2);
}

/* Sepet item hover efekti */
.cart-item:hover {
  border-color: var(--green) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06) !important;
}

@media(max-width:767px) {
  .cart-top-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 14px 16px;
  }
  .cart-item {
    flex-direction: column !important;
    gap: 12px !important;
    padding: 16px !important;
  }
}

/* ── FOOTER ── */
#footer {
  background: var(--navy);
  margin: 50px 0 0 0;
  padding: 0;
}
.custom_footer h3 {
  padding: 40px 0 0 0;
  font: 600 15px 'Inter', Arial, sans-serif !important;
  color: var(--cyan) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 10px;
  margin-bottom: 8px;
}
.custom_footer ul { padding: 8px 0 0 0; }
.custom_footer ul li { padding: 4px 0; }
.custom_footer ul li a { color: rgba(255,255,255,0.60); font-size: 13px; }
.custom_footer ul li a:hover { color: var(--green); }
.custom_footer4 ul li { color: rgba(255,255,255,0.60); font-size: 13px; padding: 4px 0; }
.custom_footer4 ul li i { color: var(--green); margin-right: 6px; }
.custom_footer5 ul li a { color: rgba(255,255,255,0.55); }
.custom_footer5 ul li a:hover { color: var(--cyan); }
#footer .copyright {
  padding: 20px 0 25px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 30px;
}
#footer .copyright a { color: rgba(255,255,255,0.45); }
#footer .copyright a:hover { color: var(--cyan); }

/* ── SIDEBAR / WİDGET ── */
.column .widget h3.widget_header { color: var(--navy) !important; font-weight: 700; }
.column .widget ul.list { border-color: var(--border); }
.column .widget ul.list li { border-color: var(--border); }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 20px;
  font-size: 13px;
}

/* ── PAGINATION ── */
#pagination { border-color: var(--border); border-radius: 8px; overflow: hidden; }
#pagination span { border-color: var(--border); }
#pagination span a { color: var(--navy); }
#pagination span a:hover { background: var(--light); }
#pagination span.current { background: var(--navy); color: var(--white); font-weight: 700; }

/* ── FORM ALANLARI ── */
input[type="text"], input[type="email"], input[type="number"],
input[type="password"], textarea, select {
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 9px 12px;
  font-size: 13px;
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,200,224,0.12);
}

/* ── YARDIMCI ── */
.text-center { text-align: center; }
.mt-2 { margin-top: 15px; } .mt-3 { margin-top: 30px; } .mb-2 { margin-bottom: 15px; }

/* ── RESPONSİF ── */
@media(max-width:767px){
  #header .container { flex-direction: column; align-items: stretch; gap: 16px; padding: 16px; }
  #logo { text-align: center; margin-right: 0; }
  #logo a img { height: 140px; max-width: 100%; transform: scale(1.4); margin: -10px auto; object-position: center; }
  .header-right { align-items: stretch; width: 100%; }
  ul.header_user { justify-content: center; margin-bottom: 8px; flex-wrap: wrap; }
  .header-bottom-row { flex-direction: column; width: 100%; gap: 10px; }
  .header_search { width: 100%; }
  .header_cart a { justify-content: center; width: 100%; }
  
  /* Horizontal Scrollable Mobile Menu */
  #navigation .container { padding: 0 !important; }
  .sf-menu { display: flex !important; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 0; margin: 0; }
  .sf-menu::-webkit-scrollbar { display: none; }
  .sf-menu > li { float: none; flex: 0 0 auto; }
  .sf-menu > li > a { padding: 0 16px; font-size: 13px; }
  
  .slider_wrap { padding: 32px 20px; }
  .slider_wrap h2 { font-size: 22px !important; }
  .custom_showcase { margin-top: 12px; }
  .custom_showcase1, .custom_showcase2, .custom_showcase3, .custom_showcase4 { margin-top: 12px !important; }
  
  #footer { margin-top: 30px; }
  .custom_footer h3 { padding-top: 24px; }
}

/* ══════════════════════════════════════════════
   KAYAR BANNER (MARQUEE)
   ══════════════════════════════════════════════ */
.marquee-banner {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1000;
}
.marquee-banner .marquee-content {
  display: inline-block;
  animation: marqueeScroll 25s linear infinite;
  padding-left: 100%;
}
.marquee-banner .marquee-content span {
  display: inline-block;
  padding: 0 60px;
}
.marquee-banner .marquee-content span i {
  margin: 0 8px;
  opacity: 0.6;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
.marquee-banner:hover .marquee-content {
  animation-play-state: paused;
}

/* ══════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ══════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
  color: #fff;
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.cart-float {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #fa3a47;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(250, 58, 71, 0.45);
  z-index: 9998;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.cart-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(250, 58, 71, 0.65);
  color: #fff;
}
.cart-float .cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #fff;
  color: #fa3a47;
  font-size: 13px;
  font-weight: 800;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

@keyframes whatsappPulse {
  0%   { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
  50%  { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25), 0 0 0 10px rgba(37, 211, 102, 0.10); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
}
@media(max-width:767px) {
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
  .cart-float {
    bottom: 82px;
    right: 18px;
    width: 52px;
    height: 52px;
    font-size: 22px;
  }
  .cart-float .cart-badge {
    width: 20px;
    height: 20px;
    font-size: 11px;
    top: -2px;
    right: -2px;
  }
}

/* ══════════════════════════════════════════════
   TÜP ÜRÜN — DEPOZİTO SEÇİM KARTI
   ══════════════════════════════════════════════ */
.tube-info-box {
  background: linear-gradient(135deg, #fff7ed, #fef3c7);
  border: 2px solid #f59e0b;
  border-radius: 10px;
  padding: 16px 18px;
  margin: 16px 0;
}
.tube-info-box .tube-badge {
  display: inline-block;
  background: #f59e0b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tube-info-box .tube-notice {
  font-size: 12px;
  color: #92400e;
  margin: 6px 0;
  line-height: 1.5;
}
.tube-info-box .tube-notice i {
  color: #f59e0b;
  margin-right: 6px;
}

.deposit-selector {
  display: flex;
  gap: 12px;
  margin: 14px 0;
}
.deposit-selector label {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 12px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  text-align: center;
}
.deposit-selector label:hover {
  border-color: var(--green);
  background: #f0fdf4;
}
.deposit-selector label.selected,
.deposit-selector input[type="radio"]:checked + label,
.deposit-selector label:has(input:checked) {
  border-color: var(--green);
  background: #f0fdf4;
  box-shadow: 0 0 0 3px rgba(106,191,62,0.15);
}
.deposit-selector input[type="radio"] {
  display: none;
}
.deposit-selector .deposit-label-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 4px;
}
.deposit-selector .deposit-label-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--green);
}
.deposit-selector .deposit-label-desc {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

/* Sepetteki tüp badge */
.cart-tube-badge {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 6px;
  border: 1px solid #f59e0b;
}
.cart-deposit-info {
  font-size: 11px;
  color: #92400e;
  background: #fffbeb;
  padding: 4px 8px;
  border-radius: 4px;
  margin-top: 4px;
  display: inline-block;
}

/* ══════════════════════════════════════════════
   İL/İLÇE DROPDOWN STİLLERİ
   ══════════════════════════════════════════════ */
.location-row {
  display: flex;
  gap: 15px;
}
.location-row .form-group {
  flex: 1;
}
@media(max-width:767px) {
  .location-row {
    flex-direction: column;
    gap: 0;
  }
  .deposit-selector {
    flex-direction: column;
  }
}

/* Checkout tüp uyarı kutusu */
.checkout-tube-warning {
  background: linear-gradient(135deg, #fef3c7, #fff7ed);
  border: 2px solid #f59e0b;
  border-radius: 10px;
  padding: 14px 18px;
  margin: 12px 0;
  font-size: 13px;
  color: #92400e;
}
.checkout-tube-warning i {
  color: #f59e0b;
  margin-right: 6px;
}
.checkout-tube-warning strong {
  color: #78350f;
}

/* ══════════════════════════════════════════════
   PREMIUM DESIGN STYLES (Global)
   ══════════════════════════════════════════════ */
.cat-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}
@media(max-width: 767px) {
  .cat-grid-premium {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }
}

.cat-card-premium {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 240px;
}
.cat-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(106, 191, 62, 0.15);
  border-color: #6abf3e;
}
.cat-card-img-wrap {
  height: 170px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #fff;
}
.cat-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.cat-card-premium:hover .cat-card-img-wrap img {
  transform: scale(1.08);
}
.cat-card-content {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 0 10px;
}
.cat-card-content h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
.cat-card-premium:hover .cat-card-content h3 {
  color: #6abf3e;
}

.premium-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 20px;
}
.product-card-premium {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}
.product-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  border-color: #cbd5e1;
}
.product-card-img {
  width: 100%;
  height: 200px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.product-card-premium:hover .product-card-img img {
  transform: scale(1.08);
}
.product-sale-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}
.product-card-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #f1f5f9;
}
.product-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none !important;
  transition: color 0.2s;
}
.product-card-title:hover {
  color: #6abf3e;
}
.product-card-price-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 16px;
}
.product-card-price {
  font-size: 18px;
  font-weight: 800;
  color: #0d1b2a;
}
.product-card-price-old {
  font-size: 13px;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 500;
}
.product-card-btn {
  width: 100%;
  background: #fff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 10px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.product-card-premium:hover .product-card-btn {
  background: #6abf3e;
  color: #fff;
  border-color: #6abf3e;
  box-shadow: 0 4px 12px rgba(106, 191, 62, 0.25);
}

@media(max-width: 767px) {
  .cat-card-premium { height: 180px; border-radius: 12px; }
  .cat-card-img-wrap { height: 120px; padding: 10px; }
  .cat-card-content { height: 60px; padding: 0 5px; }
  .cat-card-content h3 { font-size: 13px; letter-spacing: 0; }

  .premium-product-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
  .product-card-premium { border-radius: 12px; }
  .product-card-img { height: 150px; padding: 10px; }
  .product-card-info { padding: 10px; }
  .product-card-title { font-size: 13px; line-height: 1.3; margin-bottom: 8px; height: 34px; }
  .product-card-price { font-size: 15px; }
  .product-card-price-old { font-size: 11px; }
  .product-card-price-wrap { margin-bottom: 10px; }
  .product-card-btn { padding: 8px; font-size: 11px; border-radius: 8px; }
  .product-sale-badge { font-size: 9px; padding: 3px 8px; top: 8px; left: 8px; }
}
