/* ═══════════════════════════════════════════════════════════
   ORENZO Watches – Main Theme Stylesheet
   Ported from Next.js / Tailwind CSS
═══════════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { height: 100%; }

body {
  font-family: 'Inter', 'Amazon Ember', Arial, sans-serif;
  background: linear-gradient(135deg, #e5e9f0 0%, #f0f4f8 100%);
  color: #111827;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }
ul { list-style: none; }

#orenzo-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ── Announcement Bar ─────────────────────────────────────────────────────── */
.orenzo-announcement {
  width: 100%;
  background: #343b46;
  color: #fff;
  font-size: 0.75rem;
  text-align: center;
  padding: 0.625rem 1rem;
  letter-spacing: 0.025em;
  font-weight: 400;
}

/* ── Header ───────────────────────────────────────────────────────────────── */
.orenzo-header {
  position: relative;
  z-index: 50;
  background: #fff;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* Desktop nav (hidden on mobile) */
.orenzo-nav-desktop {
  display: none;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
  flex: 1;
}
@media (min-width: 768px) {
  .orenzo-nav-desktop { display: flex; }
}

.orenzo-nav-link {
  color: #4b5563;
  transition: color 0.2s;
  white-space: nowrap;
}
.orenzo-nav-link:hover { color: #111; }
.orenzo-nav-link.active {
  color: #111;
  border-bottom: 1px solid #111;
  padding-bottom: 2px;
}

/* Logo */
.orenzo-logo {
  font-size: clamp(0.5rem, 2.2vw, 1.1rem);
  font-weight: 700;
  letter-spacing: clamp(0.05em, 0.35vw, 0.25em);
  text-transform: uppercase;
  color: #111;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  max-width: 50vw;
  overflow: hidden;
  text-overflow: ellipsis;
}
.orenzo-logo a { color: #111; }

/* Extra small screens: shrink further */
@media (max-width: 380px) {
  .orenzo-logo {
    font-size: 0.5rem;
    letter-spacing: 0.04em;
    max-width: 44vw;
  }
}

/* Header icons */
.orenzo-header-icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: #1f2937;
  flex: 1;
  justify-content: flex-end;
}

.orenzo-icon-link {
  display: flex;
  align-items: center;
  position: relative;
  color: #1f2937;
  transition: opacity 0.2s;
}
.orenzo-icon-link:hover { opacity: 0.7; }

/* Search icon hidden on small screens */
.orenzo-search-btn { display: none; }
@media (min-width: 640px) { .orenzo-search-btn { display: flex; } }

/* Cart badge */
.orenzo-cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #111;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 9999px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Mobile menu toggle */
.orenzo-menu-toggle {
  display: flex;
  align-items: center;
  color: #111;
  padding: 4px;
  z-index: 50;
}
@media (min-width: 768px) { .orenzo-menu-toggle { display: none; } }

/* Mobile dropdown */
.orenzo-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-top: 1px solid #f3f4f6;
  padding: 1.5rem;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 40;
  animation: slideDown 0.2s ease-out;
}
.orenzo-mobile-menu.open { display: flex; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.orenzo-mobile-link {
  font-size: 1.125rem;
  font-weight: 500;
  color: #4b5563;
}
.orenzo-mobile-link:hover { color: #111; }

.orenzo-mobile-actions {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f3f4f6;
}
.orenzo-mobile-action-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #4b5563;
  font-size: 0.875rem;
}

/* The header wraps the mobile menu so needs relative positioning */
.orenzo-header { position: relative; }

/* ── Hero Section ─────────────────────────────────────────────────────────── */
.orenzo-hero-wrap {
  width: 96vw;
  height: 85vh;
  margin: 1.5rem auto 0;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 24px;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.orenzo-hero-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.orenzo-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  text-align: center;
  width: 100%;
  padding: 0 1rem;
  pointer-events: none;
}
.orenzo-hero-content a { pointer-events: auto; }

.orenzo-hero-headline {
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,0.9), 0 2px 4px rgba(0,0,0,0.8);
  margin-bottom: 2rem;
}

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

/* Background slideshow */
.orenzo-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000;
}

.orenzo-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2000ms ease-in-out;
}
.orenzo-hero-slide.active { opacity: 1; }

.orenzo-hero-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  will-change: transform;
}
.orenzo-hero-img-wrap img,
.orenzo-hero-img-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.orenzo-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.orenzo-btn-primary {
  background: #fff;
  color: #111;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  transition: background 0.2s;
  display: inline-block;
}
.orenzo-btn-primary:hover { background: #f3f4f6; color: #111; }

.orenzo-btn-ghost {
  background: rgba(0,0,0,0.5);
  color: #fff;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s;
  display: inline-block;
}
.orenzo-btn-ghost:hover { background: rgba(0,0,0,0.7); color: #fff; }

.orenzo-btn-gold {
  background: #bba183;
  color: #fff;
  padding: 0.75rem 2.5rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 400;
  display: inline-block;
  transition: background 0.2s;
}
.orenzo-btn-gold:hover { background: #a38c72; color: #fff; }

.orenzo-btn-black {
  background: #111;
  color: #fff;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  transition: background 0.2s;
  text-align: center;
}
.orenzo-btn-black:hover { background: #27272a; color: #fff; }

.orenzo-btn-full { width: 100%; display: block; }

/* ── Sections ─────────────────────────────────────────────────────────────── */
.orenzo-section { width: 100%; padding: 5rem 2rem; }
.orenzo-section--white  { background: #fff; }
.orenzo-section--dark   { background: #1c2025; }
.orenzo-section--light  { background: #f4f4f4; }

.orenzo-section-inner { max-width: 1400px; margin: 0 auto; }

.orenzo-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2.5rem;
  letter-spacing: 0.025em;
}
.orenzo-section-title--light { color: #fff; }

.orenzo-section-cta { margin-top: 4rem; text-align: center; }

/* ── Product Grid (home sections) ─────────────────────────────────────────── */
.orenzo-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .orenzo-product-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ── Product Card (home) ──────────────────────────────────────────────────── */
.orenzo-product-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 2px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s;
}
.orenzo-product-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.orenzo-product-card--borderless { border: none; }

.orenzo-card-img-link { display: block; flex: 1; }

.orenzo-card-img {
  position: relative;
  width: 100%;
  height: 14rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 1rem;
}
.orenzo-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
  transition: transform 0.5s ease;
}
.orenzo-product-card:hover .orenzo-card-img img { transform: scale(1.05); }

.orenzo-card-body { flex: 1; display: flex; flex-direction: column; }

.orenzo-card-name {
  font-size: 13px;
  font-weight: 400;
  color: #1f2937;
  letter-spacing: 0.025em;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.orenzo-card-price {
  font-size: 13px;
  color: #4b5563;
  letter-spacing: 0.025em;
  margin-bottom: 1rem;
}

/* ── Collection Card ──────────────────────────────────────────────────────── */
.orenzo-collection-card {
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: opacity 0.2s;
  height: auto;
}
@media (min-width: 768px) { .orenzo-collection-card { height: 340px; } }
.orenzo-collection-card:hover { opacity: 0.9; }

.orenzo-collection-card .orenzo-card-img { height: 14rem; margin-bottom: 0; }

.orenzo-collection-label {
  padding: 1.25rem;
  font-size: 14px;
  font-weight: 400;
  color: #1f2937;
  letter-spacing: 0.025em;
  line-height: 1.5;
}
.orenzo-collection-label span { margin-left: 4px; color: #9ca3af; }

/* ── Add to Cart Button ───────────────────────────────────────────────────── */
.orenzo-add-to-cart-btn {
  width: 100%;
  font-size: 12px;
  letter-spacing: 0.025em;
  background: #fff;
  color: #6b7280;
  border: 1px solid #d1d5db;
  padding: 0.625rem;
  border-radius: 3px;
  transition: border-color 0.2s, color 0.2s;
  margin-top: auto;
}
.orenzo-add-to-cart-btn:hover {
  border-color: #6b7280;
  color: #1f2937;
}
.orenzo-add-to-cart-btn.added {
  color: #16a34a;
  border-color: #16a34a;
}

/* ── Empty Message ────────────────────────────────────────────────────────── */
.orenzo-empty-msg { color: #6b7280; font-size: 0.875rem; }
.orenzo-empty-msg--light { color: rgba(255,255,255,0.6); }

/* ── Catalogue Page ───────────────────────────────────────────────────────── */
.orenzo-catalogue-main {
  padding: 3rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.orenzo-catalogue-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 2rem;
  row-gap: 3rem;
}
@media (min-width: 640px)  { .orenzo-catalogue-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px)  { .orenzo-catalogue-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .orenzo-catalogue-grid { grid-template-columns: repeat(4, 1fr); } }

.orenzo-catalogue-card {
  display: flex;
  flex-direction: column;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
}

.orenzo-catalogue-img-link { display: block; }

.orenzo-catalogue-img {
  position: relative;
  height: 20rem;
  background: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.orenzo-catalogue-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  mix-blend-mode: multiply;
  transition: transform 0.5s ease;
}
.orenzo-catalogue-card:hover .orenzo-catalogue-img img { transform: scale(1.05); }

.orenzo-catalogue-info { display: flex; flex-direction: column; flex: 1; }

.orenzo-catalogue-name {
  font-size: 15px;
  font-weight: 400;
  color: #111827;
  letter-spacing: 0.025em;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.orenzo-catalogue-card:hover .orenzo-catalogue-name { color: #000; }

.orenzo-catalogue-price {
  font-size: 15px;
  color: #1f2937;
  letter-spacing: 0.025em;
  margin-bottom: 1.5rem;
}

/* ── Page Titles ──────────────────────────────────────────────────────────── */
.orenzo-page-title {
  padding: 3rem 2rem;
  background: #fff;
  border-bottom: 1px solid #f9fafb;
  text-align: center;
}
.orenzo-page-title h1 {
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000;
}
.orenzo-page-title p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.5rem;
}

/* ── Generic Page / Blog ──────────────────────────────────────────────────── */
.orenzo-generic-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
  width: 100%;
  flex: 1;
}

.orenzo-post-item { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid #e5e7eb; }
.orenzo-post-item h2 { font-size: 1.25rem; margin-bottom: 0.75rem; }

.orenzo-page-content { line-height: 1.75; font-size: 0.9375rem; color: #374151; }
.orenzo-page-content h1, .orenzo-page-content h2, .orenzo-page-content h3 { margin: 1.5rem 0 0.75rem; }
.orenzo-page-content p { margin-bottom: 1rem; }
.orenzo-page-content img { max-width: 100%; height: auto; margin: 1rem 0; }

/* ── Single Product Page ──────────────────────────────────────────────────── */
.orenzo-product-main {
  padding: 3rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  flex: 1;
}

.orenzo-product-grid-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .orenzo-product-grid-2col { grid-template-columns: 1fr 1fr; }
}

.orenzo-product-images { display: flex; flex-direction: column; gap: 1rem; }

.orenzo-product-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orenzo-product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2rem;
  mix-blend-mode: multiply;
}

.orenzo-product-details {
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
  font-family: 'Inter', sans-serif;
}

.orenzo-product-name {
  font-size: 2.25rem;
  color: #1f2937;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.orenzo-product-price {
  font-size: 15px;
  color: #374151;
  letter-spacing: 0.025em;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.orenzo-product-old-price {
  color: #9ca3af;
  text-decoration: line-through;
  font-size: 13px;
}

.orenzo-order-form-title {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
}

/* Order Form */
.orenzo-order-form { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }

.orenzo-input-group {
  position: relative;
  display: flex;
}

.orenzo-input-icon {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  border: 1px solid #d1d5db;
  border-right: none;
  border-radius: 4px 0 0 4px;
  color: #4b5563;
  flex-shrink: 0;
}

.orenzo-input-group input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3.5rem;
  border: 1px solid #d1d5db;
  border-radius: 0 4px 4px 0;
  font-size: 0.875rem;
  color: #111;
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.orenzo-input-group input:focus { border-color: #111; }

/* Colour picker */
.orenzo-colour-picker { margin-top: 0.5rem; }
.orenzo-colour-label { font-size: 0.875rem; color: #6b7280; margin-bottom: 0.75rem; }
.orenzo-colour-options { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.orenzo-colour-btn {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid #9ca3af;
  font-size: 13px;
  color: #4b5563;
  background: #fff;
  transition: all 0.2s;
}
.orenzo-colour-btn:hover { border-color: #4b5563; }
.orenzo-colour-btn.selected {
  background: #2a2a2a;
  color: #fff;
  border-color: #2a2a2a;
}

/* Buy button */
.orenzo-buy-btn {
  padding: 1rem 2rem;
  margin-top: 0.5rem;
}

/* Product description */
.orenzo-product-description {
  margin-top: 2rem;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}
@media (min-width: 768px) { .orenzo-product-description { padding: 0; } }

.orenzo-product-description img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}
.orenzo-product-description p {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0; padding: 0;
}

/* Fixed bottom bar */
.orenzo-bottom-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  background: #111;
  color: #fff;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  font-family: 'Inter', sans-serif;
}
.orenzo-bottom-bar:hover { background: #27272a; color: #fff; }

/* ── Modal / Success Popup ────────────────────────────────────────────────── */
.orenzo-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  padding: 1rem;
}

.orenzo-modal {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  max-width: 280px;
  width: 100%;
  padding: 2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.orenzo-modal-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  background: #4ade80;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.orenzo-modal h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
}

.orenzo-modal-sub {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 1.25rem;
}

/* ── Contact Page ─────────────────────────────────────────────────────────── */
.orenzo-contact-main {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  flex: 1;
}

.orenzo-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 768px) {
  .orenzo-contact-grid { grid-template-columns: 1fr 1fr; }
}

.orenzo-contact-info h2 {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000;
  margin-bottom: 1.5rem;
}

.orenzo-contact-intro {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.orenzo-contact-items { display: flex; flex-direction: column; gap: 1.5rem; }

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

.orenzo-contact-icon { color: #c2a685; margin-top: 2px; flex-shrink: 0; }

.orenzo-contact-item h3 {
  font-weight: 700;
  color: #1f2937;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.orenzo-contact-item p { font-size: 0.875rem; color: #4b5563; line-height: 1.6; }

/* Contact form */
.orenzo-contact-form-wrap {
  background: #fff;
  padding: 2rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.orenzo-contact-form-wrap h2 {
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000;
  margin-bottom: 1.5rem;
}

.orenzo-contact-form { display: flex; flex-direction: column; gap: 1.5rem; }

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

.orenzo-form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.orenzo-form-group label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
  font-weight: 600;
}

.orenzo-form-group input,
.orenzo-form-group textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  padding: 0.75rem;
  font-size: 0.875rem;
  color: #111;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}
.orenzo-form-group input:focus,
.orenzo-form-group textarea:focus { border-color: #111; }
.orenzo-form-group textarea { resize: none; }

.orenzo-form-error {
  color: #ef4444;
  font-size: 0.875rem;
  padding: 0.5rem 0;
}
.orenzo-form-success {
  color: #16a34a;
  font-size: 0.875rem;
  padding: 0.5rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 4px;
}

/* ── Cart Page ────────────────────────────────────────────────────────────── */
.orenzo-cart-main {
  padding: 3rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  flex: 1;
}

.orenzo-cart-empty {
  text-align: center;
  padding: 5rem 0;
}
.orenzo-cart-empty p {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.orenzo-cart-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .orenzo-cart-grid { grid-template-columns: 2fr 1fr; }
}

.orenzo-cart-items { display: flex; flex-direction: column; gap: 1.5rem; }

.orenzo-cart-item {
  background: #fff;
  border: 1px solid #f9fafb;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.orenzo-cart-item-img {
  position: relative;
  width: 6rem;
  height: 6rem;
  background: #f9fafb;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orenzo-cart-item-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}

.orenzo-cart-item-info { flex: 1; }

.orenzo-cart-item-info h3 {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.orenzo-cart-item-price {
  font-size: 0.75rem;
  color: #c2a685;
  margin-top: 4px;
}

.orenzo-qty-ctrl {
  display: flex;
  align-items: center;
  border: 1px solid #e5e7eb;
  font-family: 'Inter', sans-serif;
}

.orenzo-qty-btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  color: #374151;
  background: #fff;
  transition: background 0.2s;
  line-height: 1;
}
.orenzo-qty-btn:hover { background: #f3f4f6; }

.orenzo-qty-ctrl span {
  padding: 0.25rem 0.75rem;
  border-left: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  font-size: 0.875rem;
  min-width: 2rem;
  text-align: center;
}

.orenzo-remove-btn {
  color: #9ca3af;
  padding: 4px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.orenzo-remove-btn:hover { color: #ef4444; }

/* Cart summary */
.orenzo-cart-summary {
  background: #fff;
  border: 1px solid #f9fafb;
  padding: 1.5rem;
  height: fit-content;
  font-family: 'Inter', sans-serif;
}

.orenzo-cart-summary h2 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.orenzo-summary-rows { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }

.orenzo-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #4b5563;
}

.orenzo-summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 600;
  color: #000;
  border-top: 1px solid #f3f4f6;
  padding-top: 1rem;
  margin-bottom: 1.5rem;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.orenzo-footer {
  background: #1a1a1a;
  color: #9ca3af;
  padding: 3rem 2rem;
  font-family: 'Inter', sans-serif;
  border-top: 4px solid #000;
  margin-top: auto;
}

.orenzo-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .orenzo-footer-inner { grid-template-columns: repeat(4, 1fr); }
}

.orenzo-footer-col h4 {
  color: #fff;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.orenzo-footer-col p {
  font-size: 0.75rem;
  line-height: 1.75;
  color: #9ca3af;
}

.orenzo-footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }

.orenzo-footer-col ul a {
  font-size: 0.75rem;
  color: #9ca3af;
  transition: color 0.2s;
}
.orenzo-footer-col ul a:hover { color: #fff; }

.orenzo-newsletter { display: flex; margin-top: 1rem; }

.orenzo-newsletter input {
  background: #2a2a2a;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  flex: 1;
  border: none;
  outline: none;
  border-radius: 6px 0 0 6px;
}

.orenzo-newsletter button {
  background: #c2a685;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  transition: background 0.2s;
  border-radius: 0 6px 6px 0;
  font-family: 'Inter', sans-serif;
}
.orenzo-newsletter button:hover { background: #b09473; }

.orenzo-footer-bottom {
  max-width: 1400px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid #27272a;
  text-align: center;
  font-size: 0.75rem;
  color: #9ca3af;
}

/* ── WhatsApp Button ──────────────────────────────────────────────────────── */
.orenzo-whatsapp-btn {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 50;
  background: #25D366;
  color: #fff;
  padding: 0.875rem;
  border-radius: 9999px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orenzo-whatsapp-btn:hover { transform: scale(1.1); color: #fff; }

/* ── Animations ───────────────────────────────────────────────────────────── */
@keyframes popup-in {
  0%   { opacity: 0; transform: scale(0.75); }
  70%  { transform: scale(1.04); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes circle-pop {
  0%   { opacity: 0; transform: scale(0); }
  60%  { transform: scale(1.25); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes check-draw {
  0%   { stroke-dashoffset: 80; opacity: 0; }
  40%  { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 1; }
}
@keyframes done-pulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  50%       { transform: scale(1.08); box-shadow: 0 0 0 12px rgba(74,222,128,0); }
}

.popup-in { animation: popup-in 0.45s cubic-bezier(0.34,1.56,0.64,1) both; }

.done-pulse {
  animation:
    circle-pop 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.15s both,
    done-pulse 1.6s ease-in-out 0.8s infinite;
}

.check-draw {
  stroke-dasharray: 80;
  animation: check-draw 0.6s ease-out 0.4s both;
}

.fade-in-element {
  opacity: 0;
  transform: translateY(30px);
  /* GSAP will animate these */
}
