/* GENEL AYARLAR */
:root {
  --bg-main: #050509;
  --bg-elevated: #101018;
  --bg-soft: #181821;
  --gold: #d4af37;
  --gold-soft: #f0d98a;
  --text-main: #f5f5f5;
  --text-muted: #b7b7c5;
  --danger: #ff4b5c;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.7);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --transition-fast: 0.18s ease-out;
  --transition-med: 0.25s ease-out;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top left, #26212c 0, #050509 48%, #000 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.section {
  padding: 96px 0;
}

.section:nth-of-type(odd) {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.01), transparent);
}

.section-inner {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.65));
  border-radius: 28px;
  padding: 40px 32px 44px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
}

.section-inner.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 40px;
  align-items: flex-start;
}

.section-header {
  margin-bottom: 26px;
}

.section-header.center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}

.section-kicker {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--gold-soft);
  margin: 0 0 10px;
}

.section-header h2 {
  font-size: 28px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.section-description {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(26px);
  background: linear-gradient(
      to bottom,
      rgba(5, 5, 9, 0.96),
      rgba(5, 5, 9, 0.88),
      rgba(5, 5, 9, 0.7)
    );
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 22px 32px;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 200px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.logo-group:hover {
  opacity: 0.8;
}

.logo-img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.3;
}

.brand-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-end;
}

.nav-link {
  position: relative;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--text-muted);
  transition: background var(--transition-fast), color var(--transition-fast),
    transform var(--transition-fast);
  white-space: nowrap;
  font-size: 13px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: radial-gradient(circle at center, var(--gold), transparent);
  opacity: 0;
  transform: scaleX(0.6);
  transform-origin: center;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.nav-link.active {
  color: #000;
  background: linear-gradient(135deg, var(--gold), #f7e7a0);
  font-weight: 500;
}

.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  border: 1px solid rgba(212, 175, 55, 0.9);
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.2), transparent);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.4);
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}

.mobile-menu-toggle span {
  height: 2px;
  width: 16px;
  border-radius: 99px;
  background: #fff;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.mobile-menu-toggle.open span:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}

.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
  transform: translateY(-3px) rotate(-45deg);
}

/* KAMPANYA ŞERİDİ */
.promo-bar {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 10px 0;
}

.promo-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.promo-pill {
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: #000;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.promo-text a {
  color: var(--gold-soft);
  text-decoration: underline;
}

/* BUTONLAR */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
  white-space: nowrap;
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold), #f7e7a0);
  color: #000;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.9);
}

.btn.primary:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 1);
}

.btn.ghost {
  background: transparent;
  color: var(--gold-soft);
  border: 1px solid rgba(212, 175, 55, 0.6);
}

.btn.ghost:hover {
  background: rgba(212, 175, 55, 0.12);
}

.btn.outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text-main);
}

.btn.small {
  font-size: 13px;
  padding: 9px 18px;
}

.btn.full {
  width: 100%;
}

/* HERO */
.hero-section {
  padding-top: 110px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  margin: 0 0 10px;
  font-size: 34px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  color: var(--gold-soft);
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.hero-content .highlight {
  font-size: 22px;
  color: var(--gold-soft);
}

.hero-description {
  margin: 10px 0 26px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.hero-meta span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.4);
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-frame {
  border-radius: 26px;
  padding: 8px;
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.6), #050509);
  box-shadow: var(--shadow-soft);
}

.hero-image {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: contain;
  object-position: center;
  border: 1px solid rgba(0, 0, 0, 0.6);
  background: transparent;
  padding: 20px;
}

.hero-badge {
  position: absolute;
  left: -18px;
  bottom: 22px;
  padding: 10px 16px;
  border-radius: 20px;
  background: rgba(5, 5, 9, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
}

.badge-title {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.badge-subtitle {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

/* İSTATİSTİKLER */
.stats-section {
  padding: 60px 0;
  background: linear-gradient(to bottom, rgba(212, 175, 55, 0.05), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.stat-card {
  text-align: center;
  padding: 24px 16px;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.85), rgba(40, 32, 15, 0.75));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* HAKKIMIZDA */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.92), rgba(40, 32, 15, 0.82));
  border-radius: var(--radius-md);
  padding: 16px 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.7);
}

.info-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.info-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ÜRÜNLER & FİYAT LİSTESİ */
.products-section .section-inner {
  display: flex;
  flex-direction: column;
}

.price-list-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.price-list-image-frame {
  border-radius: 24px;
  padding: 8px;
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.5), #050509);
  box-shadow: var(--shadow-soft);
}

.price-list-image {
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.7);
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.product-highlight h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.product-highlight ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--text-muted);
}

.product-highlight li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}

.product-highlight li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--gold-soft);
}

.product-table-card {
  margin-top: 32px;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.9), rgba(40, 32, 15, 0.8));
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-table-header {
  margin-bottom: 18px;
}

.product-table-header h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.product-table-note {
  font-size: 12px;
  color: var(--text-muted);
}

.product-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-table-row {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 2fr;
  gap: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 14px;
}

.product-table-row.product-table-category {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border-color: rgba(212, 175, 55, 0.2);
  font-weight: 600;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  grid-template-columns: 1fr;
  text-align: center;
  margin-top: 8px;
}

.product-table-row.product-table-category:first-of-type {
  margin-top: 0;
}

.product-table-head {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
  font-weight: 600;
  color: var(--gold-soft);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
}

/* SİPARİŞ FORMU */
.order-notes {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  font-size: 14px;
  color: var(--text-muted);
}

.order-notes li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.order-notes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-soft);
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row label {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-soft);
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.5);
  color: var(--text-main);
  font-size: 14px;
  font-family: inherit;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.7);
}

.form-row textarea {
  resize: vertical;
  min-height: 80px;
}

.form-info {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

/* TARİFLER */
.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.recipe-card {
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.9), rgba(40, 32, 15, 0.8));
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
  position: relative;
}

.recipe-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--gold);
  color: #000;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.recipe-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.recipe-intro {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.recipe-section {
  margin-bottom: 12px;
}

.recipe-section h4 {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--gold-soft);
}

.recipe-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.recipe-section li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 4px;
}

.recipe-section li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--gold-soft);
}

.recipe-section p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* GALERİ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  background: #000;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-med), opacity var(--transition-med);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0, rgba(0, 0, 0, 0.6) 75%);
  opacity: 0;
  transition: opacity var(--transition-med);
}

.gallery-caption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--transition-med), transform var(--transition-med);
  z-index: 1;
}

.gallery-item:hover img {
  transform: scale(1.04);
  opacity: 0.96;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* YORUMLAR */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.9), rgba(40, 32, 15, 0.8));
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

.testimonial-text {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--gold-soft);
}

.testimonial-location {
  font-size: 12px;
  color: var(--text-muted);
}

/* SSS */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.85), rgba(40, 32, 15, 0.75));
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 16px 18px;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-icon {
  font-size: 24px;
  color: var(--gold-soft);
  transition: transform var(--transition-fast);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-med);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 18px 16px;
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* İLETİŞİM */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.contact-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 10px;
  font-size: 14px;
}

.contact-label {
  font-weight: 500;
  color: var(--gold-soft);
}

.contact-value {
  color: var(--text-muted);
}

.contact-card {
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.96), rgba(35, 26, 10, 0.95));
  border-radius: 22px;
  padding: 20px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.contact-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.contact-card p {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}

.contact-note {
  font-size: 12px;
  color: var(--text-muted);
}

.map-wrapper {
  margin-top: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-wrapper iframe {
  width: 100%;
  height: 280px;
  border: none;
  display: block;
}

.map-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--gold-soft);
  text-decoration: underline;
}

/* ÇALIŞMA SAATLERİ WIDGET */
.hours-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  margin-bottom: 8px;
}

.hours-status.closed {
  background: rgba(255, 75, 92, 0.15);
  border-color: rgba(255, 75, 92, 0.3);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  animation: pulse-dot 2s infinite;
}

.hours-status.closed .status-dot {
  background: #ff4b5c;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.status-text {
  font-size: 13px;
  font-weight: 500;
  color: #25d366;
}

.hours-status.closed .status-text {
  color: #ff4b5c;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.08), #050509 65%);
  padding: 18px 0 20px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-brand {
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}

.footer-location {
  display: block;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.footer-right a {
  color: var(--gold-soft);
}

.footer-copy {
  font-size: 11px;
}

/* YUKARI ÇIK BUTONU */
.scroll-to-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #f7e7a0);
  border: 2px solid rgba(0, 0, 0, 0.3);
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity var(--transition-med), transform var(--transition-med), visibility var(--transition-med);
  z-index: 40;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 1);
}

/* WHATSAPP SABİT BUTON */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  z-index: 40;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.7);
}

@keyframes pulse-whatsapp {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.8);
  }
}

/* GALERİ LIGHTBOX */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-med);
}

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

.lightbox-image {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    gap: 28px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content .highlight {
    font-size: 19px;
  }

  .section-inner {
    padding: 32px 22px 32px;
  }

  .section-inner.two-col {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }
}

@media (max-width: 780px) {
  .section {
    padding: 78px 0;
  }

  .header-inner {
    padding-inline: 16px;
    gap: 16px;
    justify-content: space-between;
  }
  
  .logo-group {
    flex: 1;
    min-width: 0;
  }
  
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .main-nav {
    position: absolute;
    inset: 54px 16px auto 16px;
    padding: 12px 12px;
    border-radius: 18px;
    background: rgba(5, 5, 9, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity var(--transition-med), transform var(--transition-med);
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    padding-block: 8px;
    padding-inline: 12px;
  }

  .nav-link.active {
    justify-content: center;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .hero-section {
    padding-top: 90px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-image-wrapper {
    order: -1;
  }

  .hero-image {
    max-height: 320px;
  }

  .hero-badge {
    left: 8px;
    bottom: 14px;
  }

  .section-inner.two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .price-list-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }
  
  .price-list-image-frame {
    padding: 8px;
  }
  
  .price-list-image {
    width: 100%;
    height: auto;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .stat-number {
    font-size: 28px;
  }

  .recipes-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    align-items: flex-start;
  }

  .scroll-to-top {
    bottom: 90px;
    right: 20px;
  }
  
  .scroll-to-top,
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
  }

  .scroll-to-top {
    right: 20px;
  }

  .whatsapp-float {
    right: 20px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .section-inner {
    padding: 26px 18px 26px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content .highlight {
    font-size: 17px;
  }

  .product-table-row {
    grid-template-columns: 1.1fr 0.4fr 1.4fr;
    gap: 8px;
  }

  .promo-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .stat-number {
    font-size: 32px;
  }
}

/* ET KESİM SÜRECİ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.process-step {
  text-align: center;
  padding: 24px 16px;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.85), rgba(40, 32, 15, 0.75));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.process-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #f7e7a0);
  color: #000;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.process-step h3 {
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--gold-soft);
}

.process-step p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ÜRÜN KARŞILAŞTIRMA */
.compare-wrapper {
  margin-top: 32px;
}

.compare-selectors {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.compare-select {
  flex: 1;
  min-width: 200px;
}

.compare-select label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-soft);
}

.compare-select select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.5);
  color: var(--text-main);
  font-size: 14px;
  font-family: inherit;
}

.compare-vs {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  padding-bottom: 8px;
}

.compare-results {
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.9), rgba(40, 32, 15, 0.8));
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 200px;
}

.compare-placeholder {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
  padding: 40px 20px;
}

.compare-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.compare-item {
  padding: 16px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-item h4 {
  margin: 0 0 12px;
  font-size: 18px;
  color: var(--gold-soft);
}

.compare-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.compare-item li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.compare-item li:last-child {
  border-bottom: none;
}

.compare-item li strong {
  color: var(--text-main);
}

/* BLOG & HABERLER */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.blog-card {
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.9), rgba(40, 32, 15, 0.8));
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
}

.blog-date {
  font-size: 11px;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.blog-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.4;
}

.blog-excerpt {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gold-soft);
  font-weight: 500;
  transition: gap var(--transition-fast);
}

.blog-read-more:hover {
  gap: 10px;
}

/* VİDEO BÖLÜMÜ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.video-card {
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.9), rgba(40, 32, 15, 0.8));
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

.video-placeholder {
  width: 100%;
  height: 200px;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
}

.video-placeholder svg {
  color: var(--gold-soft);
  opacity: 0.5;
}

.video-placeholder p {
  margin: 0;
  font-size: 13px;
}

.video-wrapper {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  position: relative;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-card h3 {
  margin: 16px 16px 8px;
  font-size: 16px;
}

.video-card p {
  margin: 0 16px 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.video-note {
  margin-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

/* SERTİFİKA & BELGELER */
.certificates-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.certificate-card {
  text-align: center;
  padding: 24px 16px;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.85), rgba(40, 32, 15, 0.75));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

.certificate-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #f7e7a0);
  color: #000;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.certificate-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.certificate-card p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* YILDIZ SİSTEMİ */
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.star {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.2);
}

.star.filled {
  color: var(--gold);
}

/* SOSYAL MEDYA LİNKLERİ */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  transition: background var(--transition-fast), transform var(--transition-fast), color var(--transition-fast);
}

.social-link:hover {
  background: rgba(212, 175, 55, 0.15);
  transform: translateY(-2px);
  color: var(--gold);
}

/* RESPONSIVE: Yeni Bölümler */
@media (max-width: 780px) {
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compare-selectors {
    flex-direction: column;
  }

  .compare-vs {
    padding: 0;
    text-align: center;
  }

  .compare-table {
    grid-template-columns: minmax(0, 1fr);
  }

  .blog-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .video-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .certificates-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .certificates-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ============================================
   YENİ ÖZELLİKLER - Loading, Cookie, Stok, Paketler, Social Share
   ============================================ */

/* Loading Animasyonu */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  color: var(--text-primary);
}

.loader-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.loader-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loader-spinner {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border: 4px solid rgba(212, 175, 55, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loader-content p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border-top: 2px solid var(--gold);
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-content p {
  flex: 1;
  min-width: 250px;
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

/* Haftalık Özel Fırsatlar */
.weekly-deals {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #1a1a1a;
  padding: 16px 0;
  position: relative;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.weekly-deals.hidden {
  display: none;
}

.weekly-deals-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.weekly-badge {
  background: #1a1a1a;
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.weekly-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
}

.weekly-text a {
  color: #1a1a1a;
  text-decoration: underline;
  font-weight: 600;
}

.weekly-close {
  background: transparent;
  border: none;
  color: #1a1a1a;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.weekly-close:hover {
  background: rgba(0, 0, 0, 0.1);
}

/* Canlı Stok Durumu */
.stock-status-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 40px;
}

.stock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.stock-header h3 {
  font-size: 20px;
  color: var(--text-primary);
  margin: 0;
}

.stock-update {
  font-size: 12px;
  color: var(--text-muted);
}

.stock-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.stock-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-primary);
}

.stock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.stock-item.available .stock-dot {
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

.stock-item.limited .stock-dot {
  background: #f59e0b;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

.stock-item.out-of-stock .stock-dot {
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

.stock-badge {
  margin-left: auto;
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}

.stock-note {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  text-align: center;
}

/* Hızlı Sipariş Butonu */
.quick-order-btn {
  display: inline-block;
  margin-left: 12px;
  padding: 4px 12px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.quick-order-btn:hover {
  background: rgba(212, 175, 55, 0.25);
  transform: translateY(-1px);
}

/* Mangal Paketleri */
.packages-section {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.package-card {
  background: var(--card-bg);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--gold);
}

.package-card.featured {
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.package-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--gold);
  color: var(--bg-dark);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package-card h3 {
  font-size: 24px;
  color: var(--text-primary);
  margin: 0 0 16px 0;
}

.package-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
}

.package-items {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.package-items li {
  padding: 10px 0;
  color: var(--text-primary);
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  padding-left: 24px;
}

.package-items li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.package-items li:last-child {
  border-bottom: none;
}

/* Blog Footer & Social Share */
.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-share {
  display: flex;
  gap: 8px;
}

.share-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.2s ease;
}

.share-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

/* Print Styles */
@media print {
  .site-header,
  .promo-bar,
  .weekly-deals,
  .cookie-consent,
  .scroll-to-top,
  .whatsapp-float,
  .mobile-menu-toggle,
  .hero-actions,
  .contact-actions,
  .btn,
  .social-share,
  .quick-order-btn,
  .stock-status-card,
  .packages-section {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .section-inner {
    box-shadow: none;
    border: 1px solid #ddd;
    page-break-inside: avoid;
  }

  .product-table-row {
    page-break-inside: avoid;
  }
}
