/* La Grotta del Brigante - Main Styles */
:root {
  --primary: #8B4513;
  --primary-dark: #5D2E0C;
  --primary-light: #C4743A;
  --secondary: #D4A853;
  --secondary-dark: #B8892E;
  --accent: #2C5234;
  --accent-light: #3D7048;
  --dark: #1A1008;
  --dark2: #2D1B0E;
  --text: #3D2B1A;
  --text-light: #6B5040;
  --white: #FFFFF0;
  --cream: #FDF6E3;
  --cream2: #F5EDD3;
  --stone: #C9B99A;
  --stone-dark: #9C8B72;
  --shadow: rgba(90, 40, 10, 0.25);
  --font-main: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  --font-heading: 'Cinzel', 'Trajan Pro', 'Times New Roman', Georgia, serif;
  --font-body: 'Georgia', 'Times New Roman', serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 16, 8, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--secondary);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  transition: all 0.3s;
}

.navbar.scrolled {
  height: 60px;
  background: rgba(26, 16, 8, 0.99);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--secondary);
}

.navbar-brand img {
  height: 48px;
  width: auto;
}

.navbar-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar-brand-text span:first-child {
  font-size: 0.65rem;
  color: var(--stone);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.navbar-brand-text span:last-child {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--secondary);
  letter-spacing: 1px;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.navbar-menu li a {
  color: var(--stone);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem;
  transition: color 0.3s;
  font-family: var(--font-main);
  white-space: nowrap;
}

.navbar-menu li a:hover,
.navbar-menu li a.active {
  color: var(--secondary);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switcher {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.lang-btn {
  background: none;
  border: 1px solid transparent;
  color: var(--stone);
  font-size: 0.7rem;
  letter-spacing: 1px;
  padding: 0.2rem 0.4rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 3px;
  font-family: var(--font-main);
  text-transform: uppercase;
}

.lang-btn:hover,
.lang-btn.active {
  color: var(--secondary);
  border-color: var(--secondary);
}

.cart-btn {
  position: relative;
  background: none;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: all 0.3s;
}

.cart-btn:hover {
  background: var(--secondary);
  color: var(--dark);
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px; height: 2px;
  background: var(--secondary);
  transition: all 0.3s;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(26,16,8,0.5) 0%, rgba(26,16,8,0.3) 40%, rgba(26,16,8,0.7) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/></filter></defs><rect width="1200" height="800" filter="url(%23n)" opacity="0.4" fill="%23654321"/></svg>') center/cover;
  background-size: cover;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #1A1008;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at center top, rgba(139,69,19,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at bottom, rgba(26,16,8,0.8) 0%, transparent 60%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--secondary);
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0.6;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 2rem;
}

.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.hero-ornament-line {
  height: 1px;
  width: 80px;
  background: linear-gradient(to right, transparent, var(--secondary));
}

.hero-ornament-line:last-child {
  background: linear-gradient(to left, transparent, var(--secondary));
}

.hero-ornament span {
  color: var(--secondary);
  font-size: 1.2rem;
}

.hero-subtitle-top {
  font-family: var(--font-main);
  font-size: 0.85rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  text-shadow: 2px 4px 20px rgba(0,0,0,0.6);
  margin-bottom: 0.5rem;
}

.hero h1 .highlight {
  color: var(--secondary);
  display: block;
}

.hero-tagline {
  width: 80px;
  height: 2px;
  background: var(--secondary);
  margin: 1.5rem auto;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--cream2);
  margin-bottom: 2.5rem;
  font-style: italic;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 2px 8px rgba(0,0,0,0.5);
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--dark);
  border: none;
  padding: 1rem 2.5rem;
  font-family: var(--font-main);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  clip-path: polygon(8px 0%, calc(100% - 8px) 0%, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0% calc(100% - 8px), 0% 8px);
  font-weight: bold;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--secondary);
  padding: 1rem 2.5rem;
  font-family: var(--font-main);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  clip-path: polygon(8px 0%, calc(100% - 8px) 0%, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0% calc(100% - 8px), 0% 8px);
}

.btn-secondary:hover {
  background: var(--secondary);
  color: var(--dark);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 10;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
}

.hero-scroll svg {
  width: 24px; height: 24px;
  color: var(--secondary);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============ SECTIONS ============ */
.section {
  padding: 6rem 2rem;
}

.section-dark {
  background: var(--dark2);
  color: var(--cream);
}

.section-stone {
  background: var(--cream2);
}

.section-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--secondary);
  border: 1px solid var(--secondary);
  padding: 0.3rem 1rem;
  margin-bottom: 1.2rem;
  opacity: 0.9;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: inherit;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-title .gold { color: var(--secondary); }

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}

.divider-line {
  height: 1px;
  width: 60px;
  background: var(--secondary);
  opacity: 0.6;
}

.divider-diamond {
  width: 8px; height: 8px;
  background: var(--secondary);
  transform: rotate(45deg);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}

.section-dark .section-subtitle {
  color: var(--stone);
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.about-image-frame {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--dark2) 100%);
  height: 450px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  overflow: hidden;
}

.about-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><g opacity="0.15" fill="none" stroke="%23D4A853" stroke-width="0.5"><path d="M0 200 Q200 0 400 200 Q200 400 0 200z"/><circle cx="200" cy="200" r="150"/><circle cx="200" cy="200" r="100"/></g></svg>') center/contain no-repeat;
}

.about-image-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(26,16,8,0.9);
  border: 1px solid var(--secondary);
  padding: 0.75rem 1.25rem;
  text-align: center;
}

.about-image-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--secondary);
  line-height: 1;
}

.about-image-badge span {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
}

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

.about-cta-row {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* ============ FEATURES ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: 4px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,168,83,0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover::before { opacity: 1; }

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
  box-shadow: 0 15px 40px rgba(212,168,83,0.15);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
}

.feature-text {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.6;
}

/* ============ PAGE SECTIONS ============ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 50%, var(--primary-dark) 100%);
  padding: 8rem 2rem 4rem;
  text-align: center;
  color: var(--cream);
  margin-top: 70px;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--secondary);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--stone);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.page-hero .section-badge {
  position: relative;
  z-index: 2;
}

.about-image-frame {
  position: relative;
}

/* ============ TOUR / SHOP ============ */
.tour-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 60%, var(--dark) 100%);
  padding: 8rem 2rem 5rem;
  text-align: center;
  color: var(--cream);
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}

.tour-hero::before {
  content: '✦';
  position: absolute;
  font-size: 20rem;
  color: rgba(212,168,83,0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tour-price-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--secondary);
  background: rgba(212,168,83,0.1);
  border: 2px solid var(--secondary);
  padding: 0.5rem 2rem;
  margin: 1rem 0;
  clip-path: polygon(10px 0%, calc(100% - 10px) 0%, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0% calc(100% - 10px), 0% 10px);
}

.tour-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.tour-includes-card {
  background: white;
  border: 1px solid var(--stone);
  border-radius: 6px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px var(--shadow);
}

.tour-includes-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 0.75rem;
}

.tour-includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tour-includes-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
}

.tour-includes-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(44,82,52,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.tour-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.tour-info-item {
  background: var(--cream2);
  border: 1px solid var(--stone);
  border-radius: 4px;
  padding: 1rem;
  text-align: center;
}

.tour-info-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.tour-info-item span {
  font-size: 0.82rem;
  color: var(--text-light);
}

.booking-card {
  background: var(--dark2);
  border: 1px solid var(--secondary);
  border-radius: 6px;
  padding: 2.5rem;
  color: var(--cream);
  position: sticky;
  top: 90px;
}

.booking-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(212,168,83,0.3);
  padding-bottom: 0.75rem;
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(212,168,83,0.3);
  color: var(--cream);
  padding: 0.65rem 0.9rem;
  font-size: 0.9rem;
  border-radius: 4px;
  transition: border-color 0.3s;
  font-family: var(--font-body);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
}

.form-group select option {
  background: var(--dark2);
  color: var(--cream);
}

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

/* ============ SHOP ============ */
.shop-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  max-width: 500px;
  margin: 0 auto;
}

.shop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow);
}

.shop-card-image {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--dark2));
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
}

.shop-card-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--secondary);
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.shop-card-body {
  padding: 2rem;
}

.shop-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.shop-card-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.shop-card-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.shop-card-actions {
  display: flex;
  gap: 1rem;
}

.btn-cart {
  flex: 1;
  background: var(--cream2);
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.85rem;
  font-family: var(--font-main);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 4px;
  font-weight: bold;
}

.btn-cart:hover {
  background: var(--primary);
  color: white;
}

.btn-buy {
  flex: 1;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  border: none;
  color: var(--dark);
  padding: 0.85rem;
  font-family: var(--font-main);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-buy:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: white;
  transform: translateY(-1px);
}

/* ============ CART ============ */
.cart-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.cart-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  background: white;
  border: 1px solid var(--stone);
  border-radius: 6px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.cart-item-img {
  width: 100px; height: 80px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.cart-item-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.cart-item-desc {
  font-size: 0.85rem;
  color: var(--text-light);
}

.cart-item-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
  text-align: right;
}

.cart-item-remove {
  background: none;
  border: 1px solid var(--stone);
  color: var(--text-light);
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.3s;
  margin-top: 0.5rem;
}

.cart-item-remove:hover {
  border-color: #c00;
  color: #c00;
}

.cart-summary {
  background: var(--dark2);
  border: 1px solid var(--secondary);
  border-radius: 6px;
  padding: 2rem;
  color: var(--cream);
  margin-top: 2rem;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

.cart-total-row span:last-child {
  color: var(--secondary);
  font-size: 2rem;
}

/* ============ CHECKOUT ============ */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.checkout-form-section {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 15px var(--shadow);
}

.checkout-form-section h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 0.75rem;
}

.checkout-form-section .form-group label {
  color: var(--text-light);
}

.checkout-form-section .form-group input,
.checkout-form-section .form-group select {
  background: var(--cream2);
  border: 1px solid var(--stone);
  color: var(--text);
}

.checkout-form-section .form-group input:focus,
.checkout-form-section .form-group select:focus {
  border-color: var(--primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.order-summary-card {
  background: var(--dark2);
  border: 1px solid var(--secondary);
  border-radius: 8px;
  padding: 2rem;
  color: var(--cream);
  height: fit-content;
  position: sticky;
  top: 90px;
}

.order-summary-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(212,168,83,0.3);
  padding-bottom: 0.75rem;
}

.order-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.order-item span:last-child {
  color: var(--secondary);
  font-weight: bold;
}

.order-total {
  border-top: 1px solid rgba(212,168,83,0.3);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.3rem;
}

.order-total span:last-child {
  color: var(--secondary);
}

/* ============ MAP SECTION ============ */
.map-section {
  background: var(--dark2);
  color: var(--cream);
  padding: 5rem 2rem;
}

.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(212,168,83,0.3);
  margin-top: 2rem;
  height: 400px;
}

.map-wrapper iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: sepia(30%) contrast(1.1);
}

/* ============ REGOLAMENTO ============ */
.regolamento-section {
  background: white;
  border-radius: 8px;
  border: 1px solid var(--stone);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px var(--shadow);
}

.regolamento-section h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 0.5rem;
}

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

.regolamento-section ul li {
  padding: 0.6rem 0 0.6rem 2rem;
  position: relative;
  border-bottom: 1px solid var(--cream2);
  font-size: 0.95rem;
  line-height: 1.6;
}

.regolamento-section ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--secondary);
}

/* ============ CONTATTI ============ */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: var(--dark2);
  border: 1px solid var(--secondary);
  border-radius: 8px;
  padding: 2.5rem;
  color: var(--cream);
}

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

.contact-info-icon {
  font-size: 1.5rem;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-info-item strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.25rem;
}

.contact-info-item a {
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info-item a:hover {
  color: var(--secondary);
}

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

.social-link {
  width: 44px; height: 44px;
  border: 1px solid rgba(212,168,83,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.social-link:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  background: rgba(212,168,83,0.1);
}

.contact-form-card {
  background: white;
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px var(--shadow);
}

.contact-form-card .form-group label {
  color: var(--text-light);
}

.contact-form-card .form-group input,
.contact-form-card .form-group textarea {
  background: var(--cream2);
  border: 1px solid var(--stone);
  color: var(--text);
}

.contact-form-card .form-group input:focus,
.contact-form-card .form-group textarea:focus {
  border-color: var(--primary);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--dark);
  border-top: 2px solid rgba(212,168,83,0.3);
  color: var(--stone);
  padding: 3rem 2rem 1.5rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--stone-dark);
}

.footer-col h4 {
  font-family: var(--font-main);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(212,168,83,0.2);
  padding-bottom: 0.5rem;
}

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

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: var(--stone-dark);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--secondary);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(212,168,83,0.15);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--stone-dark);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom a {
  color: var(--stone-dark);
  text-decoration: none;
}

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

/* ============ SUCCESS MESSAGE ============ */
.success-toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: var(--accent);
  color: white;
  padding: 1rem 2rem;
  border-radius: 6px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s;
  font-family: var(--font-main);
}

.success-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ============ MOBILE MENU ============ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(26,16,8,0.98);
  border-bottom: 1px solid var(--secondary);
  z-index: 999;
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--stone);
  text-decoration: none;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(212,168,83,0.1);
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--secondary); }

.mobile-lang {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  margin-top: 0.5rem;
}

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

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============ BREADCRUMB ============ */
.breadcrumb {
  background: var(--cream2);
  padding: 0.75rem 2rem;
  border-bottom: 1px solid var(--stone);
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-light);
}

.breadcrumb-inner a {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumb-inner a:hover { text-decoration: underline; }

.breadcrumb-inner span { color: var(--stone-dark); }

/* ============ ORDER SUCCESS ============ */
.order-success {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.order-success-content {
  max-width: 500px;
}

.order-success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.order-success h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.order-success p {
  color: var(--text-light);
  font-size: 1.05rem;
}

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

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .tour-cards-grid { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
  .tour-info-grid { grid-template-columns: 1fr 1fr; }
  .about-image-frame { height: 300px; }
  .booking-card { position: static; }
  .order-summary-card { position: static; }
}

@media (max-width: 768px) {
  .navbar-menu { display: none; }
  .navbar-actions .lang-switcher { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.8rem; }
  .cart-item { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .tour-info-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .shop-card-actions { flex-direction: column; }
}
