﻿/* ===== 7B TASARIM — DESIGN SYSTEM ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Custom Properties --- */
:root {
  --primary: #3C4048;
  --primary-light: #525960;
  --primary-dark: #2A2E33;
  --accent: #C9955D;
  --accent-light: #DEB07A;
  --dark: #1B1D21;
  --dark-2: #242628;
  --dark-3: #2E3033;
  --light: #F5F4F2;
  --light-2: #E8E6E3;
  --white: #FFFFFF;
  --gray: #8A8D92;
  --gray-light: #C5C3BF;
  --text: #2D2D2D;
  --text-light: #7A7A7A;
  --success: #27AE60;
  --whatsapp: #25D366;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 2px 8px rgba(28, 28, 28, 0.08);
  --shadow-md: 0 8px 30px rgba(28, 28, 28, 0.12);
  --shadow-lg: 0 20px 60px rgba(28, 28, 28, 0.18);
  --shadow-glow: 0 0 40px rgba(60, 64, 72, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

input,
textarea,
select {
  font-family: var(--font-body);
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

.text-accent {
  color: var(--accent);
}

.text-primary {
  color: var(--primary);
}

.text-light {
  color: var(--text-light);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-gray {
  background: var(--light);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 16px auto 0;
}

.section-header .label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-dark .section-header p {
  color: var(--gray);
}

/* --- Grid --- */
.grid {
  display: grid;
  gap: 32px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.flex {
  display: flex;
  align-items: center;
  gap: 16px;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(27, 29, 33, 0.97);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 96px;
  transition: var(--transition);
  filter: brightness(1.8);
}

.navbar.scrolled .navbar-logo img {
  height: 72px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links>a,
.nav-has-mega>a {
  color: var(--white);
  font-weight: 500;
  font-size: 1.05rem;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  text-decoration: none;
  cursor: pointer;
}

.nav-links>a:hover,
.nav-links>a.active,
.nav-has-mega:hover>a {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-light);
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--dark) !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--accent-light) !important;
  transform: translateY(-2px);
}

/* --- Search Button --- */
.nav-search-btn {
  color: var(--white);
  font-size: 1.1rem;
  padding: 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
}

.nav-search-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-light);
}

/* --- Search Overlay --- */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(27, 29, 33, 0.95);
  backdrop-filter: blur(20px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
}

.search-overlay.active {
  display: flex;
}

.search-overlay-inner {
  width: 100%;
  max-width: 680px;
  padding: 0 24px;
}

.search-overlay-close {
  position: absolute;
  top: 32px;
  right: 40px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.search-overlay-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.search-input-wrap {
  position: relative;
}

.search-input-wrap input {
  width: 100%;
  padding: 20px 24px 20px 56px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 1.2rem;
  font-family: var(--font-body);
  transition: var(--transition);
}

.search-input-wrap input::placeholder {
  color: var(--gray);
}

.search-input-wrap input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.12);
}

.search-input-wrap .search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  font-size: 1.2rem;
}

.search-results {
  margin-top: 24px;
  max-height: 50vh;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.search-result-item .result-type {
  padding: 4px 10px;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.search-result-item .result-title {
  font-weight: 600;
  font-size: 1rem;
}

.search-result-item .result-desc {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 2px;
}

.search-no-results {
  text-align: center;
  color: var(--gray);
  padding: 40px 0;
  font-size: 1rem;
}

/* --- Product Filter Sidebar --- */
.product-filters {
  background: var(--white);
  border: 1px solid var(--light-2);
  border-radius: var(--radius-md);
  padding: 32px;
}

.product-filters h3 {
  font-size: 1.1rem;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--light-2);
}

.filter-group {
  margin-bottom: 24px;
}

.filter-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.filter-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light-2);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237A7A7A' d='M6 8.825L.35 3.175 1.175 2.35 6 7.175 10.825 2.35l.825.825z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.filter-group select:focus {
  outline: none;
  border-color: var(--accent);
}

.filter-reset-btn {
  width: 100%;
  padding: 12px;
  background: var(--light);
  color: var(--text);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-reset-btn:hover {
  background: var(--accent);
  color: var(--dark);
}

.products-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

/* --- Mega Menu Dropdown Items --- */
.nav-has-mega {
  position: static;
  display: flex;
  align-items: center;
}

.nav-has-mega>a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-has-mega>a .nav-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: var(--transition);
  margin-top: 2px;
}

.nav-has-mega:hover>a .nav-arrow {
  transform: rotate(180deg);
}

/* --- Mega Menu Panel --- */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  border-top: 3px solid var(--accent);
}

.nav-has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --- Mega Menu Inner Layout --- */
.mega-menu-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  gap: 48px;
}

/* --- Products Mega Menu --- */
.mega-products-left {
  flex: 0 0 280px;
}

.mega-products-left h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--light-2);
}

.mega-cat-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-cat-list a {
  display: block;
  padding: 9px 16px;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.3px;
}

.mega-cat-list a:hover {
  background: var(--light);
  color: var(--primary);
  padding-left: 22px;
}

.mega-products-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mega-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.mega-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mega-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.mega-card:hover img {
  transform: scale(1.06);
}

.mega-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 22, 40, 0.85) 100%);
}

.mega-card-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  z-index: 2;
}

/* --- Brands Mega Menu --- */
.mega-brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  width: 100%;
}

.mega-brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 12px;
  border-radius: var(--radius-sm);
  background: var(--light);
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
  min-height: 90px;
}

.mega-brand-item:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.mega-brand-item span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--text);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  transition: var(--transition);
}

.mega-brand-item:hover span {
  color: var(--white);
}

.mega-brand-item img {
  height: 28px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.mega-brand-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.mega-menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: var(--light);
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.mega-menu-footer a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  text-decoration: none;
}

.mega-menu-footer a:hover {
  color: var(--accent);
}

.mega-menu-footer-icon {
  font-size: 1rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  position: relative;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 40%, var(--dark-3) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 149, 93, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 149, 93, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero-content .label {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: 50px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: var(--gray-light);
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 550px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat h3 {
  color: var(--accent);
  font-size: 2.8rem;
  font-weight: 800;
}

.hero-stat p {
  color: var(--gray);
  font-size: 0.9rem;
  margin: 0;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 55%;
  transform: translateY(-50%);
  width: 45%;
  height: 80%;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--dark) 0%, transparent 40%);
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(60, 64, 72, 0.3), rgba(201, 149, 93, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(60, 64, 72, 0.3);
}

.btn-accent {
  background: var(--accent);
  color: var(--dark);
}

.btn-accent:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(201, 149, 93, 0.3);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.btn-whatsapp svg {
  flex-shrink: 0;
}

.btn-whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* ===== CATEGORIES ===== */
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  cursor: pointer;
  transition: var(--transition-slow);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.category-card-bg {
  position: absolute;
  inset: 0;
  transition: var(--transition-slow);
}

.category-card:hover .category-card-bg {
  transform: scale(1.08);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 22, 40, 0.9) 100%);
  z-index: 1;
}

.category-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
}

.category-card-content h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.category-card-content p {
  color: var(--gray-light);
  font-size: 0.9rem;
  margin: 0;
}

.category-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 168, 67, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 1.4rem;
}

/* ===== BRAND CAROUSEL ===== */
.brands-track {
  display: flex;
  gap: 48px;
  align-items: center;
  overflow: hidden;
  padding: 40px 0;
}

.brand-logo {
  height: 48px;
  opacity: 0.5;
  filter: grayscale(100%) brightness(2);
  transition: var(--transition);
  flex-shrink: 0;
  cursor: pointer;
}

.brand-logo:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
  transform: scale(1.1);
}

.brands-marquee {
  display: flex;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-preview-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 500px;
}

.about-preview-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-year {
  position: absolute;
  bottom: 32px;
  right: 32px;
  text-align: right;
  z-index: 3;
}

.about-year h2 {
  font-size: 5rem;
  color: var(--accent);
  line-height: 1;
  font-weight: 900;
}

.about-year p {
  color: var(--white);
  font-size: 0.9rem;
}

/* ===== PRODUCT CARDS ===== */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--light-2);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-card-image {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.product-card:hover .product-card-image img {
  transform: scale(1.08);
}

.product-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  z-index: 2;
}

.product-card-body {
  padding: 24px;
}

.product-card-body h4 {
  margin-bottom: 6px;
}

.product-card-body .category {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.product-card-actions {
  display: flex;
  gap: 8px;
}

.product-card-actions .btn {
  flex: 1;
  justify-content: center;
  padding: 12px 16px;
  font-size: 0.85rem;
}

/* ===== FILTER BAR ===== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  justify-content: center;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  background: var(--light);
  color: var(--text);
  border: 2px solid transparent;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ===== BRAND CARDS ===== */
.brand-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  border: 1px solid var(--light-2);
  transition: var(--transition);
  text-align: center;
}

.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.brand-card-logo {
  height: 60px;
  margin: 0 auto 24px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: var(--transition);
}

.brand-card:hover .brand-card-logo {
  filter: grayscale(0%);
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  margin-bottom: 24px;
}

.brand-logo-wrap img {
  max-height: 40px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: var(--transition);
}

.brand-card:hover .brand-logo-wrap img {
  filter: grayscale(0%);
}

.brand-logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--primary);
}

.brand-card h4 {
  display: none;
}

.brand-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.brand-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 16px;
}

.brand-card-tags span {
  padding: 4px 12px;
  background: var(--light);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ===== BLOG CARDS ===== */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--light-2);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  aspect-ratio: 650 / 450;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 28px;
}

.blog-card-body .date {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.blog-card-body h4 {
  margin-bottom: 12px;
  transition: var(--transition);
}

.blog-card:hover .blog-card-body h4 {
  color: var(--primary);
}

.blog-card-body p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ===== BLOG ARTICLE DETAIL ===== */
.blog-hero {
  position: relative;
  height: 620px;
  overflow: hidden;
  margin-top: 0;
}

.blog-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.3) 0%, rgba(10, 22, 40, 0.85) 100%);
}

.blog-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 0 48px;
}

.blog-hero-content .container {
  max-width: 900px;
}

.blog-category-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.blog-hero-content h1 {
  color: var(--white);
  font-size: 2.8rem;
  line-height: 1.25;
  margin-bottom: 20px;
  max-width: 800px;
}

.blog-hero-content p {
  color: var(--gray-light);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.7;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-bottom: 1px solid var(--light-2);
  margin-bottom: 40px;
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-light);
}

.blog-meta-item .icon {
  font-size: 1rem;
  opacity: 0.7;
}

.blog-meta-item strong {
  color: var(--dark);
  font-weight: 600;
}

/* Article Body */
.blog-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.blog-article-body {
  font-size: 1.08rem;
  line-height: 2;
  color: var(--text);
}

.blog-article-body p {
  margin-bottom: 24px;
}

.blog-article-body h2 {
  font-size: 1.6rem;
  margin: 56px 0 20px;
  padding-top: 16px;
  color: var(--dark);
  position: relative;
}

.blog-article-body h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
}

.blog-article-body h3 {
  font-size: 1.3rem;
  margin: 40px 0 16px;
  color: var(--dark);
}

.blog-article-body img {
  width: 100%;
  aspect-ratio: 650 / 450;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin: 32px 0;
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.1);
}

.blog-article-body strong {
  color: var(--dark);
}

/* Blockquote / Tip Box */
.blog-tip {
  background: linear-gradient(135deg, var(--light) 0%, rgba(60, 64, 72, 0.06) 100%);
  border-left: 4px solid var(--accent);
  padding: 28px 32px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 40px 0;
  position: relative;
}

.blog-tip::before {
  content: '💡';
  position: absolute;
  top: -14px;
  left: 20px;
  font-size: 1.4rem;
  background: var(--white);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.blog-tip h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin: 0 0 10px !important;
  padding: 0;
}

.blog-tip p {
  margin: 0 !important;
  font-size: 0.98rem;
  color: var(--text);
}

/* Pull Quote */
.blog-pullquote {
  text-align: center;
  padding: 40px 32px;
  margin: 56px 0;
  border-top: 2px solid var(--light-2);
  border-bottom: 2px solid var(--light-2);
  position: relative;
}

.blog-pullquote p {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.6;
  font-style: italic;
  margin: 0 !important;
}

.blog-pullquote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: normal;
}

/* Image Caption */
.blog-img-wrapper {
  margin: 36px 0;
}

.blog-img-wrapper img {
  margin: 0 !important;
  border-radius: var(--radius-md);
}

.blog-img-caption {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 12px;
  font-style: italic;
}

/* Tags */
.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 40px;
  margin-top: 48px;
  border-top: 1px solid var(--light-2);
}

.blog-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--light);
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
}

.blog-tag:hover {
  background: var(--primary);
  color: var(--white);
}

/* CTA Box */
.blog-cta {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  margin: 56px 0;
}

.blog-cta h3 {
  color: var(--white) !important;
  font-size: 1.5rem;
  margin: 0 0 12px !important;
  padding: 0;
}

.blog-cta p {
  color: var(--gray-light) !important;
  margin: 0 0 28px !important;
  font-size: 1rem;
}

.blog-cta .btn {
  display: inline-flex;
}

/* Related Posts */
.blog-related {
  padding: 80px 0;
  background: var(--light);
}

.blog-related h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.5rem;
}

.blog-related .grid {
  max-width: 900px;
  margin: 0 auto;
}

/* Responsive Blog */
@media (max-width: 768px) {
  .blog-hero {
    height: 480px;
  }

  .blog-hero-content h1 {
    font-size: 1.8rem;
  }

  .blog-hero-content {
    padding: 40px 0 32px;
  }

  .blog-article {
    padding: 0 16px;
  }

  .blog-article-body h2 {
    font-size: 1.35rem;
    margin: 40px 0 16px;
  }

  .blog-cta {
    padding: 32px 24px;
  }

  .blog-pullquote p {
    font-size: 1.15rem;
  }
}

@media (max-width: 480px) {
  .blog-hero {
    height: 420px;
  }

  .blog-hero-content h1 {
    font-size: 1.5rem;
  }

  .blog-meta {
    gap: 12px;
  }
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-content {
  width: 45%;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.timeline-content h4 {
  color: var(--primary);
  margin-bottom: 8px;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background: var(--accent);
  border: 4px solid var(--white);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form .form-group {
  margin-bottom: 24px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--light-2);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(201, 149, 93, 0.15);
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-info-card {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-info-item .icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(201, 149, 93, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  color: var(--white);
  margin-bottom: 4px;
  font-size: 1rem;
}

.contact-info-item p {
  color: var(--gray);
  margin: 0;
  font-size: 0.9rem;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  margin-top: 60px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: var(--gray);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 20px;
}

.footer-logo img {
  height: 44px;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--gray);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* ===== WHATSAPP FLOATING ===== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 64px;
  height: 64px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

@keyframes pulse-wa {

  0%,
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
  }
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 200px 0 100px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-header p {
  color: var(--gray-light);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--gray);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  color: var(--accent);
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Demo image placeholders */
.placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.3);
}

.placeholder-img.banyo {
  background: linear-gradient(135deg, #1a2840, #2a5090);
}

.placeholder-img.mutfak {
  background: linear-gradient(135deg, #2d1a0e, #7a4a2a);
}

.placeholder-img.seramik {
  background: linear-gradient(135deg, #1a2e1a, #3a6a3a);
}

.placeholder-img.havlupan {
  background: linear-gradient(135deg, #2a1a2e, #6a3a7a);
}

.placeholder-img.yapi {
  background: linear-gradient(135deg, #2e2a1a, #6a5a2a);
}

.placeholder-img.blog {
  background: linear-gradient(135deg, #1a2a3e, #3a6a9a);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-preview {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-image {
    display: none;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-stats {
    gap: 32px;
  }

  .mega-products-right {
    grid-template-columns: repeat(2, 1fr);
  }

  .mega-brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .mega-menu-inner {
    gap: 32px;
    padding: 32px 24px;
  }

  .mega-products-left {
    flex: 0 0 220px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(27, 29, 33, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    backdrop-filter: blur(20px);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links>a,
  .nav-has-mega>a {
    font-size: 1.3rem;
    padding: 16px 32px;
  }

  .hamburger {
    display: flex;
  }

  .mega-menu {
    display: none !important;
  }

  .nav-has-mega {
    display: block;
  }

  .nav-has-mega>a .nav-arrow {
    display: none;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero {
    padding-top: 120px;
  }

  .category-card {
    height: 280px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .filter-bar {
    gap: 6px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .products-layout {
    grid-template-columns: 1fr;
  }

  .product-filters {
    position: static;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd) {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 50px;
  }

  .timeline-content {
    width: 100%;
  }

  .timeline-dot {
    left: 20px;
  }

  .about-preview-image {
    height: 350px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  .container {
    padding: 0 16px;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }

  .page-header {
    padding: 170px 0 70px;
  }
}

/* ===== BRAND SHOWCASE CARDS ===== */
.brand-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2) !important;
}
.brand-showcase-card:hover img {
  transform: scale(1.08);
}

/* Secondary brand tags hover */
#markalar-vitrin .reveal div[style*="flex-wrap"] a:hover {
  background: var(--accent) !important;
  color: #fff !important;
  border-color: var(--accent) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201,149,93,0.3);
}

@media (max-width: 768px) {
  .brand-showcase-card {
    height: 260px !important;
  }
}