/**
 * Teymur Seramik & Vitrifiye - Main Stylesheet
 * Colors: Primary #005BAC, Dark #002F5F, Background #F7FAFE, Border #E7EEF8, WhatsApp #25D366
 */

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

:root {
  --primary: #07345F;
  --primary-blue: #0087E8;
  --search-blue: #064A7D;
  --text: #07345F;
  --dark: #07345F;
  --muted: #50657A;
  --text-muted: #50657A;
  --border: #E8EEF4;
  --border-color: #CBD5E1;
  --border-strong: #94A3B8;
  --bg-main: #F8FAFC;
  --light-bg: #F3F8FC;
  --whatsapp: #19B85A;
  --danger: #EF4444;
  --success: #10B981;
  --warning: #F59E0B;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(7, 52, 95, 0.04);
  --shadow-md: 0 4px 14px rgba(7, 52, 95, 0.08);
  --shadow-lg: 0 10px 25px rgba(7, 52, 95, 0.12);
  --primary-hover: #0087E8;
  --transition: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #07345F;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.3;
}

/* TopBar (Pixel Perfect matching teymur.header.jpg) */
.topbar {
  background-color: #F2F7FC;
  color: #07345F;
  font-size: 11.5px;
  font-weight: 500;
  height: 30px;
  border-bottom: 1px solid #E8EEF4;
  display: flex;
  align-items: center;
  font-family: var(--font-body);
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 26px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #07345F;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1;
}

.topbar-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #07345F;
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 500;
  transition: color 0.2s;
}

.topbar-phone-link:hover {
  color: #0087E8;
}

.topbar-icon {
  color: #07345F;
  flex-shrink: 0;
}

.topbar-text {
  color: #07345F;
}

/* Header Main (Height ~105px, Background #FFFFFF) */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #EEF2F6;
  position: relative;
  z-index: 950;
  transition: var(--transition);
}

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

/* Brand Logo (TEYMUR - SERAMİK VİTRİFİYE matching reference image) */
.site-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  user-select: none;
  width: 220px;
}

.site-logo .brand-title {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #07345F;
  line-height: 0.95;
  text-transform: uppercase;
}

.site-logo .brand-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 4px;
}

.site-logo .sub-line {
  height: 2px;
  width: 22px;
  background-color: #0087E8;
  border-radius: 1px;
  flex-shrink: 0;
}

.site-logo .sub-text {
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #0087E8;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Search Bar (Centered, ~490px wide, 41px height, #064A7D attached button) */
.header-search {
  flex: 1;
  max-width: 490px;
  margin: 0 30px;
}

.header-search-form {
  display: flex;
  align-items: center;
  border: 1px solid #E5EBF2;
  border-radius: 8px;
  background: #ffffff;
  height: 41px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.header-search-form:focus-within {
  border-color: #07345F;
  box-shadow: 0 0 0 2px rgba(7, 52, 95, 0.08);
}

.header-search-form input {
  flex: 1;
  height: 100%;
  border: none;
  padding: 0 16px;
  outline: none;
  font-size: 11.8px;
  color: #07345F;
  font-family: 'Poppins', sans-serif;
  background: transparent;
}

.header-search-form input::placeholder {
  color: #94A3B8;
  font-size: 11.8px;
  font-weight: 400;
}

.header-search-form button {
  width: 42px;
  height: 41px;
  background: #064A7D;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}

.header-search-form button:hover {
  background: #0087E8;
}

/* Header Actions (Hesabım & Sepetim) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 38px;
  flex-shrink: 0;
}

.action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #07345F;
  gap: 4px;
  cursor: pointer;
  transition: color 0.2s;
  position: relative;
}

.action-item:hover {
  color: #0087E8;
}

.action-icon-wrap {
  position: relative;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #07345F;
}

.action-icon-wrap svg {
  color: inherit;
  transition: transform 0.2s;
}

.action-item:hover .action-icon-wrap svg {
  transform: translateY(-1px);
}

.action-title {
  font-size: 11.5px;
  font-weight: 500;
  color: inherit;
  line-height: 1.2;
}

/* Cart Badge */
.cart-count-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #0087E8;
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Mobile Hamburger Toggle - Hidden on desktop */
.mobile-menu-toggle {
  display: none !important;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #07345F;
  padding: 4px;
}

/* Navbar (Section 3: Height 56px, Background #FFFFFF) */
.main-navbar {
  background: #ffffff;
  border-bottom: 1px solid #EEF2F6;
  position: relative;
  z-index: 900;
  height: 56px;
  display: flex;
  align-items: center;
}

.navbar-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  height: 56px;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-item .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  color: #07345F;
  font-size: 12.5px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}

.nav-item .nav-link:hover {
  color: #0087E8;
}

.nav-item .chevron-icon {
  color: #07345F;
  transition: transform 0.2s, color 0.2s;
}

.nav-item:hover .chevron-icon {
  transform: rotate(180deg);
  color: #0087E8;
}

/* Active Indicator (Underline for Ana Sayfa) */
.nav-item.active .nav-link {
  color: #07345F;
  font-weight: 600;
}

.nav-item.active .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #0087E8;
  border-radius: 1px 1px 0 0;
}

/* Dropdown Menu */
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #ffffff;
  border: 1px solid #E8EEF4;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(7, 52, 95, 0.08);
  padding: 12px;
  display: none;
  z-index: 1000;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-item:hover .nav-dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.nav-dropdown-menu .dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #EEF2F6;
  font-size: 11.5px;
}

.nav-dropdown-menu .dropdown-header strong {
  color: #07345F;
  font-weight: 700;
}

.nav-dropdown-menu .dropdown-header a {
  color: #0087E8;
  text-decoration: none;
  font-weight: 600;
}

.dropdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dropdown-list li a {
  display: block;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12.5px;
  color: #50657A;
  text-decoration: none;
  transition: all 0.15s ease;
}

.dropdown-list li a:hover {
  background: #F3F8FC;
  color: #0087E8;
  padding-left: 14px;
}

/* Mobile Drawer & Overlay Styles (High-End Corporate Design) */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 52, 95, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: none;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 340px;
  max-width: 88vw;
  background: #ffffff;
  z-index: 9999;
  box-shadow: 6px 0 30px rgba(7, 52, 95, 0.2);
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  display: none;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-drawer-header {
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #EEF2F6;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.mobile-drawer-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.mobile-drawer-brand .brand-title {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #07345F;
  letter-spacing: -0.02em;
  line-height: 1;
}

.mobile-drawer-brand .sub-text {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #0087E8;
  margin-top: 3px;
}

.mobile-drawer-close {
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #07345F;
  transition: all 0.2s ease;
}

.mobile-drawer-close:hover,
.mobile-drawer-close:active {
  background: #E2E8F0;
  color: #DC2626;
  transform: scale(1.05);
}

.mobile-drawer-body {
  padding: 14px 16px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* User Quick Action Bar - Small Icon Buttons */
.mobile-user-quick-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 6px 0 14px;
  border-bottom: 1px solid #EEF2F6;
}

.mobile-quick-btn {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F4F8FC;
  border: 1px solid #D5E3F0;
  text-decoration: none;
  color: #07345F;
  box-shadow: 0 1px 3px rgba(7, 52, 95, 0.05);
  position: relative;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-quick-btn:hover,
.mobile-quick-btn:active {
  background: #0087E8;
  color: #ffffff;
  border-color: #0087E8;
  box-shadow: 0 4px 10px rgba(0, 135, 232, 0.25);
  transform: translateY(-1px);
}

.mobile-quick-btn svg {
  color: #0087E8;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-quick-btn:hover svg,
.mobile-quick-btn:active svg {
  color: #ffffff;
  transform: scale(1.08);
}

.mobile-quick-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  background: #E63946;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  line-height: 16px;
  border-radius: 8px;
  text-align: center;
  padding: 0 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Section Headings in Drawer */
.mobile-section-heading {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #94A3B8;
  padding: 4px 6px 2px;
  margin-top: 4px;
}

/* Navigation List */
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-item {
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.mobile-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.mobile-nav-row:hover,
.mobile-nav-row.active {
  background: #F0F7FF;
}

.mobile-nav-link {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: #07345F;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.mobile-nav-link.active,
.mobile-nav-row.active .mobile-nav-link {
  color: #0087E8;
  font-weight: 700;
}

.mobile-link-icon {
  display: flex;
  align-items: center;
  color: #0087E8;
}

.mobile-accordion-toggle {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #64748B;
  cursor: pointer;
  border-radius: 6px;
  margin-right: 4px;
  transition: transform 0.25s ease, color 0.2s ease;
}

.mobile-nav-item.open .mobile-accordion-toggle {
  transform: rotate(180deg);
  color: #0087E8;
}

.mobile-submenu {
  display: none;
  list-style: none;
  padding: 4px 0 6px 16px;
  margin: 0;
  background: #FAFBFD;
  border-left: 2px solid #0087E8;
  border-radius: 0 0 8px 8px;
}

.mobile-nav-item.open .mobile-submenu {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-submenu li a {
  display: block;
  padding: 7px 12px;
  font-size: 12.5px;
  font-weight: 500;
  color: #334155;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.mobile-submenu-all {
  color: #0087E8 !important;
  font-weight: 700 !important;
}

.mobile-submenu li a:hover {
  background: #EEF6FF;
  color: #0087E8;
  padding-left: 15px;
}

/* Corporate List */
.mobile-corporate-list li a {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 13px;
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.mobile-corporate-list li a:hover {
  background: #F1F5F9;
  color: #07345F;
  padding-left: 15px;
}

/* Corporate Contact Cards in Drawer */
.mobile-contact-box {
  background: #F8FAFD;
  border: 1px solid #E5EDF4;
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.mobile-contact-title {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #07345F;
  margin-bottom: 2px;
}

.mobile-contact-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-contact-phone {
  background: #ffffff;
  border: 1px solid #E2E8F0;
}

.mobile-contact-phone:hover {
  background: #07345F;
  color: #ffffff;
}

.mobile-contact-phone:hover .mobile-contact-val,
.mobile-contact-phone:hover .mobile-contact-label {
  color: #ffffff;
}

/* WhatsApp Support Button (Reduced Height, Sepete Ekle Button Style) */
.mobile-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 34px;
  min-height: 34px;
  max-height: 34px;
  background: #25D366;
  color: #ffffff !important;
  border: 1px solid #20BD5A;
  border-radius: 6px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(37, 211, 102, 0.2);
  transition: all 0.2s ease;
  padding: 0 12px;
  box-sizing: border-box;
}

.mobile-wa-btn:hover,
.mobile-wa-btn:active {
  background: #1EBE5D;
  border-color: #1AA852;
  color: #ffffff !important;
  box-shadow: 0 3px 8px rgba(37, 211, 102, 0.35);
  transform: translateY(-1px);
}

.mobile-wa-btn svg {
  color: #ffffff;
  flex-shrink: 0;
}

.mobile-contact-wa {
  background: #25D366;
  border: 1px solid #20BD5A;
  color: #ffffff;
}

.mobile-contact-wa:hover {
  background: #1EBE5D;
}

.mobile-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #F0F7FF;
  color: #0087E8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-contact-phone:hover .mobile-contact-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.wa-icon {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.mobile-contact-info {
  display: flex;
  flex-direction: column;
}

.mobile-contact-label {
  font-size: 10px;
  color: #64748B;
  font-weight: 500;
}

.mobile-contact-wa .mobile-contact-label {
  color: rgba(255, 255, 255, 0.9);
}

.mobile-contact-val {
  font-size: 13px;
  font-weight: 700;
  color: #07345F;
}

.mobile-contact-wa .mobile-contact-val {
  color: #ffffff;
}

.mobile-contact-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px dashed #E2E8F0;
  font-size: 11.5px;
  color: #64748B;
}

.mobile-contact-meta .meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-contact-meta .meta-row svg {
  color: #0087E8;
  flex-shrink: 0;
}

.mobile-contact-meta a {
  color: #07345F;
  text-decoration: none;
  font-weight: 600;
}

/* Corporate Social Media Bar in Drawer */
.mobile-social-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  padding: 8px 0;
}

.mobile-social-title {
  font-size: 11px;
  font-weight: 700;
  color: #64748B;
}

.mobile-social-icons {
  display: flex;
  gap: 12px;
}

.mobile-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-social-btn:hover,
.mobile-social-btn:active {
  transform: translateY(-2px) scale(1.08);
}

.mobile-social-btn.ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.mobile-social-btn.fb {
  background: #1877F2;
}

.mobile-social-btn.wa {
  background: #25D366;
}

.mobile-social-btn.yt {
  background: #FF0000;
}

.mobile-drawer-footer {
  text-align: center;
  padding-top: 10px;
  border-top: 1px solid #EEF2F6;
  font-size: 11px;
  color: #94A3B8;
}

.mobile-drawer-footer p {
  margin: 0 0 2px 0;
  font-weight: 600;
  color: #64748B;
}

@media (max-width: 768px) {
  .mobile-drawer-overlay {
    display: block;
  }
  .mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .mobile-drawer {
    display: flex;
  }
  .mobile-drawer.active {
    transform: translateX(0);
  }
}

/* SECTION 4 — HERO SLIDER (Full Width, Height ~345px matching teymur.header.jpg) */
.hero-slider-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
}

.hero-slider-wrapper {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.78) 38%, rgba(255, 255, 255, 0.15) 72%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-content-container {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.hero-slide-content {
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.hero-slide-subtitle {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #0087E8;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.hero-slide-title {
  display: flex;
  flex-direction: column;
  line-height: 1.02;
  margin-bottom: 12px;
}

.hero-title-line1 {
  font-size: 44px;
  font-weight: 800;
  color: #07345F;
  letter-spacing: -0.01em;
}

.hero-title-line2 {
  font-size: 44px;
  font-weight: 800;
  color: #0087E8;
  letter-spacing: -0.01em;
}

.hero-slide-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: #274B6D;
  max-width: 330px;
  margin-bottom: 18px;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: #07345F;
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 6px rgba(7, 52, 95, 0.15);
}

.hero-cta-btn:hover {
  background: #0087E8;
  transform: translateY(-1px);
}

/* WhatsApp Floating Callout (Green pill/bubble at right bottom of hero) */
.hero-whatsapp-bubble {
  position: absolute;
  right: 18px;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #19B85A;
  color: #ffffff;
  padding: 12px 24px 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(25, 184, 90, 0.35);
  z-index: 10;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.hero-whatsapp-bubble:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 22px rgba(25, 184, 90, 0.45);
}

.hero-whatsapp-bubble::before {
  content: '';
  position: absolute;
  left: 24px;
  bottom: -8px;
  width: 0;
  height: 0;
  border-top: 10px solid #19B85A;
  border-left: 10px solid transparent;
}

.wa-bubble-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.wa-bubble-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.wa-bubble-title {
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.18;
  color: #ffffff;
}

.wa-bubble-sub {
  font-size: 10.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 3px;
}

.wa-bubble-cursor {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-left: 6px;
  animation: pulseHand 2s infinite ease-in-out;
}

@keyframes pulseHand {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08) translate(1px, -1px); }
}

/* Slider Dots (Center bottom) */
.hero-slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-dot.active {
  width: 14px;
  height: 14px;
  background: #0087E8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* General Button Classes */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 2px !important; /* Reduced border radius by 95% */
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-blue);
  transform: translateY(-1px);
}

.btn-dark {
  background: #07345F;
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: #07345F;
}

.btn-outline:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

/* SECTION 5 — BENEFITS STRIP (5 columns, height 70px, dividers #E5EDF5) */
.benefits-strip-section {
  background: #ffffff;
  height: 70px;
  border-bottom: 1px solid #EEF2F6;
  display: flex;
  align-items: center;
  width: 100%;
}

.benefits-strip-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.benefit-col {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 10px;
}

.benefit-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #07345F;
  flex-shrink: 0;
}

.benefit-text-box {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.benefit-line-1 {
  font-size: 11.8px;
  font-weight: 600;
  color: #07345F;
  white-space: nowrap;
}

.benefit-line-2 {
  font-size: 11.8px;
  font-weight: 600;
  color: #07345F;
  white-space: nowrap;
}

.benefit-divider {
  width: 1px;
  height: 42px;
  background: #E5EDF5;
  flex-shrink: 0;
}

/* Category Cards (Pixel-Perfect match to teymur-kategoriler.jpg) */
.categories-section {
  padding: 32px 0 44px;
}

.category-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}

.category-header-titles {
  display: flex;
  flex-direction: column;
}

.category-pretitle {
  color: #0087E8;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 6px;
}

.category-main-title {
  color: #07345F;
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.015em;
}

.category-view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0087E8;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  padding-bottom: 2px;
}

.category-view-all-link:hover {
  color: #07345F;
}

.category-view-all-link svg {
  transition: transform 0.2s ease;
}

.category-view-all-link:hover svg {
  transform: translateX(4px);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.category-card {
  background: #ffffff;
  border: 1px solid #E8EEF4;
  border-radius: 1px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(7, 52, 95, 0.04);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: #CBD5E1;
  box-shadow: 0 10px 24px rgba(7, 52, 95, 0.08);
}

.category-card-img {
  width: 100%;
  height: 175px;
  overflow: hidden;
  background: #F8FAFC;
  position: relative;
}

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

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

.category-card-bottom {
  background: #ffffff;
  padding: 14px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 52px;
}

.category-card-name {
  color: #07345F;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  transition: color 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.category-card:hover .category-card-name {
  color: #0087E8;
}

.category-card-arrow {
  color: #0087E8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.category-card:hover .category-card-arrow {
  transform: translateX(4px);
}

.section-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  position: relative;
  padding-left: 14px;
  color: #082852;
}

.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: var(--primary);
  border-radius: 2px;
}

/* Product Cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .product-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: unset;
    max-height: unset;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 30px;
  }
  .product-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: unset;
    max-height: unset;
    padding: 0;
  }
}

@media (max-width: 360px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .product-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: unset;
    max-height: unset;
    padding: 0;
  }
}

.product-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 2px; /* Kenar yuvarlama minimum seviyeye indirildi */
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #CBD5E1;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  padding: 3px 8px;
  border-radius: 2px; /* Minimum seviyeye indirildi */
  font-size: 11px;
  font-weight: 700;
  z-index: 5;
}

.product-badge.sale {
  background: var(--danger);
}

.product-wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: var(--transition);
}

.product-wishlist-btn:hover, .product-wishlist-btn.active {
  background: #FEE2E2;
  color: var(--danger);
  border-color: #FCA5A5;
}

.product-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: unset;
  max-height: unset;
  background: #ffffff;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

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

.product-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-brand {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 4px;
}

.product-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
  height: 40px;
  overflow: hidden;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--warning);
  margin-bottom: 12px;
}

.product-rating span {
  color: var(--text-muted);
  font-size: 11px;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 14px;
}

.product-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}

.product-old-price {
  font-size: 13px;
  color: #94A3B8;
  text-decoration: line-through;
}

.product-actions {
  display: flex;
  gap: 8px;
}

.btn-add-cart {
  flex: 1;
  background: var(--primary);
  color: #fff;
  padding: 9px;
  border-radius: 2px; /* Minimum seviyeye indirildi */
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-add-cart:hover {
  background: var(--primary-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 135, 232, 0.25);
}

/* Öne Çıkan Ürünler Bölümü - Çerçeve Kenar Yuvarlamaları Minimum Seviye */
.products-section .product-card {
  border-radius: 2px !important;
}

.products-section .product-thumb {
  border-radius: 0 !important;
}

.products-section .product-badge {
  border-radius: 2px !important;
}

.products-section .btn-add-cart {
  border-radius: 2px !important;
}

.products-section .btn-quick-view {
  border-radius: 1px !important;
}

.btn-quick-view {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  color: var(--dark);
  width: 36px;
  height: 36px;
  border-radius: 1px !important; /* %95 oranında azaltılmış kenar yuvarlama */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.btn-quick-view:hover {
  background: #E2E8F0;
  color: var(--primary);
}

/* Brands Section */
.brands-strip {
  background: #ffffff;
  padding: 30px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 48px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: var(--transition);
}

.brand-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.06);
}

.brand-item img {
  max-height: 40px;
  object-fit: contain;
}

/* ==========================================================================
   Special Project & Design Banner + Brands Strip (teymur-ana_hayalinizdeki_tasarim.jpg)
   ========================================================================== */
.special-project-section {
  width: 100%;
  margin-top: 48px;
  margin-bottom: 48px;
  background: #ffffff;
  overflow: hidden;
}

/* SECTION A: Main Banner (~220px desktop height) */
.special-project-banner {
  position: relative;
  width: 100%;
  height: 220px;
  background: #f7f9fb;
  overflow: hidden;
}

/* Left Bathtub Background Image */
.special-project-bg-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 58%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.special-project-left-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  display: block;
}

.special-project-left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0.94) 0%, 
    rgba(255, 255, 255, 0.88) 28%, 
    rgba(255, 255, 255, 0.20) 58%, 
    transparent 100%
  );
  pointer-events: none;
}

/* Right Vanity & Mirror Background Image */
.special-project-bg-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 29%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.special-project-right-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Central Content Container */
.special-project-container {
  position: relative;
  max-width: 1180px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
}

/* Left Typography & CTA */
.special-project-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 6;
  max-width: 380px;
  padding-left: 20px;
}

.special-project-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: #07345F;
  text-transform: uppercase;
  margin-bottom: 5px;
  line-height: 1;
  display: block;
}

.special-project-title {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1;
}

.special-title-line1 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #07345F;
  line-height: 1.05;
  letter-spacing: -0.01em;
  display: block;
}

.special-title-line2 {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #07345F;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-top: 1px;
  display: block;
}

.special-project-script {
  font-family: 'Dancing Script', cursive;
  font-size: 31px;
  font-weight: 700;
  color: #07345F;
  line-height: 1;
  display: block;
  margin-top: 2px;
  margin-bottom: 12px;
  transform: rotate(-2deg);
}

.special-project-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #07345F;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  padding: 7px 15px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 6px rgba(7, 52, 95, 0.15);
}

.special-project-button:hover {
  background: #0087E8;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 135, 232, 0.25);
}

.special-btn-arrow {
  transition: transform 0.2s ease;
}

.special-project-button:hover .special-btn-arrow {
  transform: translateX(2px);
}

/* Middle Slanted Trapezoid Panel */
.special-project-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 295px;
  background: #EEF7FD;
  /* Diagonal slant: top shifted right 55px, bottom starts at 0 */
  clip-path: polygon(55px 0%, 100% 0%, calc(100% - 55px) 100%, 0% 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 20px 16px 48px;
  z-index: 4;
}

.special-project-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(238, 247, 253, 0.2) 100%);
  pointer-events: none;
}

.special-project-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.special-feature-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #D8E7F2;
  box-shadow: 0 2px 6px rgba(7, 52, 95, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #07345F;
}

.special-feature-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.special-feature-title {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #07345F;
  margin: 0;
}

.special-feature-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 8.8px;
  font-weight: 400;
  color: #526A80;
  margin: 2px 0 0 0;
}

.special-panel-divider {
  width: calc(100% - 30px);
  height: 1px;
  background: #E0EEF7;
  margin: 8px 0 8px 24px;
}

/* SECTION B: Brands Strip (~72px height) */
.special-brands-strip {
  width: 100%;
  height: 72px;
  background: #ffffff;
  border-top: 1px solid #EEF2F6;
  border-bottom: 1px solid #EEF2F6;
  display: flex;
  align-items: center;
}

.special-brands-container {
  max-width: 1180px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.special-brands-intro {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  flex-shrink: 0;
  margin-right: 28px;
}

.special-brands-title {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #07345F;
  margin: 0;
}

.special-brands-desc {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 400;
  color: #526A80;
  margin: 2px 0 0 0;
  white-space: nowrap;
}

.special-brands-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  height: 100%;
}

.special-brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  flex: 1;
  height: 100%;
}

.special-brand-item:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

.special-brand-sep {
  width: 1px;
  height: 34px;
  background: #EDF1F5;
  flex-shrink: 0;
}

/* Brand Logos Wordmarks */
.brand-logo-vitra {
  font-family: 'Times New Roman', 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #07345F;
  letter-spacing: -0.01em;
}

.brand-logo-vitra .vitra-a {
  font-size: 26px;
  font-weight: 800;
}

.brand-logo-creavit {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: #07345F;
  letter-spacing: -0.02em;
}

.brand-logo-artema {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #07345F;
  letter-spacing: 0.16em;
}

.brand-logo-franke {
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #ffffff;
  background: #07345F;
  padding: 3px 8px;
  line-height: 1;
  display: inline-block;
}

.brand-logo-grohe {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.brand-logo-grohe .grohe-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #07345F;
  letter-spacing: 0.12em;
}

.brand-logo-grohe .grohe-waves {
  margin-top: 2px;
}

.brand-logo-banyopan {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #07345F;
  letter-spacing: -0.01em;
}

.brand-logo-banyopan .brand-reg {
  font-size: 9px;
  vertical-align: top;
  margin-left: 1px;
  color: #0087E8;
}

/* Footer Newsletter Strip (Pixel-Perfect match to teymur-footer.jpg) */
.footer-newsletter-section {
  background: #EDF5FD;
  border-top: 1px solid #E2EDF8;
  border-bottom: 1px solid #E2EDF8;
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-leaf-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  max-width: 240px;
  overflow: hidden;
}

.newsletter-leaf-img {
  height: 100%;
  max-height: 120px;
  width: auto;
  object-fit: contain;
  object-position: left bottom;
  opacity: 0.95;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.06));
}

.newsletter-content-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  gap: 24px;
}

.newsletter-text-block {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
}

.newsletter-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  color: #475569;
  margin-bottom: 2px;
}

.newsletter-main-title {
  font-family: 'Poppins', sans-serif;
  font-size: 23px;
  font-weight: 800;
  color: #082852;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.01em;
}

.newsletter-action-block {
  display: flex;
  align-items: center;
  gap: 20px;
}

.newsletter-form-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.newsletter-email-input {
  background: #ffffff;
  border: 1px solid #CBD5E1;
  border-radius: 6px;
  height: 44px;
  width: 320px;
  padding: 0 16px;
  font-size: 13.5px;
  font-family: 'Inter', sans-serif;
  color: #082852;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.newsletter-email-input:focus {
  border-color: #0066CC;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.12);
}

.newsletter-email-input::placeholder {
  color: #94A3B8;
}

.newsletter-submit-btn {
  background: #0066CC;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  height: 44px;
  padding: 0 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.newsletter-submit-btn:hover {
  background: #0052A3;
}

.newsletter-plane-decor {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0090D0;
  user-select: none;
}

/* Main Site Footer (White Background, Pixel-Perfect match to teymur-footer.jpg) */
.site-footer {
  background: #ffffff;
  color: #475569;
  padding-top: 38px;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 32px;
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand-logo {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer-logo-title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #082852;
  line-height: 1;
  letter-spacing: -0.02em;
}

.footer-logo-sub {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.footer-sub-line {
  height: 2px;
  width: 14px;
  background-color: #0090D0;
  border-radius: 1px;
}

.footer-sub-text {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #0090D0;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-slogan {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: #64748B;
  margin: 8px 0 14px;
  line-height: 1.4;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-social-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #082852;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  text-decoration: none;
}

.footer-social-btn:hover {
  background: #0090D0;
  transform: translateY(-2px);
}

.footer-col-nav {
  display: flex;
  flex-direction: column;
}

.footer-nav-title {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #082852;
  margin-bottom: 12px;
  line-height: 1.2;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links-list li a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links-list li a:hover {
  color: #0090D0;
}

.footer-contact-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-items li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: #475569;
}

.contact-item-icon {
  color: #082852;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
}

.contact-item-phone {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #082852;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-item-phone:hover {
  color: #0090D0;
}

.contact-item-text {
  color: #475569;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-item-text:hover {
  color: #0090D0;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  background: #ffffff;
  border-top: 1px solid #EEF2F6;
  padding: 14px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright-text {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: #64748B;
  margin: 0;
}

/* Floating Scroll to Top (Auto-visible on scroll, positioned on the RIGHT) */
.scroll-top-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #07345F;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(7, 52, 95, 0.28);
  z-index: 9990;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px) scale(0.9);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.2s ease,
              box-shadow 0.2s ease;
}

.scroll-top-float.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-top-float:hover {
  background: #0087E8;
  color: #ffffff;
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 6px 22px rgba(0, 135, 232, 0.45);
}

.scroll-top-float svg {
  transition: transform 0.25s ease;
}

.scroll-top-float:hover svg {
  transform: translateY(-2px);
}

.scroll-top-float:active {
  transform: translateY(0) scale(0.96);
}

/* WhatsApp Floating Chat Widget (Positioned on the LEFT with always-visible icon & text) */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  left: 26px;
  right: auto;
  background: linear-gradient(135deg, #25D366 0%, #1EBE5D 100%);
  color: #ffffff !important;
  text-decoration: none;
  padding: 10px 18px 10px 14px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.42);
  z-index: 9995;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-float:hover {
  background: linear-gradient(135deg, #28E770 0%, #1FB858 100%);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.55);
  color: #ffffff !important;
}

.whatsapp-float-status-dot {
  position: absolute;
  top: 5px;
  left: 10px;
  width: 9px;
  height: 9px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #25D366;
  animation: pulseWaDot 2s infinite;
}

@keyframes pulseWaDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.whatsapp-float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.whatsapp-float-body {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}

.whatsapp-float-title {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff !important;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.whatsapp-float-sub {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95) !important;
  white-space: nowrap;
}

/* WhatsApp Direct Order Button */
.btn-whatsapp-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #ffffff !important;
  padding: 13px 22px;
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  width: 100%;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
  line-height: 1.2;
}

.btn-whatsapp-order:hover {
  background: #1ebd5a;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.38);
}

.btn-whatsapp-order:active {
  transform: translateY(0);
}

.btn-whatsapp-order svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.btn-whatsapp-order:hover svg {
  transform: scale(1.08);
}

/* Toast Notifications (Positioned safely above WhatsApp float button with top z-index) */
.toast-container {
  position: fixed;
  bottom: 96px;
  left: 24px;
  z-index: 999999 !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  max-width: 380px;
}

.toast {
  pointer-events: auto;
  background: #ffffff;
  border: 1.5px solid #CBD5E1;
  border-left: 5px solid var(--primary);
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(7, 52, 95, 0.16);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  animation: slideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.toast.toast-success { 
  border-left-color: #10B981;
  border-color: #A7F3D0;
  background: #F0FDF4;
  color: #065F46;
}
.toast.toast-error { 
  border-left-color: #EF4444;
  border-color: #FECACA;
  background: #FEF2F2;
  color: #991B1B;
}

@keyframes slideIn {
  from { transform: translateX(-30px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Modals */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 47, 95, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.modal-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  padding: 24px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #F1F5F9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* Professional Form Controls & Inputs */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-control,
input.form-control,
textarea.form-control,
select.form-control {
  width: 100%;
  height: 44px;
  padding: 10px 14px;
  font-size: 14px;
  color: #07345F;
  background-color: #FFFFFF !important;
  border: 1.5px solid #CBD5E1 !important;
  border-radius: 2px !important; /* Minimum seviyeye indirilmiş kenar yuvarlama */
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus,
input.form-control:focus,
textarea.form-control:focus,
select.form-control:focus {
  border-color: #0087E8 !important;
  box-shadow: 0 0 0 2px rgba(0, 135, 232, 0.15) !important;
  border-radius: 2px !important;
}

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

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2350657A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.payment-method-label {
  border: 1.5px solid #CBD5E1 !important;
  border-radius: 2px !important; /* Minimum seviyeye indirilmiş kenar yuvarlama */
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  background: #FFFFFF;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  box-sizing: border-box;
}

.payment-method-label:hover {
  border-color: #94A3B8 !important;
  background: #F8FAFC;
}

.payment-method-label.selected,
.payment-method-label:has(input[type="radio"]:checked) {
  border: 2px solid #0087E8 !important;
  background: #F0F9FF !important;
  border-radius: 2px !important;
}

.payment-method-label.label-whatsapp:has(input[type="radio"]:checked) {
  border: 2px solid #25D366 !important;
  background: #F0FDF4 !important;
  border-radius: 2px !important;
}

#cc-details,
#bank-details,
#whatsapp-details {
  border: 1.5px solid #CBD5E1 !important;
  border-radius: 2px !important; /* Minimum seviyeye indirilmiş kenar yuvarlama */
  background: #F8FAFC;
}

/* Sepet, Ödeme ve Sipariş Sayfaları Form Alanı Çerçeveleri & Minimum Kenar Yuvarlama */
.cart-qty-wrap,
.qty-selector-wrap {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #CBD5E1 !important;
  border-radius: 2px !important;
  background: #FFFFFF;
}

.cart-qty-btn,
.cart-item-qty {
  border-radius: 2px !important;
}

#coupon-form input {
  border: 1.5px solid #CBD5E1 !important;
  border-radius: 2px !important;
}

#coupon-form button,
.cart-table-box,
.cart-summary-box,
.checkout-card,
.order-card {
  border-radius: 2px !important;
}

/* ==========================================================================
   Desktop-Only 20% Height Reduction for Specified Action Buttons
   Targeting:
   1. Sepete Ekle (.btn-add-cart, .product-add-cart-btn)
   2. WhatsApp ile Sipariş Ver (.btn-whatsapp-order)
   3. Siparişi Tamamla (.btn-checkout-complete, .btn-cart-checkout)
   4. Siparişi Tamamla ve Bitir (.btn-order-confirm, .btn-checkout-finish)
   5. Abone Ol (.newsletter-submit-btn) + matching newsletter email input
   ========================================================================== */
@media (min-width: 993px) {
  /* 1. Sepete Ekle - Product Cards (Reduced ~20% from 38px to 30px) */
  .btn-add-cart,
  .product-actions .btn-add-cart,
  .product-card .btn-add-cart {
    height: 30px !important;
    min-height: 30px !important;
    max-height: 30px !important;
    padding: 0 10px !important;
    font-size: 12.5px !important;
    line-height: 30px !important;
  }
  .product-actions .btn-quick-view {
    height: 30px !important;
    min-height: 30px !important;
    max-height: 30px !important;
    width: 30px !important;
  }

  /* 1. Sepete Ekle - Product Detail & Cards (Reduced 20% from ~48px to 38px) */
  .cart-actions-wrap .btn-add-cart,
  .product-main-grid .btn-add-cart,
  .btn-add-cart,
  button.btn-add-cart,
  a.btn-add-cart,
  .btn-quick-add-cart {
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    padding: 0 18px !important;
    font-size: 13.5px !important;
    line-height: 38px !important;
  }
  .qty-selector-wrap,
  .qty-selector-wrap #detail-qty,
  .qty-selector-wrap #detail-qty-minus,
  .qty-selector-wrap #detail-qty-plus,
  .product-wishlist-btn {
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
  }

  /* 2. WhatsApp ile Sipariş Ver (Reduced 20% from ~48px to 38px) */
  .btn-whatsapp-order,
  #btn-whatsapp-order,
  a.btn-whatsapp-order,
  button.btn-whatsapp-order {
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    padding: 0 18px !important;
    font-size: 13.5px !important;
    line-height: 38px !important;
  }

  /* 3. Siparişi Tamamla (Reduced 20% from ~52px to 41px) */
  .btn-checkout-complete,
  .btn-cart-checkout,
  .btn-order-complete,
  a.btn-checkout-complete {
    height: 41px !important;
    min-height: 41px !important;
    max-height: 41px !important;
    padding: 0 18px !important;
    font-size: 14.5px !important;
    line-height: 41px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* 4. Siparişi Tamamla ve Bitir / Onayla (Reduced 20% from ~52px to 41px) */
  .btn-order-confirm,
  .btn-checkout-finish,
  #btn-submit-order,
  button.btn-checkout-finish,
  button.btn-order-confirm {
    height: 41px !important;
    min-height: 41px !important;
    max-height: 41px !important;
    padding: 0 18px !important;
    font-size: 14.5px !important;
    line-height: 41px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* 5. Abone Ol (Reduced 20% from 44px to 35px) */
  .newsletter-submit-btn {
    height: 35px !important;
    min-height: 35px !important;
    max-height: 35px !important;
    padding: 0 20px !important;
    font-size: 13px !important;
    line-height: 35px !important;
  }
  .newsletter-email-input {
    height: 35px !important;
    min-height: 35px !important;
    max-height: 35px !important;
    font-size: 13px !important;
  }
}

