/* ========== CUSTOM PROPERTIES & DESIGN TOKENS ========== */
:root {
  --color-primary: #0b0b0b;
  --color-accent: #d4af37;
  --color-secondary: #f7f3ee;
  --color-tertiary: #bfbfbf;
  --color-text-light: #f7f3ee;
  --color-text-muted: #999;
  --color-border: rgba(212, 175, 55, 0.2);

  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  --transition-smooth: all 0.3s ease-out;
  --transition-glow: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ========== GLOBAL STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

/* ========== TYPOGRAPHY ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

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

/* ========== UTILITY CLASSES ========== */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--color-accent);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--color-tertiary);
  margin-bottom: 4rem;
  font-weight: 300;
}

.divider-small {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  margin: 1.5rem 0;
}

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  backdrop-filter: none;
  transition: var(--transition-smooth);
  padding: 1.5rem 0;
}

.navbar.sticky {
  background-color: rgba(11, 11, 11, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 2px;
  transition: var(--transition-glow);
}

.navbar-logo:hover {
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.logo-flower {
  transition: transform 0.6s ease-out;
}

.navbar-logo:hover .logo-flower {
  transform: rotate(180deg);
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

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

.nav-link {
  font-size: 0.95rem;
  color: var(--color-text-light);
  position: relative;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--color-accent);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

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

.navbar-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.navbar-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--color-accent);
  margin: 3px 0;
  transition: var(--transition-smooth);
  border-radius: 2px;
}

/* ========== CART LINK IN NAVBAR ========== */
.cart-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--color-accent);
  color: var(--color-primary);
  font-size: 0.7rem;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== ANNOUNCEMENT SECTION ========== */
.announcement-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, rgba(0, 0, 0, 0.02) 100%);
  position: relative;
}

.announcement-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.announcement-content {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 2.5rem;
  margin: 0 auto;
  max-width: 850px;
  position: relative;
  z-index: 1;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(212, 175, 55, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.announcement-content:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(212, 175, 55, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.announcement-image-wrapper {
  text-align: center;
  margin-top: 2rem;
}

.announcement-image {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 20px;
  border: 3px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.announcement-image:hover {
  border-color: var(--color-accent);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.2);
  transform: scale(1.05);
}

.announcement-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.announcement-header::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.announcement-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  display: inline-block;
  background: rgba(212, 175, 55, 0.1);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.announcement-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.announcement-text {
  font-size: 1.1rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
  opacity: 0.95;
}

/* ========== HERO SECTION ========== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  animation: fadeIn 1s ease-out;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--color-accent);
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
  font-weight: 900;
  letter-spacing: 4px;
  animation: glowPulse 3s ease-in-out infinite;
}

/* main hero logo (image replacement for textual title) */
.hero-logo {
  display: block;
  /* smaller default and max for a tighter hero */
  width: clamp(140px, 28vw, 360px);
  height: auto;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.6));
  -webkit-user-drag: none;
}

@media (max-width: 480px) {
  /* keep it smaller on mobile too */
  .hero-logo { width: clamp(120px, 40vw, 260px); margin-bottom: 0.5rem; }
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  font-weight: 300;
  line-height: 1.4;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--color-tertiary);
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  background-color: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  letter-spacing: 1px;
  font-weight: 600;
  text-align: center;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--color-accent);
  transition: left 0.4s ease-out;
  z-index: -1;
}

.cta-button:hover {
  color: var(--color-primary);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.cta-button:hover::before {
  left: 0;
}

.hero-image-wrapper {
  position: relative;
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: 500px;
  overflow: hidden;
  border-radius: 10px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* no hover animations — keep image static */
  transition: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), transparent);
  pointer-events: none;
}

/* ========== DECORATIVE DIVIDER ========== */
.decorative-divider {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.decorative-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
  z-index: -1;
}

.decorative-divider svg {
  width: 100%;
  max-width: 500px;
  opacity: 0.6;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.2));
  transition: var(--transition-smooth);
}

.decorative-divider:hover svg {
  opacity: 0.8;
  transform: scale(1.02);
}

/* ========== COLLECTION SECTION ========== */
.collection {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.02));
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.product-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
  transform: translateY(-5px);
}

.product-image-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
  background-color: rgba(212, 175, 55, 0.05);
}

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

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

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(11, 11, 11, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.view-button {
  background-color: var(--color-accent);
  color: var(--color-primary);
  border: none;
  padding: 0.8rem 1.8rem;
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition-smooth);
  font-family: var(--font-body);
}

.view-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.product-content {
  padding: 1.5rem;
}

.product-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
}

.product-description {
  font-size: 0.9rem;
  color: var(--color-tertiary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* product-price removed (prices hidden in UI) */

/* ========== PRODUCT DETAIL PAGE ========== */
.product-detail {
  padding: 8rem 2rem 4rem;
  min-height: 100vh;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-tertiary);
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.back-link:hover {
  color: var(--color-accent);
}

.product-detail-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
}

.product-detail-image {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.product-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-detail-content {
  flex: 1;
  min-width: 280px;
}

.product-detail-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.product-detail-price {
  font-size: 2rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.product-detail-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-tertiary);
  margin-bottom: 2rem;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.quantity-selector label {
  font-weight: 500;
}

.quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 4px;
}

.quantity-btn {
  background: transparent;
  border: none;
  color: var(--color-accent);
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.quantity-btn:hover {
  background-color: rgba(212, 175, 55, 0.1);
}

.quantity-controls input {
  width: 50px;
  text-align: center;
  border: none;
  background: transparent;
  color: var(--color-text-light);
  font-size: 1rem;
  font-family: var(--font-body);
}

.quantity-controls input::-webkit-inner-spin-button,
.quantity-controls input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.add-to-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--color-accent);
  color: var(--color-primary);
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: var(--transition-smooth);
  font-family: var(--font-body);
}

.add-to-cart-btn:hover {
  background-color: var(--color-text-light);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

/* ========== ABOUT SECTION ========== */
.about {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.02), transparent);
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
}

.about-image {
  position: relative;
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--color-border);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-out;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-content {
  flex: 1;
  min-width: 280px;
}

.about-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.about-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: rgba(212, 175, 55, 0.05);
  border-left: 3px solid var(--color-accent);
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.feature:hover {
  background-color: rgba(212, 175, 55, 0.1);
  transform: translateX(10px);
}

.feature svg {
  flex-shrink: 0;
}

/* ========== SERVICES SECTION ========== */
.services {
  padding: 6rem 2rem;
  background-color: rgba(212, 175, 55, 0.02);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
  border: 1px solid var(--color-border);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.service-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

.service-card:hover::before {
  top: -20%;
  right: -20%;
}

.service-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-icon svg {
  transition: transform 0.3s ease-out;
}

.service-card:hover .service-icon svg {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-light);
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--color-tertiary);
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

/* ========== CONTACT SECTION ========== */
.contact {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.02));
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-details {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item .label {
  font-weight: 600;
  color: var(--color-accent);
  font-size: 0.9rem;
}

.contact-item p {
  margin: 0;
  font-size: 0.95rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background-color: var(--color-accent);
  transform: translateY(-3px);
}

.social-icon:hover svg {
  stroke: var(--color-primary);
}

.contact-form {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-tertiary);
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--color-accent);
  box-shadow: 0 1px 0 0 var(--color-accent);
}

.input-border {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: var(--color-accent);
  transition: var(--transition-smooth);
}

.form-group input:focus ~ .input-border,
.form-group textarea:focus ~ .input-border {
  width: 100%;
}

.submit-button {
  background-color: var(--color-accent);
  color: var(--color-primary);
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-family: var(--font-body);
  cursor: pointer;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
  margin-top: 1rem;
}

.submit-button:hover {
  background-color: var(--color-text-light);
  color: var(--color-primary);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

/* ========== NOTIFICATION ========== */
.notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--color-accent);
  color: var(--color-primary);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease-out;
  z-index: 9999;
}

.notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* ========== CART PAGE ========== */
.cart-section {
  padding: 8rem 2rem 4rem;
  min-height: 100vh;
}

.cart-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.cart-items {
  flex: 2;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.cart-item-details {
  flex: 1;
  min-width: 150px;
}

.cart-item-details h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--color-text-light);
}

.cart-item-price {
  color: var(--color-tertiary);
  font-size: 0.9rem;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
}

.cart-item-total {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-accent);
  min-width: 70px;
  text-align: right;
}

.remove-btn {
  background: transparent;
  border: none;
  color: var(--color-tertiary);
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition-smooth);
}

.remove-btn:hover {
  color: #ff4444;
}

.cart-summary {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  position: sticky;
  top: 100px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2rem;
}

.cart-summary h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.summary-row.total {
  border-bottom: none;
  padding-top: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-accent);
}

.checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  background-color: var(--color-accent);
  color: var(--color-primary);
  padding: 1rem;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 1.5rem;
  transition: var(--transition-smooth);
}

.checkout-btn:hover {
  background-color: var(--color-text-light);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.continue-shopping {
  display: block;
  text-align: center;
  margin-top: 1rem;
  color: var(--color-tertiary);
  font-size: 0.95rem;
}

.continue-shopping:hover {
  color: var(--color-accent);
}

.empty-cart {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  gap: 1.5rem;
  width: 100%;
}

.empty-cart h2 {
  color: var(--color-text-light);
  font-size: 1.5rem;
}

.empty-cart p {
  color: var(--color-tertiary);
  max-width: 400px;
}

/* ========== CHECKOUT PAGE ========== */
.checkout-section {
  padding: 8rem 2rem 4rem;
  min-height: 100vh;
}

.checkout-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
}

.checkout-form {
  flex: 2;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-section {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2rem;
}

.form-section h3 {
  font-size: 1.2rem;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.form-row .form-group {
  flex: 1;
  min-width: 140px;
}

.checkout-form .form-group {
  margin-bottom: 1rem;
}

.checkout-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-tertiary);
}

.checkout-form .form-group input,
.checkout-form .form-group textarea {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.checkout-form .form-group input:focus,
.checkout-form .form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.checkout-form .form-group input::placeholder,
.checkout-form .form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.payment-option {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.payment-option input {
  display: none;
}

.payment-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  width: 100%;
  transition: var(--transition-smooth);
  color: var(--color-text-light);
}

.payment-option input:checked + .payment-label {
  border-color: var(--color-accent);
  background-color: rgba(212, 175, 55, 0.05);
}

.card-details {
  margin-top: 1rem;
}

.order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--color-accent);
  color: var(--color-primary);
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: var(--transition-smooth);
  font-family: var(--font-body);
  width: 100%;
}

.order-btn:hover {
  background-color: var(--color-text-light);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.order-summary {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  position: sticky;
  top: 100px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2rem;
}

.order-summary h3 {
  font-size: 1.2rem;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.order-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.order-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.order-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.order-item-info {
  flex: 1;
}

.order-item-name {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}

.order-item-qty {
  font-size: 0.85rem;
  color: var(--color-tertiary);
}

.order-item-price {
  font-weight: 600;
  color: var(--color-accent);
}

/* ========== CONFIRMATION PAGE ========== */
.confirmation-section {
  padding: 8rem 2rem 4rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.confirmation-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.confirmation-icon {
  margin-bottom: 2rem;
}

.confirmation-content h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.confirmation-message {
  color: var(--color-tertiary);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.order-details-box {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.order-details-box h3 {
  font-size: 1.1rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.order-info-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.order-info-row:last-child {
  border-bottom: none;
  font-weight: 600;
  color: var(--color-accent);
}

.confirmation-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.confirmation-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  text-align: left;
}

.confirmation-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.confirmation-item .item-name {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}

.confirmation-item .item-qty {
  font-size: 0.85rem;
  color: var(--color-tertiary);
}

.confirmation-item .item-price {
  font-weight: 600;
  color: var(--color-accent);
  margin-left: auto;
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.secondary-button {
  display: inline-block;
  background-color: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-border);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.secondary-button:hover {
  border-color: var(--color-accent);
  background-color: rgba(212, 175, 55, 0.1);
}

/* ========== FOOTER ========== */
.footer {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(11, 11, 11, 0.6));
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 6rem 0 3rem;
  margin-top: 6rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: space-between;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.footer-section {
  flex: 1;
  min-width: 220px;
}

.footer-section h4 {
  font-size: 1.2rem;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.footer-section p {
  color: var(--color-tertiary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
  color: var(--color-tertiary);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.footer-section ul li a {
  color: var(--color-tertiary);
  transition: var(--transition-smooth);
  position: relative;
}

.footer-section ul li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  transition: width 0.3s ease-out;
}

.footer-section ul li a:hover {
  color: var(--color-accent);
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.footer-section ul li a:hover::after {
  width: 100%;
}

.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  font-size: 0.95rem;
  color: var(--color-tertiary);
  line-height: 1.6;
}

.footer-bottom a {
  color: var(--color-accent);
  font-weight: 500;
  transition: var(--transition-smooth);
}

.footer-bottom a:hover {
  color: var(--color-text-light);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* ========== VOUCHER STYLES ========== */
.voucher-section {
  background-color: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.voucher-input-group {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.voucher-input-group input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
}

.voucher-input-group input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.voucher-input-group input::placeholder {
  color: var(--color-tertiary);
}

.voucher-btn {
  padding: 0.75rem 1.5rem;
  background-color: var(--color-accent);
  color: var(--color-primary);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: var(--font-body);
}

.voucher-btn:hover {
  background-color: var(--color-text-light);
  color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transform: translateY(-1px);
}

.voucher-btn:disabled {
  background-color: rgba(212, 175, 55, 0.3);
  cursor: not-allowed;
  transform: none;
}

.voucher-message {
  margin-top: 0.75rem;
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.voucher-message.success {
  background-color: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #81c784;
}

.voucher-message.error {
  background-color: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #ff8a80;
}

/* ========== VOUCHER BENEFITS SECTION ========== */
.voucher-benefits {
  padding: 8rem 2rem;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.03), rgba(212, 175, 55, 0.01), transparent);
  position: relative;
}

.voucher-benefits::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

.benefit-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(212, 175, 55, 0.04) 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -60%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.benefit-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  transform: scaleX(0);
  transition: transform 0.3s ease-out;
}

.benefit-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-12px);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2);
}

.benefit-card:hover::before {
  top: -30%;
  right: -30%;
}

.benefit-card:hover::after {
  transform: scaleX(1);
}

.benefit-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.benefit-icon svg {
  transition: transform 0.4s ease-out;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

.benefit-card:hover .benefit-icon svg {
  transform: scale(1.15);
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--color-text-light);
  position: relative;
  z-index: 1;
  font-weight: 600;
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--color-tertiary);
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

/* ========== VOUCHER ORDER SECTION ========== */
.voucher-order {
  padding: 8rem 2rem;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.03), rgba(212, 175, 55, 0.01));
  position: relative;
}

.voucher-order::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.order-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.order-info {
  flex: 1;
  min-width: 300px;
}

.order-info h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.order-info p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  color: var(--color-tertiary);
}

.order-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.order-features .feature {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(212, 175, 55, 0.02));
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-left: 4px solid var(--color-accent);
  border-radius: 8px;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.order-features .feature:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.04));
  transform: translateX(12px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15);
}

.order-features .feature svg {
  flex-shrink: 0;
  filter: drop-shadow(0 1px 4px rgba(212, 175, 55, 0.3));
}

.order-form {
  flex: 1;
  min-width: 320px;
}

.form-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(212, 175, 55, 0.02));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 3rem;
  position: sticky;
  top: 120px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.form-card:hover {
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
  border-color: var(--color-accent);
}

.form-card h3 {
  font-size: 1.4rem;
  color: var(--color-accent);
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
}

.form-status {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 4px;
  font-size: 0.9rem;
  text-align: center;
}

.form-status.error {
  background-color: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #ff8a80;
}

.form-status.success {
  background-color: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #81c784;
}

/* ========== INSTAGRAM SECTION ========== */
.instagram {
    padding: 4.0rem 0;
    background: #0b0b0b;
    color: #fff;
}
.instagram .section-title { color: #fff; }
.instagram .section-subtitle a { color: #d4af37; text-decoration: underline; }

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
    align-items: stretch;
}

.instagram-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    display: block;
    height: 0;
    padding-bottom: 100%; /* square */
    background: #111;
    box-shadow: 0 6px 18px rgba(0,0,0,0.45);
    transition: transform .22s ease, box-shadow .22s ease;
    text-decoration: none;
    color: inherit;
}
.instagram-card:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(0,0,0,0.6); }

.instagram-card img.instagram-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(0.95) saturate(0.95);
    transition: transform .35s ease;
}
.instagram-card:hover img.instagram-img { transform: scale(1.06); }

.instagram-overlay {
    position: absolute;
    right: 8px;
    top: 8px;
    background: rgba(0,0,0,0.45);
    border-radius: 8px;
    padding: 6px;
    display:flex;
    align-items:center;
    justify-content:center;
    opacity: 1;
    transition: transform .2s ease, background .2s ease;
}
.instagram-card:hover .instagram-overlay { background: rgba(0,0,0,0.65); transform: translateY(-2px); }

.ig-loading, .ig-error, .ig-hint {
    grid-column: 1 / -1;
    text-align: center;
    color: #d4af37;
    padding: 1rem 0;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
  }
  50% {
    text-shadow: 0 0 50px rgba(212, 175, 55, 0.6);
  }
}

/* subtle wiggle used on hover — short and tasteful */
/* wiggle removed to keep hero image static */

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 992px) {
  .hero {
    padding: 7rem 1.5rem 3rem;
    gap: 3rem;
  }

  .hero-image-wrapper {
    height: 400px;
  }

  .about-image {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .navbar-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(11, 11, 11, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
  }

  .navbar-links.active {
    transform: translateX(0);
  }

  .navbar-toggle {
    display: flex;
    z-index: 1001;
  }

  .hero {
    padding: 6rem 1rem 2rem;
    gap: 2rem;
  }

  .hero-content,
  .hero-image-wrapper {
    max-width: 100%;
  }

  .hero-image-wrapper {
    height: 350px;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
  }

  /* Mobile hero layout: stack content above image and center */
  .hero { flex-direction: column; align-items: center; padding-top: 5.5rem; }
  .hero-content { text-align: center; max-width: 680px; }
  .hero-content .hero-logo { margin-left: auto; margin-right: auto; }

  /* stack CTA buttons and make them full width on narrow screens */
  .cta-group { display: flex; flex-direction: column; gap: 0.8rem; align-items: center; }
  .cta-button { width: 100%; max-width: 360px; padding: 0.9rem 1rem; }

  .section-container {
    padding: 0 1rem;
  }

  .collection,
  .about,
  .services,
  .contact,
  .voucher-benefits,
  .voucher-order {
    padding: 4rem 1rem;
  }

  .products-grid {
    gap: 1.5rem;
  }

  .product-image-wrapper {
    height: 220px;
  }

  .about-image {
    height: 300px;
  }

  .cart-section,
  .checkout-section,
  .product-detail {
    padding: 6rem 1rem 3rem;
  }

  .cart-summary,
  .order-summary {
    position: static;
    max-width: 100%;
  }

  .footer {
    padding: 3rem 0 1.5rem;
    margin-top: 2rem;
  }

  .footer-content {
    gap: 2rem;
  }

  /* Voucher Order mobile adjustments */
  .order-wrapper {
    gap: 2rem;
  }

  .order-info,
  .order-form {
    min-width: 100%;
  }

  .form-card {
    position: static;
    padding: 2rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 5rem 1rem 2rem;
  }

  .hero-image-wrapper {
    height: 280px;
    min-width: 100%;
  }

  .product-content {
    padding: 1rem;
  }

  .cart-item {
    padding: 1rem;
  }

  .cart-item-image {
    width: 60px;
    height: 60px;
  }

  .form-section {
    padding: 1.5rem;
  }

  .confirmation-content {
    padding: 0 0.5rem;
  }
}

/* ========== PRODUCT MODAL ========== */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal.show {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(2px);
}

.modal-content {
  position: relative;
  width: min(900px, 92%);
  background: rgba(11,11,11,0.96);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 1.5rem;
  max-height: 86vh;
  overflow: auto;
  box-shadow: 0 10px 60px rgba(0,0,0,0.6);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: none;
  color: var(--color-text-light);
  font-size: 1.6rem;
  cursor: pointer;
}

.modal-body {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.modal-image {
  flex: 1 1 45%;
  min-width: 220px;
}

.modal-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--color-border);
}

.modal-info {
  flex: 1 1 55%;
}

.modal-info h3 {
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.modal-info p {
  color: var(--color-tertiary);
  line-height: 1.6;
}

/* Contact actions — clean, elegant cards matching site style */
.contact-actions-title {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue";
    font-weight: 600;
    color: #f7f7f7;
    margin: 0 0 0.75rem 0;
    font-size: 1.05rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 0.75rem;
    align-items: stretch;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.9rem 1rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border: 1px solid rgba(212,175,55,0.08);
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    height: 72px;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212,175,55,0.22);
    box-shadow: 0 18px 42px rgba(0,0,0,0.5);
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.03);
    flex-shrink: 0;
}

.card-icon svg { display: block; }

.card-body {
    display:flex;
    flex-direction:column;
    gap: 2px;
    flex: 1 1 auto;
    min-width: 0;
}

.card-title {
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1;
}

.card-sub {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.72);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-action {
    font-weight: 600;
    color: #d4af37;
    font-size: 0.88rem;
    margin-left: 0.75rem;
    flex-shrink: 0;
}

.contact-note {
    margin-top: 0.75rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
}

/* WhatsApp-focused single-contact variant */
.contact-subtle {
  margin-top: 0.25rem;
  color: var(--color-tertiary);
  font-size: 0.95rem;
  text-align: left;
  max-width: 800px;
}

/* make the WhatsApp card more prominent and slightly larger */
.contact-card.whatsapp {
  grid-column: 1 / -1;
  padding: 1.25rem 1.2rem;
  height: 96px;
  min-height: 96px;
  align-items: center;
  gap: 1.25rem;
  border: 1px solid rgba(37, 211, 102, 0.08);
  background: linear-gradient(180deg, rgba(37,211,102,0.02), rgba(255,255,255,0.01));
  box-shadow: 0 22px 48px rgba(0,0,0,0.55);
  border-radius: 12px;
}

.contact-card.whatsapp .card-icon {
  width: 66px;
  height: 66px;
  border-radius: 12px;
  background: rgba(37,211,102,0.06);
}

.contact-card.whatsapp .card-icon svg { display: block; width: 36px; height: 36px; }

.contact-card.whatsapp .card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.contact-card.whatsapp .card-sub {
  color: rgba(255,255,255,0.86);
  font-size: 0.98rem;
  letter-spacing: 0.2px;
}

.contact-card.whatsapp .card-action {
  color: #25D366;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}

/* ========== CONTACT FORM (in contact-actions) ========== */
.contact-actions .contact-form {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(212,175,55,0.06);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  width: 100%;
}

.contact-actions .contact-form .form-group label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.35rem;
}

.contact-actions .contact-form input[type="text"],
.contact-actions .contact-form input[type="email"],
.contact-actions .contact-form textarea {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 0.8rem 0.9rem;
  border-radius: 6px;
  color: var(--color-text-light);
  transition: var(--transition-smooth);
}

.contact-actions .contact-form input[type="text"]:focus,
.contact-actions .contact-form input[type="email"]:focus,
.contact-actions .contact-form textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 6px 30px rgba(212,175,55,0.12);
  outline: none;
}

.contact-actions .contact-form textarea { resize: vertical; min-height: 110px; }

.contact-actions .contact-form .submit-button {
  align-self: flex-end;
  padding: 0.8rem 1.25rem;
}

/* ensure good appearance on small screens */
@media (max-width: 720px) {
  .contact-card.whatsapp {
    height: auto;
    padding: 1rem;
    grid-column: 1 / -1;
  }

  .contact-card.whatsapp .card-icon {
    width: 56px;
    height: 56px;
  }

  .contact-card.whatsapp .card-action {
    font-size: 0.98rem;
  }

  /* Stack contact form under the contact cards cleanly on small screens */
  .contact-actions .contact-form { margin-top: 1rem; }
}

/* Hero CTA group — two buttons, WhatsApp prominent */
.cta-group {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.75rem;
}

.cta-button.whatsapp {
  border-color: #d4af37;
  color: #d4af37;
  padding: 0.95rem 1.8rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  min-width: 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: #d4af37;
  transition: transform .18s ease, box-shadow .25s ease, background .18s ease;
}
.cta-button.whatsapp::before { background-color: #d4af37; }

.cta-button.whatsapp:hover {
  color: #0b0b0b;
  background-color: #d4af37;
  box-shadow: #d4af37;
  transform: translateY(-3px);
}

/* slightly larger primary CTA to balance the layout */
.cta-button {
  padding: 1rem 2.5rem;
}

/* responsive: stack CTAs on small screens */
@media (max-width: 520px) {
  .cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.65rem;
  }
  .cta-button, .cta-button.whatsapp { width: 100%; min-width: 0; }
}

/* ========== ORDER PAGE STYLES ========== */
.order-hero {
  min-height: 60vh;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 3rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(11, 11, 11, 0.9));
}

.order-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.order-hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  text-align: center;
}

.order-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--color-accent);
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
  font-weight: 900;
  letter-spacing: 2px;
}

.order-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--color-text-light);
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.6;
}

.order-hero-image {
  position: relative;
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  height: 350px;
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.order-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-out;
}

.order-hero-image:hover img {
  transform: scale(1.05);
}

.order-form-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.02), transparent);
}

.order-form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}

.order-info {
  flex: 1;
  min-width: 280px;
}

.order-info h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.order-info p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  color: var(--color-tertiary);
}

.order-disclaimer {
  background-color: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.order-disclaimer h3 {
  font-size: 1.1rem;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.order-disclaimer p {
  font-size: 0.95rem;
  color: var(--color-tertiary);
  line-height: 1.6;
}

.order-form {
  flex: 1;
  min-width: 320px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(212, 175, 55, 0.02));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

.order-form .form-group {
  margin-bottom: 1.5rem;
}

.order-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--color-text-light);
  font-weight: 500;
}

.order-form input,
.order-form textarea {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.order-form input:focus,
.order-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.order-form textarea {
  resize: vertical;
  min-height: 120px;
}

.order-submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--color-accent);
  color: var(--color-primary);
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
  transition: var(--transition-smooth);
  font-family: var(--font-body);
  width: 100%;
  margin-top: 1rem;
}

.order-submit-button:hover {
  background-color: var(--color-text-light);
  color: var(--color-primary);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

.order-status {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 4px;
  font-size: 0.9rem;
  text-align: center;
}

.order-status.error {
  background-color: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #ff8a80;
}

.order-status.success {
  background-color: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #81c784;
}

/* ========== WHATSAPP ORDER SECTION ========== */
.order-whatsapp-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), rgba(255, 255, 255, 0.02));
  border-top: 2px solid rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
}

.order-whatsapp-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.order-whatsapp-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.order-whatsapp-wrapper h2 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.order-whatsapp-wrapper p {
  font-size: 1.2rem;
  color: var(--color-tertiary);
  margin-bottom: 3rem;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

/* Add a decorative element */
.order-whatsapp-section .decorative-element {
  display: inline-block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), rgba(212, 175, 55, 0.6));
  border-radius: 2px;
  margin-bottom: 2rem;
}

/* Enhanced WhatsApp card styling for order section */
.order-whatsapp-section .contact-card.whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(255, 255, 255, 0.08));
  border: 2px solid rgba(37, 211, 102, 0.4);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.2);
  height: auto;
  min-height: 80px;
  padding: 1.2rem 1.5rem;
}

.order-whatsapp-section .contact-card.whatsapp:hover {
  transform: translateY(-8px);
  border-color: #25D366;
  box-shadow: 0 20px 45px rgba(37, 211, 102, 0.3);
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(255, 255, 255, 0.12));
}

.order-whatsapp-section .contact-card.whatsapp .card-icon {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.order-whatsapp-section .contact-card.whatsapp .card-action {
  font-weight: 600;
  color: #25D366;
}

/* ========== RESPONSIVE ORDER STYLES ========== */
@media (max-width: 768px) {
  .order-hero {
    padding: 5rem 1rem 2rem;
    gap: 2rem;
    min-height: 50vh;
  }

  .order-hero-content,
  .order-hero-image {
    max-width: 100%;
  }

  .order-hero-image {
    height: 280px;
  }

  .order-form-section {
    padding: 4rem 1rem;
  }

  .order-form-wrapper {
    gap: 2rem;
  }

  .order-info,
  .order-form {
    min-width: 100%;
  }

  .order-form {
    padding: 2rem;
  }

  .order-whatsapp-section {
    padding: 4rem 1rem;
  }

  .order-whatsapp-wrapper h2 {
    font-size: 2rem;
  }

  .order-whatsapp-wrapper p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }

  .order-whatsapp-section .decorative-element {
    width: 40px;
    margin-bottom: 1.5rem;
  }

  .order-whatsapp-section .contact-card.whatsapp {
    padding: 1rem;
    min-height: 70px;
  }
}

/* ensure anchored order section sits nicely under the fixed navbar */
#order,
#contact-info {
  scroll-margin-top: 110px; /* adjust to match navbar height */
}

/* ========== DATENSCHUTZ (PRIVACY POLICY) MODAL ========== */
.datenschutz-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: auto;
  right: 20px;
  bottom: 20px;
  top: auto;
  width: 380px;
  height: auto;
  max-height: 500px;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  pointer-events: none;
}

.datenschutz-modal.show {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.datenschutz-overlay {
  display: none;
}

.datenschutz-container {
  position: relative;
  z-index: 10000;
  width: 100%;
  background: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideInRight 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes slideInRight {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.datenschutz-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  overflow: hidden;
}

.datenschutz-content h2 {
  color: var(--color-accent);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.datenschutz-text {
  flex: 1;
  overflow-y: auto;
  padding-right: 0.5rem;
  margin-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent) rgba(212, 175, 55, 0.1);
  max-height: 250px;
}

/* Webkit scrollbar styling */
.datenschutz-text::-webkit-scrollbar {
  width: 6px;
}

.datenschutz-text::-webkit-scrollbar-track {
  background: rgba(212, 175, 55, 0.1);
  border-radius: 10px;
}

.datenschutz-text::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 10px;
}

.datenschutz-text::-webkit-scrollbar-thumb:hover {
  background: #e6c547;
}

.datenschutz-text p {
  color: var(--color-text-light);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.datenschutz-text h3 {
  color: var(--color-accent);
  font-size: 0.95rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.datenschutz-text ul {
  margin-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.datenschutz-text li {
  color: var(--color-text-light);
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
}

.datenschutz-text a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.datenschutz-text a:hover {
  color: #e6c547;
  text-decoration: underline;
}

.datenschutz-text strong {
  color: var(--color-accent);
}

.datenschutz-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  justify-content: flex-end;
}

.datenschutz-btn {
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.datenschutz-btn.primary {
  background: var(--color-accent);
  color: var(--color-primary);
}

.datenschutz-btn.primary:hover {
  background: #e6c547;
  transform: translateY(-2px);
}

.datenschutz-btn.secondary {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  font-size: 0.75rem;
  padding: 0.5rem 0.8rem;
}

.datenschutz-btn.secondary:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

.datenschutz-btn.secondary.less {
  background: var(--color-accent);
  color: var(--color-primary);
}

.datenschutz-btn.secondary.less:hover {
  background: #e6c547;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .datenschutz-modal {
    width: calc(100% - 40px);
    right: 20px;
    left: 20px;
    max-height: 60vh;
  }

  .datenschutz-content {
    padding: 1.25rem;
  }

  .datenschutz-content h2 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  .datenschutz-text {
    max-height: 200px;
    font-size: 0.8rem;
  }

  .datenschutz-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .datenschutz-btn {
    width: 100%;
    padding: 0.5rem 0.8rem;
    font-size: 0.75rem;
  }
}

/* ========== IMPRESSUM PAGE ========== */
.impressum-section {
  padding: 80px 0 60px 0;
  background-color: var(--color-primary);
  min-height: calc(100vh - 200px);
}

.impressum-container {
  max-width: 900px;
}

.impressum-title {
  margin-bottom: 3rem;
  color: var(--color-accent);
}

.impressum-content {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 3rem;
  line-height: 1.8;
}

.impressum-content h2 {
  color: var(--color-accent);
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
}

.impressum-content h2:first-child {
  margin-top: 0;
}

.impressum-content h3 {
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.impressum-content p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.impressum-content ul {
  list-style-position: inside;
  margin-left: 1rem;
  margin-bottom: 1rem;
}

.impressum-content li {
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.impressum-content a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.impressum-content a:hover {
  color: #e6c547;
  text-decoration: underline;
}

.impressum-details {
  background: rgba(212, 175, 55, 0.1);
  border-left: 4px solid var(--color-accent);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.impressum-details p {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.impressum-details strong {
  color: var(--color-accent);
}

.impressum-divider {
  margin: 2.5rem 0;
  border: none;
  border-top: 1px solid var(--color-border);
  opacity: 0.5;
}

.impressum-disclaimer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.impressum-disclaimer h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.impressum-disclaimer p {
  text-align: justify;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .impressum-section {
    padding: 60px 0 40px 0;
  }

  .impressum-content {
    padding: 1.5rem;
  }

  .impressum-content h2 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
  }

  .impressum-content h3 {
    font-size: 1rem;
  }

  .impressum-content p,
  .impressum-content li,
  .impressum-details p {
    font-size: 0.9rem;
  }

  .impressum-details {
    padding: 1rem;
  }

  .impressum-disclaimer p {
    font-size: 0.85rem;
  }
}

/* ========== PARTNERS SECTION ========== */
.partners-section {
  padding: 4rem 0;
  background-color: var(--color-primary);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.partner-link {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

.partner-link:hover .partner-card {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.partner-card {
  background-color: rgba(247, 243, 238, 0.05);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
}

.partner-card h3 {
  color: var(--color-accent);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.partner-card p {
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.partner-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  color: var(--color-accent);
  font-size: 1.5rem;
  font-weight: bold;
  transition: var(--transition-smooth);
}

.partner-link:hover .partner-arrow {
  transform: translateX(5px);
}

/* Mobile styles for partners */
@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .partner-card {
    padding: 1.5rem;
  }

  .partner-card h3 {
    font-size: 1.3rem;
  }
}
