﻿
.top-bar {
  background: linear-gradient(90deg, #78350F 0%, #B45309 50%, #78350F 100%);
  color: #FEF3C7;
  font-size: 0.85rem;
  padding: 0.55rem 0;
  text-align: center;
  font-weight: 500;
  border-bottom: 1px solid rgba(245, 158, 11, 0.3);
}

.top-bar strong {
  color: #FFFFFF;
}


.header {
  background: rgba(255, 253, 247, 0.95);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--bg-dark);
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #F59E0B, #D97706);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

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

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

.nav-link:hover {
  color: var(--primary-gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-btn {
  background: var(--bg-dark);
  color: white;
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 19, 4, 0.2);
}

.cart-badge {
  background: var(--primary-gold);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.footer {
  background: var(--bg-dark);
  color: #FEF3C7;
  padding: 4rem 0 2rem;
  margin-top: auto;
  border-top: 1px solid rgba(245, 158, 11, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer h4 {
  font-family: var(--font-heading);
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

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

.footer-links a {
  color: #D1D5DB;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #9CA3AF;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Cookie Consent Banner */
.cookie-banner-wrap {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  max-width: 520px;
  background: rgba(30, 19, 4, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid var(--primary-gold);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  z-index: 10000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  animation: slideUpCookie 0.4s ease forwards;
}

.cookie-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.cookie-header h4 {
  font-family: var(--font-heading);
  color: white;
  font-size: 1.1rem;
}

.cookie-desc {
  font-size: 0.85rem;
  color: #D1D5DB;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.cookie-desc a {
  color: var(--accent-honey);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .nav-menu { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}
