/* 
 * Şelale Çömlek - Geleneksel El Yapımı Çömlekçilik E-Ticaret Teması
 * Primary Brand Color: #A06219
 * Light Background Color: #fdfdfd
 * Font Family: Bahnschrift, Plus Jakarta Sans, sans-serif
 */

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

:root {
  --font-brand: 'Bahnschrift', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --brand-primary: #A06219;
  --brand-primary-hover: #865012;
  --brand-gold: #e5a452;
  --brand-light: #fdfdfd;
  --brand-cream: #f7f3ed;
  --brand-warm-bg: #faf7f2;
  
  --dark-clay: #1c1510;
  --dark-surface: #261d16;
  
  --whatsapp-green: #25D366;
  --whatsapp-hover: #1da851;
  
  --text-dark: #2c221a;
  --text-muted: #6b5c4d;
  --text-light: #fdfdfd;
  
  --border-light: rgba(160, 98, 25, 0.15);
  --border-strong: rgba(160, 98, 25, 0.3);
  
  --shadow-sm: 0 4px 12px rgba(160, 98, 25, 0.06);
  --shadow-md: 0 8px 24px rgba(160, 98, 25, 0.1);
  --shadow-lg: 0 16px 40px rgba(160, 98, 25, 0.15);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Swiper Custom Colors */
  --swiper-theme-color: #A06219;
  --swiper-navigation-size: 22px;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--brand-light);
  color: var(--text-dark);
  line-height: 1.6;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-brand);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

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

.text-accent {
  color: var(--brand-primary);
}

.text-gold {
  color: var(--brand-gold);
}

/* GLOBAL SECTION PADDING & RHYTHM */
.section {
  padding: 72px 0;
  position: relative;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  font-family: var(--font-brand);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--brand-primary);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(160, 98, 25, 0.25);
}

.btn-primary:hover {
  background: var(--brand-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(160, 98, 25, 0.35);
  color: #ffffff;
}

.btn-gold {
  background: var(--brand-gold);
  color: #1a120b;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(229, 164, 82, 0.3);
}

.btn-gold:hover {
  background: #d49341;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(229, 164, 82, 0.4);
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  color: #ffffff;
}

.btn-phone {
  background: var(--brand-primary);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(160, 98, 25, 0.25);
}

.btn-phone:hover {
  background: var(--brand-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(160, 98, 25, 0.35);
  color: #ffffff;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

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

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

/* Header & Navbar (Smart Hide / Reveal Sticky Navbar) */
.site-header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(16, 12, 8, 0.85) 0%, rgba(16, 12, 8, 0.2) 70%, rgba(16, 12, 8, 0) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.35s ease;
}

/* Sub-Page Header Styling (Kusursuz Oturan Koyu Header) */
.site-header-transparent.site-header-inner-page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #16110c;
  border-bottom: 1px solid rgba(229, 164, 82, 0.25);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Hidden when scrolling down */
.site-header-transparent.header-hidden {
  position: fixed;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

/* Sticky & Visible with fade when scrolling up */
.site-header-transparent.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(0);
  opacity: 1;
  background: rgba(22, 17, 12, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 164, 82, 0.25);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 95px;
}

.brand-logo-img {
  height: 65px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(5deg);
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-brand);
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  padding: 12px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-link:hover, .nav-link.active {
  color: var(--brand-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--brand-gold);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

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

/* NAVBAR DROPDOWN MENU */
.nav-item-has-dropdown {
  position: relative;
}

.nav-dropdown-icon {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.nav-item-has-dropdown:hover .nav-dropdown-icon {
  transform: rotate(180deg);
  color: var(--brand-gold);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: 270px;
  background: rgba(20, 15, 11, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(229, 164, 82, 0.3);
  border-radius: var(--radius-md);
  padding: 12px 0;
  list-style: none;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1200;
}

.nav-item-has-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-family: var(--font-brand);
  font-size: 0.95rem;
  font-weight: 600;
  color: #e5ded7;
  transition: var(--transition);
}

.nav-dropdown-menu li a:hover {
  background: rgba(229, 164, 82, 0.15);
  color: var(--brand-gold);
  padding-left: 24px;
}

.nav-dropdown-menu li a i {
  font-size: 1rem;
  width: 18px;
  text-align: center;
}

.dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 8px 0;
}

/* Header Cart Button */
.nav-cart-btn {
  position: relative;
  background: rgba(229, 164, 82, 0.15);
  border: 1px solid rgba(229, 164, 82, 0.4);
  color: var(--brand-gold);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-brand);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.nav-cart-btn:hover {
  background: var(--brand-gold);
  color: #100c08;
  box-shadow: 0 4px 15px rgba(229, 164, 82, 0.3);
}

.cart-badge {
  background: var(--brand-primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.8rem;
  cursor: pointer;
}

/* FULL-BLEED 100VH SWIPER HERO SLIDER */
.hero-swiper-fullbleed {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  background: #100c08;
  overflow: hidden;
}

.hero-swiper-fullbleed .swiper {
  width: 100%;
  height: 100%;
}

.hero-swiper-fullbleed .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.slide-dark-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 12, 8, 0.88) 0%, rgba(16, 12, 8, 0.6) 55%, rgba(16, 12, 8, 0.3) 100%);
  z-index: 1;
}

.slide-content-container {
  position: relative;
  z-index: 10;
  padding-top: 60px;
  width: 100%;
}

.slide-body {
  max-width: 720px;
}

.hero-badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(229, 164, 82, 0.12);
  border: 1px solid rgba(229, 164, 82, 0.35);
  color: var(--brand-gold);
  font-family: var(--font-brand);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.slide-hero-title {
  font-size: 4.2rem;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  font-family: var(--font-brand);
}

.slide-hero-desc {
  font-size: 1.25rem;
  color: #e2d9cf;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 620px;
}

.slide-hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.slide-fraction-counter {
  position: absolute;
  bottom: 40px;
  left: 48px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  font-family: var(--font-brand);
}

.counter-current {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand-gold);
}

.counter-divider {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
}

.counter-total {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.hero-swiper-fullbleed .swiper-button-next,
.hero-swiper-fullbleed .swiper-button-prev {
  right: 40px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}

.hero-swiper-fullbleed .swiper-button-prev {
  top: calc(50% - 35px);
  left: auto;
}

.hero-swiper-fullbleed .swiper-button-next {
  top: calc(50% + 35px);
}

.hero-swiper-fullbleed .swiper-button-next:hover,
.hero-swiper-fullbleed .swiper-button-prev:hover {
  background: var(--brand-gold);
  color: #100c08;
  border-color: var(--brand-gold);
  box-shadow: 0 8px 24px rgba(229, 164, 82, 0.4);
}

/* CLEAN SECTION HEADER */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
  padding: 0 16px;
}

.section-subtitle {
  color: var(--brand-primary);
  font-family: var(--font-brand);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-family: var(--font-brand);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* CATALOG SECTION */
.catalog-section {
  padding: 72px 0;
  background: var(--brand-warm-bg);
}

.catalog-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  background: #ffffff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.catalog-search-box {
  position: relative;
  flex-grow: 1;
  max-width: 380px;
}

.catalog-search-box input {
  width: 100%;
  padding: 12px 18px 12px 44px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background: var(--brand-cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}

.catalog-search-box input:focus {
  border-color: var(--brand-primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(160, 98, 25, 0.1);
}

.catalog-search-box i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-primary);
  font-size: 1rem;
}

.catalog-sort-box {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-brand);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.catalog-sort-box select {
  padding: 10px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--brand-cream);
  font-family: var(--font-brand);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  cursor: pointer;
}

.category-filters-pro {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn-pro {
  padding: 11px 22px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  font-family: var(--font-brand);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.filter-btn-pro .badge-count {
  background: var(--brand-cream);
  color: var(--brand-primary);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.filter-btn-pro:hover, .filter-btn-pro.active {
  background: var(--brand-primary);
  color: #ffffff;
  border-color: var(--brand-primary);
  box-shadow: 0 6px 18px rgba(160, 98, 25, 0.25);
}

.filter-btn-pro:hover .badge-count, .filter-btn-pro.active .badge-count {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* Professional Product Card */
.products-grid-pro {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 28px;
}

.product-card-pro {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.product-card-pro:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}

.card-top-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.badge-tag {
  padding: 6px 14px;
  background: var(--brand-primary);
  color: #ffffff;
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.badge-craft {
  background: #25201b;
  color: var(--brand-gold);
  border: 1px solid rgba(229, 164, 82, 0.4);
}

.card-image-wrapper {
  position: relative;
  width: 100%;
  height: 260px;
  background: var(--brand-cream);
  overflow: hidden;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-pro:hover .card-image-wrapper img {
  transform: scale(1.08);
}

.card-overlay-actions {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(16, 12, 8, 0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: var(--transition);
  opacity: 0;
}

.product-card-pro:hover .card-overlay-actions {
  bottom: 0;
  opacity: 1;
}

.action-circle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--text-dark);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.action-circle-btn:hover {
  background: var(--brand-primary);
  color: #ffffff;
  transform: scale(1.1);
}

.action-circle-btn.wa-action:hover {
  background: var(--whatsapp-green);
}

.card-content-pro {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.card-cat-name {
  font-family: var(--font-brand);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-product-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
  line-height: 1.3;
}

.card-spec-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.spec-pill {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--brand-warm-bg);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-bottom-row {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.card-price-block {
  display: flex;
  flex-direction: column;
}

.old-price {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-family: var(--font-brand);
}

.current-price {
  font-family: var(--font-brand);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-primary);
}

/* BLOG REHBER SECTION */
.blog-grid-pro {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 28px;
}

.blog-card-pro {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card-pro:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}

.blog-img-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--brand-cream);
}

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

.blog-card-pro:hover .blog-img-wrapper img {
  transform: scale(1.08);
}

.blog-category-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--brand-primary);
  color: #ffffff;
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
}

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

.blog-date {
  font-size: 0.8rem;
  color: var(--brand-primary);
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-read-more {
  font-family: var(--font-brand);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: var(--transition);
}

.blog-card-pro:hover .blog-read-more {
  color: var(--brand-primary-hover);
  transform: translateX(4px);
}

/* FAQ ACCORDION SECTION */
.faq-section {
  padding: 72px 0;
  background: var(--brand-warm-bg);
  border-top: 1px solid var(--border-light);
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.faq-item:hover {
  border-color: var(--border-strong);
}

.faq-question {
  padding: 20px 24px;
  font-family: var(--font-brand);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
  transition: var(--transition);
}

.faq-question i {
  color: var(--brand-primary);
  font-size: 1rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-question {
  color: var(--brand-primary);
  background: var(--brand-cream);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding: 14px 24px 22px;
  max-height: 400px;
}

/* AUTHENTIC HUMAN REVIEWS SECTION */
.reviews-section-wrapper {
  padding: 72px 0;
  background: var(--brand-cream);
  border-top: 1px solid var(--border-light);
}

.reviews-swiper-container {
  padding: 0 0 50px;
  position: relative;
}

.trust-score-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(160, 98, 25, 0.08);
  border: 1px solid rgba(160, 98, 25, 0.2);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.trust-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  display: flex;
  gap: 2px;
}

.review-card-human {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: 0 4px 16px rgba(160, 98, 25, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
}

.review-card-human:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.review-stars-row {
  color: #f59e0b;
  font-size: 0.9rem;
  display: flex;
  gap: 3px;
}

.review-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-body-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.65;
  margin-bottom: 18px;
  flex-grow: 1;
}

.review-purchased-item {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.review-user-info {
  display: flex;
  flex-direction: column;
}

.review-user-name {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.review-user-city {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.reviewsSwiper .swiper-pagination-bullet-active {
  background: var(--brand-primary) !important;
  width: 24px;
  border-radius: 6px;
}

/* CUSTOM ORDER BANNER */
.banner-section-wrapper {
  padding: 64px 0;
}

.banner-section {
  background: linear-gradient(135deg, var(--dark-clay) 0%, var(--dark-surface) 100%);
  color: #ffffff;
  padding: 60px 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.banner-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.banner-title {
  color: #ffffff;
  font-size: 2.4rem;
  margin: 12px 0 16px;
}

.banner-text {
  color: #d1c7bd;
  font-size: 1.05rem;
  margin-bottom: 28px;
  line-height: 1.65;
}

/* CART SLIDE DRAWER SYSTEM */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(5px);
  z-index: 3000;
  display: none;
  justify-content: flex-end;
}

.cart-drawer {
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  animation: slideDrawer 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDrawer {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.cart-drawer-header {
  padding: 24px;
  background: var(--dark-clay);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--brand-primary);
}

.cart-drawer-header h3 {
  color: #ffffff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-close-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

.cart-drawer-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-empty-msg {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.cart-empty-msg i {
  font-size: 3.5rem;
  color: var(--brand-primary);
  margin-bottom: 16px;
  opacity: 0.5;
}

.cart-item-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--brand-cream);
}

.cart-item-img {
  width: 65px;
  height: 65px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-title {
  font-family: var(--font-brand);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 0.9rem;
  color: var(--brand-primary);
  font-weight: 700;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  border: 1px solid var(--border-light);
  background: #ffffff;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: var(--brand-primary);
  color: #ffffff;
}

.cart-item-remove {
  background: transparent;
  border: none;
  color: #ef4444;
  cursor: pointer;
  font-size: 1rem;
  padding: 4px;
}

.cart-drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--border-light);
  background: var(--brand-cream);
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-brand);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.cart-total-price {
  color: var(--brand-primary);
  font-size: 1.5rem;
}

/* Toast Notification */
.toast-notif {
  position: fixed;
  bottom: 95px;
  right: 24px;
  background: var(--dark-clay);
  color: #ffffff;
  border-left: 4px solid var(--brand-gold);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 4000;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-brand);
  font-size: 0.95rem;
  animation: toastIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Feature Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--brand-cream);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: rgba(160, 98, 25, 0.1);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.feature-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-text {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Modal Window */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--brand-cream);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--brand-primary);
  color: #ffffff;
}

/* Sticky Floating WhatsApp & Phone Buttons */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1500;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp-green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

.floating-phone {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 1500;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(160, 98, 25, 0.4);
  transition: var(--transition);
}

.floating-phone:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(160, 98, 25, 0.6);
  color: #ffffff;
}

/* Footer */
.site-footer {
  margin-top: auto;
  background: var(--dark-clay);
  color: #d1c7bd;
  padding: 56px 0 28px;
  border-top: 4px solid var(--brand-primary);
}

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

.footer-heading {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #d1c7bd;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--brand-gold);
}

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

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .section {
    padding: 56px 0;
  }
  .slide-hero-title {
    font-size: 3rem;
  }
  .hero-swiper-fullbleed .swiper-button-next,
  .hero-swiper-fullbleed .swiper-button-prev {
    right: 20px;
  }
  .catalog-header-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .catalog-search-box {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }
  .nav-menu {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .slide-hero-title {
    font-size: 2.25rem;
  }
  .slide-hero-desc {
    font-size: 1rem;
  }
  .slide-fraction-counter {
    bottom: 20px;
    left: 20px;
  }
  .products-grid-pro {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* E-COMMERCE CATEGORY CARDS SECTION */
.home-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.home-cat-card {
  position: relative;
  height: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  text-decoration: none;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.home-cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(160, 98, 25, 0.2);
  border-color: var(--brand-gold);
}

.cat-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.home-cat-card:hover .cat-card-bg {
  transform: scale(1.1);
}

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 12, 8, 0.15) 0%, rgba(16, 12, 8, 0.88) 100%);
  transition: background 0.3s ease;
}

.home-cat-card:hover .cat-card-overlay {
  background: linear-gradient(180deg, rgba(16, 12, 8, 0.25) 0%, rgba(160, 98, 25, 0.92) 100%);
}

.cat-card-content {
  position: relative;
  z-index: 10;
  color: #ffffff;
}

.cat-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--brand-gold);
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.home-cat-card:hover .cat-icon-badge {
  background: #ffffff;
  color: var(--brand-primary);
}

.cat-count-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  font-family: var(--font-brand);
  background: rgba(229, 164, 82, 0.3);
  color: var(--brand-gold);
  border: 1px solid rgba(229, 164, 82, 0.5);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cat-card-title {
  font-family: var(--font-brand);
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.2;
}

.cat-card-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  margin-bottom: 14px;
}

.cat-link-text {
  font-family: var(--font-brand);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--brand-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.home-cat-card:hover .cat-link-text {
  color: #ffffff;
  gap: 10px;
}

/* CATEGORY TABS FILTER ROW */
.home-cat-filter-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.cat-filter-btn {
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.cat-filter-btn i {
  color: var(--brand-primary);
  font-size: 0.9rem;
}

.cat-filter-btn:hover {
  background: var(--brand-warm-bg);
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.cat-filter-btn.active {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #ffffff;
}

.cat-filter-btn.active i {
  color: var(--brand-gold);
}

/* RESPONSIVE CATEGORIES */
@media (max-width: 992px) {
  .home-categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .home-cat-card {
    height: 270px;
    padding: 18px;
  }
  .cat-card-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .home-categories-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .home-cat-card {
    height: 220px;
    padding: 16px;
  }
  .cat-filter-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}