/* ==========================================================================
   Aday Dayanıklı Tüketim Malları - 1-to-1 Wix Reference Design System
   ========================================================================== */

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

:root {
  --bg-main: #f0f0f0;
  --bg-white: #ffffff;
  --bg-dark: #111111;
  --text-dark: #111111;
  --text-muted: #555555;
  --text-red: #d90429;
  --text-blue: #005691;
  --border-dark: #111111;
  --border-light: #e0e0e0;
  --font-heading: 'Outfit', 'Open Sans', sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navbar */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4px;
  background: #fff;
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-menu-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.35rem;
  color: var(--text-dark);
  cursor: pointer;
  padding: 0.5rem;
  outline: none;
}

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

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-menu a:hover, .nav-menu a.active {
  color: var(--text-red);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-icons a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
  background: var(--text-red);
}

.search-box-wix {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-dark);
  background: var(--bg-white);
  padding: 0.4rem 0.8rem;
  border-radius: 2px;
}

.search-box-wix input {
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 0.9rem;
  width: 140px;
}

.search-box-wix i {
  color: #666;
  font-size: 0.9rem;
}

/* Pages Display Controller */
.page-view {
  display: none;
}

.page-view.active {
  display: block;
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #222;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay-card {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.92);
  padding: 2.5rem;
  max-width: 520px;
  border-radius: 2px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  z-index: 10;
}

.hero-overlay-card h2 {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-overlay-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.wix-btn {
  display: inline-block;
  padding: 0.65rem 2rem;
  background: var(--bg-white);
  color: var(--text-dark);
  border: 1px solid var(--border-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.wix-btn:hover {
  background: var(--text-dark);
  color: var(--bg-white);
}

.wix-watermark-logo {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 1rem;
  pointer-events: none;
}

.wix-watermark-logo img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.wix-watermark-logo span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Store Front Banner */
.store-banner {
  margin: 3rem 0;
  text-align: center;
}

.store-banner-img-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.store-banner-img-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.store-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-banner-title {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.section-headline {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 3rem 0 2rem 0;
  color: var(--text-dark);
}

/* En Çok Satılanlar Grid */
.best-sellers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.best-seller-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  display: flex;
  min-height: 380px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.best-seller-img {
  width: 50%;
  height: 100%;
  object-fit: cover;
}

.best-seller-content {
  width: 50%;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.best-seller-tag {
  color: var(--text-red);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.best-seller-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.best-seller-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

/* Contact Section */
.contact-section-wix {
  background: #e9e9e9;
  padding: 4rem 1.5rem;
  text-align: center;
  margin-bottom: 3rem;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.contact-logo-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid #ccc;
  background: #fff;
  margin: 0 auto 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.contact-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-heading {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.contact-address {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.contact-phones-list {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-phones-list span {
  color: var(--text-muted);
}

.contact-social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

/* Markalar Hero & Filter Bar */
.brands-hero {
  background: linear-gradient(135deg, #111111 0%, #222222 100%);
  color: #ffffff;
  padding: 3.5rem 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  border-bottom: 4px solid var(--text-red);
}

.brands-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.brands-hero p {
  font-size: 1.05rem;
  color: #dddddd;
  max-width: 720px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}

.brand-filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.filter-btn {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.55rem 1.35rem;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--text-red);
  color: #ffffff;
  border-color: var(--text-red);
}

/* Enhanced Wix Brand Card with Image */
.brands-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem 0 5rem 0;
}

.wix-brand-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.wix-brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

.wix-brand-img-box {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  border-bottom: 1px solid #f0f0f0;
}

.wix-brand-img-box img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.wix-brand-card:hover .wix-brand-img-box img {
  transform: scale(1.08);
}

.wix-brand-category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--bg-dark);
  color: var(--bg-white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.wix-brand-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  text-align: center;
}

.wix-brand-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.wix-brand-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  flex-grow: 1;
}

.wix-brand-card-content .wix-btn {
  width: 100%;
}

/* Kampanyalar Page Cards */
.campaigns-page-container {
  padding: 3rem 0 5rem 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.wix-campaign-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  align-items: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.wix-campaign-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.wix-campaign-body h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--text-red);
  margin-bottom: 1rem;
}

.wix-campaign-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Footer */
footer {
  background: #e0e0e0;
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid var(--border-light);
  font-size: 0.85rem;
  color: var(--text-muted);
}

footer p {
  margin-bottom: 0.35rem;
}

/* Responsive Mobile Design */
@media (max-width: 868px) {
  .navbar {
    height: 70px;
    position: relative;
  }

  .logo-circle {
    width: 46px;
    height: 46px;
  }

  .brand-text {
    font-size: 1rem;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 6px;
    background: #f4f4f4;
    border: 1px solid #ddd;
  }

  .nav-menu-wrapper {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 1.25rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid var(--text-red);
    display: none;
    z-index: 1000;
  }

  .nav-menu-wrapper.active {
    display: flex;
    animation: fadeInDown 0.25s ease-out;
  }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .nav-menu li a {
    display: block;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
    border: 1px solid #eee;
  }

  .nav-menu li a.active {
    background: var(--text-red);
    color: #fff;
    border-color: var(--text-red);
  }

  .nav-right {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
  }

  .social-icons {
    justify-content: center;
  }

  .search-box-wix {
    width: 100%;
  }

  .search-box-wix input {
    width: 100%;
  }

  /* Hero Carousel Mobile */
  .hero-carousel {
    height: auto;
    min-height: 440px;
  }

  .hero-overlay-card {
    position: absolute;
    left: 5%;
    right: 5%;
    bottom: 1.5rem;
    top: auto;
    transform: none;
    max-width: none;
    width: 90%;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  }

  .hero-overlay-card h2 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
  }

  .hero-overlay-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .wix-btn {
    width: 100%;
    padding: 0.75rem 1rem;
  }

  .wix-watermark-logo {
    top: 1rem;
    right: 1rem;
    transform: none;
    width: 75px;
    height: 75px;
    padding: 0.4rem;
    background: rgba(0,0,0,0.45);
    border-color: rgba(255,255,255,0.4);
  }

  .wix-watermark-logo img {
    width: 32px;
    height: 32px;
  }

  .wix-watermark-logo span {
    display: none;
  }

  /* Store Front Banner Mobile */
  .store-banner {
    margin: 1.5rem 0;
  }

  .store-banner-img-wrapper img {
    height: 220px;
  }

  .store-banner-title {
    font-size: 1.75rem;
    letter-spacing: 0.04em;
  }

  .section-headline {
    font-size: 1.4rem;
    margin: 2rem 0 1.25rem 0;
  }

  /* Best Sellers Grid & Cards Mobile */
  .best-sellers-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .best-seller-card {
    flex-direction: column;
    min-height: auto;
    border-radius: 8px;
    overflow: hidden;
  }

  .best-seller-img {
    width: 100%;
    height: 220px;
  }

  .best-seller-content {
    width: 100%;
    padding: 1.25rem 1rem;
  }

  .best-seller-tag {
    font-size: 1.2rem;
  }

  .best-seller-title {
    font-size: 1.05rem;
  }

  .best-seller-desc {
    font-size: 0.88rem;
    margin-bottom: 1.25rem;
  }

  /* Contact Section Mobile */
  .contact-section-wix {
    padding: 2.5rem 1rem;
    margin-bottom: 2rem;
  }

  .contact-logo-circle {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
  }

  .contact-heading {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .contact-phones-list {
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.9rem;
  }

  .contact-phones-list div {
    background: #fff;
    padding: 0.65rem 1rem;
    border-radius: 6px;
    border: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Brands Grid Mobile */
  .brands-hero {
    padding: 2.5rem 1rem 2rem 1rem;
  }

  .brands-hero h1 {
    font-size: 1.65rem;
  }

  .brands-hero p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .brand-filter-bar {
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .filter-btn {
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
  }

  .brands-page-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
    padding: 1.5rem 0 3rem 0;
  }

  .wix-brand-img-box {
    height: 160px;
    padding: 1rem;
  }

  .wix-brand-card-title {
    font-size: 1.2rem;
  }

  .wix-brand-card-desc {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  /* Campaigns Page Mobile */
  .campaigns-page-container {
    padding: 1.5rem 0 3rem 0;
    gap: 1.5rem;
  }

  .wix-campaign-card {
    grid-template-columns: 1fr;
    padding: 1.25rem;
    gap: 1.25rem;
    border-radius: 8px;
  }

  .wix-campaign-img {
    height: 180px;
    border-radius: 4px;
  }

  .wix-campaign-body h3 {
    font-size: 1.35rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .brand-text {
    font-size: 0.9rem;
  }

  .brands-page-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stock Status Badges & Cards */
.stock-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stock-badge.in_stock {
  background-color: #2b9348;
  color: #ffffff;
}

.stock-badge.out_of_stock {
  background-color: #d90429;
  color: #ffffff;
}

.stock-badge.on_order {
  background-color: #e07a5f;
  color: #ffffff;
}

/* Brand Stock Modal / Grid */
.stock-product-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.stock-product-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 6px;
  background: #fafafa;
  padding: 4px;
  border: 1px solid #eee;
}

.stock-product-info {
  flex-grow: 1;
}

.stock-product-info h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.stock-product-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Dynamic Price Link & Notice Banner */
.price-notice-banner {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 0.85rem 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #166534;
  font-size: 0.88rem;
  box-shadow: 0 2px 8px rgba(22, 101, 52, 0.06);
}

.price-notice-banner i {
  font-size: 1.25rem;
  color: #15803d;
  flex-shrink: 0;
}

.dynamic-price-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 13px;
  border-radius: 20px;
  text-decoration: none !important;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.dynamic-price-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #ffffff !important;
}

.dynamic-price-btn i.fa-money-bill-wave {
  font-size: 0.85rem;
  animation: pulseMoney 2s infinite ease-in-out;
}

@keyframes pulseMoney {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* ==========================================================================
   Product Stock Cards & Multi-Photo Styles
   ========================================================================== */
.stock-product-card-container {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}

.stock-product-card-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.09);
  border-color: #cbd5e1;
}

.stock-card-media {
  position: relative;
  width: 100%;
  height: 220px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow: hidden;
}

.stock-card-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.stock-product-card-container:hover .stock-card-media img {
  transform: scale(1.05);
}

.photo-count-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(17, 24, 39, 0.75);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
}

.btn-product-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #1e293b;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-product-detail:hover {
  background: #d90429;
  color: #ffffff !important;
}

/* ==========================================================================
   PRODUCT DETAIL PAGE STYLES (urun-detay.html)
   ========================================================================== */
.product-detail-wrapper {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

@media (max-width: 900px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Gallery Section */
.gallery-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-main-stage {
  position: relative;
  width: 100%;
  height: 380px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-main-stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.gallery-zoom-hint {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  color: #475569;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}

.gallery-main-stage:hover .gallery-zoom-hint {
  background: #d90429;
  color: #ffffff;
}

.gallery-thumbs-row {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
}

.thumb-item {
  width: 75px;
  height: 75px;
  flex-shrink: 0;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
  padding: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thumb-item.active, .thumb-item:hover {
  border-color: #d90429;
  box-shadow: 0 0 0 2px rgba(217, 4, 41, 0.2);
}

/* Info Column */
.product-info-col {
  display: flex;
  flex-direction: column;
}

.product-brand-tag {
  display: inline-block;
  color: #005691;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.product-detail-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.product-meta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f5f9;
}

.stock-status-pill {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

.stock-status-pill.in_stock {
  background: #dcfce7;
  color: #15803d;
}

.stock-status-pill.out_of_stock {
  background: #fee2e2;
  color: #b91c1c;
}

.stock-status-pill.on_order {
  background: #ffedd5;
  color: #c2410c;
}

.product-price-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.product-price-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: #d90429;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-desc-box {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.6;
}

/* Specifications Table */
.specs-section {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.specs-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.specs-list {
  list-style: none;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
}

.specs-list li {
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  color: #475569;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 8px;
}

.specs-list li:last-child {
  border-bottom: none;
}

.specs-list li i {
  color: #005691;
  font-size: 0.8rem;
}

/* Store Call Box */
.store-call-box {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #ffffff;
  border-radius: 10px;
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.store-call-info h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.store-call-info p {
  font-size: 0.82rem;
  color: #94a3b8;
}

.btn-store-call {
  background: #d90429;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1.25rem;
  border-radius: 6px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease;
}

.btn-store-call:hover {
  background: #ef233c;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

/* ==========================================================================
   PREMIUM CUSTOM PRODUCT LINK & SPEC TABLE STYLES
   ========================================================================== */
.btn-product-external-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none !important;
  box-shadow: 0 2px 10px rgba(2, 132, 199, 0.25);
  transition: all 0.25s ease;
}

.btn-product-external-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.4);
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
  color: #ffffff !important;
}

.specs-table-wrapper {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.specs-table tbody tr {
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.15s ease;
}

.specs-table tbody tr:last-child {
  border-bottom: none;
}

.specs-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.specs-table tbody tr:hover {
  background: #f1f5f9;
}

.spec-label {
  padding: 0.75rem 1rem;
  font-weight: 700;
  color: #1e293b;
  width: 45%;
  border-right: 1px solid #f1f5f9;
}

.spec-val {
  padding: 0.75rem 1rem;
  color: #475569;
  font-weight: 600;
}

.spec-single {
  padding: 0.75rem 1rem;
  color: #334155;
  font-weight: 600;
}



