@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Bebas+Neue&family=Lobster&display=swap');

:root {
  /* Brand Palette - extracted from live panetteria.al */
  --color-burgundy: #691a2d;
  --color-burgundy-rgb: 105, 26, 45;
  --color-burgundy-dark: #4a121f;
  --color-gold: #c58b5e;
  --color-gold-rgb: 197, 139, 94;
  --color-cream: #f9f7f1;
  --color-cream-dark: #f0ece3;
  --color-white: #ffffff;
  --color-near-black: #0d131a;
  --color-dark-gray: #323232;
  --color-body-text: #56585e;
  --color-light-gray: #b8c0cc;
  --color-border: #e5e5e5;
  --color-footer-bg: #ffffff;

  /* Typography */
  --font-heading: 'Lora', serif;
  --font-body: 'Inter', 'Calibri', sans-serif;
  --font-display: 'Bebas Neue', sans-serif;
  --font-script: 'Lobster', cursive;

  /* Layout */
  --max-width: 1240px;
  --nav-height: 88px;
  --section-padding: 100px;
  --container-padding: 16px;

  /* Spacing scale */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 100px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-near-black);
  background-color: var(--color-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ===== UTILITIES ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ===== HEADER / NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: linear-gradient(180deg, rgba(var(--color-burgundy-rgb), 0.92) 0%, rgba(var(--color-burgundy-rgb), 0.78) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow 0.3s ease, background 0.3s ease;
  height: var(--nav-height);
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 70px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--color-white);
  transition: color 0.3s ease;
  position: relative;
  padding: 10px 18px;
  display: block;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 1px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 1200;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.hamburger:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  border-radius: 1px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger span:nth-child(1) { margin-bottom: 5px; }
.hamburger span:nth-child(3) { margin-top: 5px; }

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  margin-bottom: 0;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  margin-top: 0;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-white);
  z-index: 1050;
  padding-top: calc(var(--nav-height) + 20px);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu a {
  display: block;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-near-black);
  border-bottom: 1px solid var(--color-border);
  transition: all 0.2s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: var(--color-cream);
  color: var(--color-burgundy);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 600px;
  height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(var(--color-burgundy-rgb), 0.25) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  padding: 64px 48px;
  background: rgba(var(--color-burgundy-rgb), 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  max-width: 90%;
  animation: heroFadeIn 1.2s ease-out;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 10vw, 130px);
  font-weight: 400;
  margin-bottom: 14px;
  text-shadow: 2px 4px 16px rgba(0,0,0,0.4);
  line-height: 1.05;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-content .tagline {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3.5vw, 38px);
  font-weight: 500;
  letter-spacing: 2px;
  text-shadow: 1px 2px 8px rgba(0,0,0,0.4);
  opacity: 0.95;
  font-style: italic;
}

/* ===== SECTION TITLES ===== */
.section-title {
  text-align: center;
  margin-bottom: 56px;
}

.section-title h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 600;
  color: var(--color-near-black);
  margin-bottom: 12px;
  line-height: 1.3;
}

.section-title p {
  font-size: 16px;
  color: var(--color-body-text);
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.6;
}

/* ===== CATEGORIES ===== */
.categories {
  padding: var(--space-4xl) 0;
  background: var(--color-cream);
}

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

.category-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  border-color: transparent;
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-card .card-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.category-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-near-black);
  margin-bottom: 10px;
  line-height: 1.3;
}

.category-card p {
  font-size: 14px;
  color: var(--color-body-text);
  line-height: 1.6;
}

/* ===== GALLERY ===== */
.gallery {
  padding: var(--space-4xl) 0;
  background: var(--color-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s ease;
  pointer-events: none;
  border-radius: 20px;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover::after {
  background: rgba(0,0,0,0.1);
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

/* ===== PRODUCT CTA ===== */
.product-cta {
  padding: 80px 0;
  background: var(--color-cream);
  text-align: center;
}

.product-cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.product-cta h3 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 600;
  color: var(--color-near-black);
  line-height: 1.3;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 44px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

.btn-primary:hover {
  background: rgba(var(--color-gold-rgb), 0.67);
  color: var(--color-white);
  border-color: rgba(var(--color-gold-rgb), 0.67);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-near-black);
  border-color: var(--color-border);
}

.btn-secondary:hover {
  background: var(--color-cream);
  color: var(--color-burgundy);
}

/* ===== ABOUT ===== */
.about-section {
  padding: var(--space-4xl) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--color-near-black);
  margin-bottom: 24px;
  line-height: 1.3;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-body-text);
  margin-bottom: 18px;
}

.about-text .highlight {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  color: var(--color-gold);
  font-style: italic;
  margin: 28px 0;
  padding: 20px 0 20px 24px;
  border-left: 4px solid var(--color-gold);
  background: var(--color-cream);
  border-radius: 0 8px 8px 0;
  line-height: 1.7;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ===== ALTAMURA SECTION ===== */
.altamura-section {
  padding: var(--space-4xl) 0;
  background: var(--color-cream);
}

.altamura-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.altamura-grid .altamura-image {
  order: -1;
}

.altamura-text h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--color-near-black);
  margin-bottom: 24px;
  line-height: 1.3;
}

.altamura-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-body-text);
  margin-bottom: 18px;
}

.altamura-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.altamura-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ===== REVIEWS ===== */
.reviews {
  padding: var(--space-4xl) 0;
  background: var(--color-white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}

.review-card {
  background: var(--color-cream);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
}

.review-card .review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 0 auto 14px;
  overflow: hidden;
  border: 2px solid var(--color-gold);
}

.review-card .review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card .stars {
  color: var(--color-gold);
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 3px;
}

.review-card blockquote {
  font-size: 15px;
  font-style: italic;
  color: var(--color-body-text);
  line-height: 1.7;
  margin-bottom: 18px;
  font-family: var(--font-body);
}

.review-card .reviewer {
  font-weight: 700;
  font-size: 14px;
  color: var(--color-near-black);
}

.review-card .reviewer-location {
  font-size: 13px;
  color: var(--color-body-text);
  margin-top: 4px;
}

/* ===== CONTACT ===== */
.contact-section {
  padding: var(--space-4xl) 0 var(--space-2xl);
  margin-top: var(--nav-height);
  background: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background: var(--color-cream);
  border-radius: 20px;
  padding: 48px;
  border: 1px solid var(--color-border);
}

.contact-form h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 600;
  color: var(--color-near-black);
  margin-bottom: 8px;
  line-height: 1.3;
}

.contact-form .form-subtitle {
  font-size: 15px;
  color: var(--color-body-text);
  margin-bottom: 32px;
  line-height: 1.6;
}

.contact-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  max-height: 580px;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-near-black);
  font-family: var(--font-body);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--color-light-gray);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-near-black);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-near-black);
  box-shadow: 0 0 0 3px rgba(13, 19, 26, 0.05);
}

.form-group textarea {
  resize: vertical;
  min-height: 96px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-light-gray);
  opacity: 0.7;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--color-gold);
  color: var(--color-white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.btn-submit:hover {
  background: rgba(var(--color-gold-rgb), 0.67);
  color: var(--color-white);
}

/* On dark backgrounds (hero sections), use light button variant */
.hero .btn-primary {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.hero .btn-primary:hover {
  background: var(--color-cream);
  color: var(--color-gold);
  border-color: var(--color-cream);
}

/* ===== CONTACT INFO ===== */
.contact-info-section {
  padding: 64px 0;
  background: var(--color-cream);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.contact-info-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--color-white);
  border-radius: 20px;
  border: 1px solid var(--color-border);
}

.contact-info-card .info-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.contact-info-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-near-black);
  margin-bottom: 10px;
}

.contact-info-card p {
  font-size: 15px;
  color: var(--color-body-text);
  line-height: 1.7;
}

/* ===== CAREERS ===== */
.careers-section {
  padding: var(--space-4xl) 0;
  margin-top: var(--nav-height);
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: var(--color-cream);
}

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

.careers-content h1 {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 600;
  color: var(--color-near-black);
  margin-bottom: 20px;
  line-height: 1.3;
}

.careers-content > p {
  font-size: 17px;
  color: var(--color-body-text);
  line-height: 1.8;
  margin-bottom: 16px;
}

.careers-email-box {
  background: var(--color-white);
  border: 2px solid var(--color-gold);
  border-radius: 20px;
  padding: 40px;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.careers-email-box h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-near-black);
  line-height: 1.3;
}

.careers-email-box p {
  font-size: 15px;
  color: var(--color-body-text);
  line-height: 1.7;
  margin-bottom: 0;
}

.careers-email-box .email-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-gold);
  transition: color 0.3s ease;
  padding: 12px 32px;
  background: var(--color-cream);
  border-radius: 50px;
}

.careers-email-box .email-link:hover {
  color: var(--color-burgundy);
  background: var(--color-cream-dark);
}

.careers-email-box .email-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.careers-positions {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: left;
}

.careers-position-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.careers-position-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.careers-position-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-near-black);
  margin-bottom: 8px;
  line-height: 1.3;
}

.careers-position-card p {
  font-size: 14px;
  color: var(--color-body-text);
  line-height: 1.6;
  margin-bottom: 0;
}

.careers-position-card .tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-cream);
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-footer-bg);
  color: var(--color-dark-gray);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-dark-gray);
  margin-bottom: 20px;
  line-height: 1.3;
}

.footer-col p,
.footer-col a {
  font-size: 18px;
  color: var(--color-near-black);
  line-height: 2;
  transition: color 0.3s ease;
  font-family: var(--font-body);
}

.footer-col a {
  display: inline-block;
}

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

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.footer-social a:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: var(--color-near-black);
  transition: fill 0.3s ease;
}

.footer-social a:hover svg {
  fill: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  text-align: center;
  font-size: 14px;
  color: var(--color-near-black);
}

.footer-bottom a {
  color: var(--color-near-black);
  transition: color 0.3s ease;
  font-weight: 500;
}

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

/* ===== PAGE HERO ===== */
.page-hero {
  margin-top: var(--nav-height);
  padding: 80px 0 48px;
  background: var(--color-cream);
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 600;
  color: var(--color-near-black);
  margin-bottom: 8px;
  line-height: 1.3;
}

.page-hero p {
  font-size: 16px;
  color: var(--color-body-text);
  margin-top: 12px;
  line-height: 1.6;
}

/* ===== PRODUCT DETAIL ===== */
.product-detail {
  padding: var(--space-4xl) 0;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.product-detail-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.product-detail-images img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-text h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 600;
  color: var(--color-near-black);
  margin-bottom: 20px;
  line-height: 1.3;
}

.product-detail-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-body-text);
  margin-bottom: 18px;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 20px;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  z-index: 2001;
  background: none;
  border: none;
  line-height: 1;
  transition: transform 0.3s ease;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  transform: rotate(90deg);
}

/* ===== WOLT BUBBLE ===== */
.wolt-bubble {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 100;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #009de0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,157,224,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  border: none;
  padding: 0;
}

.wolt-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,157,224,0.5);
}

.wolt-bubble img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 50%;
  display: block;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid,
  .altamura-grid,
  .contact-grid,
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .altamura-grid .altamura-image {
    order: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero-content {
    padding: 52px 36px;
  }

  .hero-content h1 {
    font-size: clamp(44px, 8vw, 90px);
  }

  .hero-content .tagline {
    font-size: clamp(18px, 3vw, 30px);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 72px;
    --section-padding: 70px;
  }

  .nav {
    padding: 0 16px;
  }

  .nav-logo img {
    height: 58px;
  }

  .nav {
    padding: 0 16px;
  }

  .nav-logo img {
    height: 58px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu a {
    padding: 16px 24px;
    font-size: 16px;
  }

  .hero-content {
    padding: 40px 24px;
  }

  .hero-content h1 {
    font-size: 44px;
    letter-spacing: 2px;
  }

  .hero-content .tagline {
    font-size: 22px;
    letter-spacing: 1px;
  }

  .categories {
    padding: 70px 0;
  }

  .categories-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .category-card {
    padding: 28px 18px;
  }

  .gallery {
    padding: 70px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-detail-images {
    grid-template-columns: 1fr 1fr;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .about-text h2,
  .altamura-text h2 {
    font-size: 28px;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .careers-content h1 {
    font-size: 32px;
  }

  .careers-positions {
    grid-template-columns: 1fr;
  }

  .careers-email-box {
    padding: 28px 20px;
  }

  .careers-email-box .email-link {
    font-size: 16px;
    padding: 10px 24px;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content {
    padding: 32px 20px;
  }

  .hero-content h1 {
    font-size: 36px;
    letter-spacing: 2px;
  }

  .hero-content .tagline {
    font-size: 18px;
  }

  .contact-form {
    padding: 24px 20px;
  }

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