/* ==========================================================================
   ELORA Brand & Landing Page Mockup Stylesheet
   Specific layouts, UI components, editorial grids, and Gifting Flow modal
   ========================================================================== */

/* --- Layout Wrappers --- */
.elora-site {
  background-color: var(--bg-primary);
  color: var(--text-dark);
  font-family: var(--font-sans);
  line-height: 1.6;
}

/* --- Brand Typography System --- */
.elora-serif {
  font-family: var(--font-serif);
  font-weight: 300;
}

.elora-heading-xl {
  font-family: var(--font-serif);
  font-size: 72px;
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -1.5px;
}

.elora-heading-lg {
  font-family: var(--font-serif);
  font-size: 48px;
  line-height: 1.15;
  font-weight: 300;
}

.elora-heading-md {
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1.25;
  font-weight: 400;
}

.elora-lead {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 400;
  max-width: 550px;
}

/* --- Buttons & Action Elements --- */
.elora-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.elora-btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(194, 130, 111, 0.2);
}

.elora-btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194, 130, 111, 0.3);
}

.elora-btn-secondary {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid var(--text-dark);
}

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

.elora-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--text-dark);
  padding-bottom: 2px;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

/* --- Core Page Components --- */
.elora-section {
  padding: 100px 8% 100px 8%;
  position: relative;
}

.elora-site-header {
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8%;
  border-bottom: 1px solid var(--border-subtle);
  background-color: var(--bg-primary);
  position: sticky;
  top: 0;
  z-index: 500;
}

.elora-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.elora-brand-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dark);
}

.elora-brand-subtitle {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
  text-align: right;
  border-top: 0.5px solid var(--text-muted);
  padding-top: 2px;
}

.elora-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.elora-nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
}

.elora-nav-link:hover {
  color: var(--text-dark);
}

/* --- Hero Section --- */
.elora-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 160px);
  padding: 0;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-text-pane {
  padding: 10% 12% 10% 16%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 35px;
  background-color: var(--bg-primary);
}

.hero-endorsement {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.hero-endorsement::before {
  content: '';
  width: 15px;
  height: 1px;
  background-color: var(--color-accent);
}

.hero-ctas {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 10px;
}

.hero-image-pane {
  background-color: var(--bg-secondary);
  position: relative;
  overflow: hidden;
  min-height: 450px;
}

.hero-image-pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 8s ease;
}

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

/* --- Section Headers --- */
.elora-section-header {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 700px;
}

.elora-section-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* --- How It Works Section --- */
.elora-how-it-works {
  background-color: var(--bg-secondary);
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  background-color: var(--bg-primary);
  border-radius: 24px;
  padding: 45px 35px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(30, 28, 26, 0.04);
  transition: var(--transition-smooth);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Frictionless Concept Banner --- */
.frictionless-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-subtle);
  align-items: center;
}

.frictionless-graphic {
  background-color: var(--bg-secondary);
  border-radius: 30px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  border: 1px solid var(--border-subtle);
}

.frictionless-input-demo {
  background-color: var(--bg-primary);
  border-radius: 100px;
  padding: 8px 8px 8px 24px;
  border: 1px solid var(--border-strong);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.input-demo-lbl {
  font-size: 13px;
  color: var(--text-muted);
}

.input-demo-val {
  background-color: var(--text-dark);
  color: var(--bg-primary);
  font-size: 11px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.frictionless-trust {
  display: flex;
  gap: 20px;
}

.trust-bubble {
  background-color: rgba(194, 130, 111, 0.08);
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
}

/* --- The Escrow Trust Loop Section --- */
.escrow-section {
  background-color: #FAF8F5;
  border-bottom: 1px solid var(--border-subtle);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.escrow-badge-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.escrow-badge-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  border-radius: 20px;
  background-color: var(--bg-secondary);
  border: 1px solid rgba(30, 28, 26, 0.04);
}

.escrow-badge-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sage);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.escrow-badge-icon svg {
  width: 22px;
  height: 22px;
}

.escrow-badge-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 6px;
}

.escrow-badge-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Lifestyle Gallery Collage --- */
.lifestyle-section {
  background-color: var(--bg-secondary);
}

.lifestyle-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.lifestyle-image-holder {
  background-color: var(--bg-primary);
  border-radius: 32px;
  overflow: hidden;
  height: 550px;
  box-shadow: var(--shadow-md);
}

.lifestyle-image-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lifestyle-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.lifestyle-quote {
  font-family: var(--font-serif);
  font-size: 32px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  color: var(--text-muted);
  position: relative;
  padding-left: 30px;
}

.lifestyle-quote::before {
  content: '“';
  font-family: var(--font-serif);
  font-size: 90px;
  position: absolute;
  left: -10px;
  top: -30px;
  color: var(--color-accent);
  opacity: 0.3;
}

/* --- Recipient Teaser Area --- */
.recipient-teaser {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-subtle);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.phone-teaser-container {
  display: flex;
  justify-content: center;
}

.mini-sms-mockup {
  width: 320px;
  background-color: #ECE7E1;
  border-radius: 36px;
  padding: 15px;
  border: 8px solid #222;
  box-shadow: var(--shadow-md);
  font-family: var(--font-sans);
}

.sms-bubble {
  background-color: var(--color-white);
  border-radius: 18px;
  padding: 15px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  margin-top: 10px;
}

.sms-header {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 12px;
  font-weight: 500;
}

.sms-link {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
}

/* --- Final CTA Section --- */
.final-cta {
  text-align: center;
  background-color: #1E1C1A;
  color: var(--color-white);
  padding: 120px 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.final-cta h2 {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 300;
  letter-spacing: -0.5px;
}

.final-cta p {
  font-size: 16px;
  color: #A8A29A;
  max-width: 600px;
}

/* --- Footer --- */
.elora-site-footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 8% 40px 8%;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 30px;
}

.footer-brand-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-brand-info p {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 300px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links-col h5 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.footer-links-list a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--text-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================================
   INTERACTIVE GIFTING FLOW WIZARD MODAL
   ========================================================================== */
.gifting-wizard-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(30, 28, 26, 0.4);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.gifting-wizard-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.wizard-modal-box {
  width: 90%;
  max-width: 600px;
  background-color: var(--bg-primary);
  border-radius: 32px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
  position: relative;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.gifting-wizard-overlay.active .wizard-modal-box {
  transform: translateY(0);
}

.wizard-close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  background: var(--bg-secondary);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.wizard-close-btn:hover {
  background-color: var(--text-dark);
  color: var(--bg-primary);
}

.wizard-progress-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 35px;
  position: relative;
}

.wizard-progress-bar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--border-strong);
  z-index: 1;
  transform: translateY(-50%);
}

.wizard-progress-line-active {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-accent);
  z-index: 2;
  transform: translateY(-50%);
  transition: var(--transition-smooth);
}

.wizard-step-indicator {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  color: var(--text-muted);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  position: relative;
  z-index: 3;
  transition: var(--transition-smooth);
}

.wizard-step-indicator.active {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 6px rgba(194, 130, 111, 0.15);
}

.wizard-step-indicator.completed {
  background-color: var(--color-sage);
  color: var(--color-white);
  border-color: var(--color-sage);
}

/* Wizard Form Steps */
.wizard-form-step {
  display: none;
  animation: fadeIn 0.4s ease;
}

.wizard-form-step.active {
  display: block;
}

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

.wizard-step-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px;
}

.wizard-step-intro {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 25px;
}

/* Step 1: Voucher Selection Card list */
.voucher-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.voucher-select-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-radius: 20px;
  border: 1.5px solid var(--border-strong);
  background-color: var(--bg-primary);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.voucher-select-card:hover {
  border-color: var(--color-accent);
  background-color: rgba(194, 130, 111, 0.02);
}

.voucher-select-card.active {
  border-color: var(--color-accent);
  background-color: rgba(194, 130, 111, 0.05);
  box-shadow: 0 4px 12px rgba(194, 130, 111, 0.08);
}

.voucher-card-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 2px;
}

.voucher-card-desc {
  font-size: 11px;
  color: var(--text-muted);
}

.voucher-card-price {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--color-accent);
}

/* Step 2: Contact Options */
.delivery-mode-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background-color: var(--bg-secondary);
  padding: 5px;
  border-radius: 100px;
  margin-bottom: 25px;
}

.delivery-mode-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 10px 0;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.delivery-mode-btn.active {
  background-color: var(--color-white);
  color: var(--text-dark);
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.input-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.input-field {
  background-color: var(--bg-secondary);
  border: 1px solid transparent;
  padding: 14px 20px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.input-field:focus {
  outline: none;
  border-color: var(--color-accent);
  background-color: var(--color-white);
  box-shadow: 0 0 0 4px rgba(194, 130, 111, 0.1);
}

.input-field::placeholder {
  color: #A29B93;
}

/* Step 3: Checkout Escrow Summary */
.checkout-summary-box {
  background-color: var(--bg-secondary);
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1px solid var(--border-subtle);
}

.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
}

.checkout-summary-row.total {
  border-top: 1px solid var(--border-strong);
  padding-top: 15px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.escrow-guarantee-note {
  display: flex;
  gap: 12px;
  background-color: rgba(78, 96, 80, 0.08);
  border-radius: 16px;
  padding: 18px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-sage);
  border: 0.5px solid rgba(78, 96, 80, 0.15);
}

.escrow-guarantee-note svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Step 4: Success Message */
.success-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(78, 96, 80, 0.12);
  color: var(--color-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.sms-success-simulation-box {
  background-color: #ECE7E1;
  border-radius: 28px;
  padding: 15px;
  width: 100%;
  max-width: 320px;
  margin-top: 15px;
  border: 6px solid #222;
  box-shadow: var(--shadow-md);
  text-align: left;
  animation: slideInUp 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.wizard-footer-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
}

.wizard-btn-next {
  margin-left: auto;
}

/* ==========================================================================
   MOBILE PREVIEW ONLY STYLES (Overrides inside the simulated iPhone Screen)
   ========================================================================== */
.phone-screen-content .elora-site-header {
  height: 70px;
  padding: 0 20px;
}

.phone-screen-content .elora-brand-title {
  font-size: 20px;
  letter-spacing: 2px;
}

.phone-screen-content .elora-brand-subtitle {
  font-size: 7px;
  letter-spacing: 1px;
}

.phone-screen-content .elora-nav {
  display: none; /* Hide standard nav on mobile header, click CTA direct */
}

.phone-screen-content .elora-section {
  padding: 60px 20px 60px 20px;
}

.phone-screen-content .elora-hero {
  grid-template-columns: 1fr;
  min-height: auto;
}

.phone-screen-content .hero-text-pane {
  padding: 40px 20px;
  gap: 20px;
}

.phone-screen-content .elora-heading-xl {
  font-size: 40px;
  letter-spacing: -0.5px;
}

.phone-screen-content .hero-image-pane {
  min-height: 280px;
  border-radius: 0;
}

.phone-screen-content .how-it-works-grid {
  grid-template-columns: 1fr;
  gap: 20px;
}

.phone-screen-content .step-card {
  padding: 30px 24px;
}

.phone-screen-content .frictionless-banner {
  grid-template-columns: 1fr;
  gap: 40px;
}

.phone-screen-content .escrow-section {
  grid-template-columns: 1fr;
  gap: 40px;
}

.phone-screen-content .elora-heading-lg {
  font-size: 32px;
}

.phone-screen-content .lifestyle-layout {
  grid-template-columns: 1fr;
  gap: 40px;
}

.phone-screen-content .lifestyle-image-holder {
  height: 350px;
}

.phone-screen-content .lifestyle-quote {
  font-size: 22px;
}

.phone-screen-content .recipient-teaser {
  grid-template-columns: 1fr;
  gap: 40px;
}

.phone-screen-content .final-cta h2 {
  font-size: 36px;
}

.phone-screen-content .footer-top {
  grid-template-columns: 1fr;
  gap: 40px;
}

.phone-screen-content .footer-bottom {
  flex-direction: column;
  gap: 15px;
  text-align: center;
}

/* ==========================================================================
   FLOWER SHOWCASE SECTION & DIRECT ADDRESS FORMS
   ========================================================================== */
.elora-collection-section {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-subtle);
}

.elora-collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.product-card {
  background-color: var(--color-white);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.product-card.hidden-product {
  display: none !important;
}

.product-card.visible-product {
  display: flex !important;
  animation: fadeIn 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.product-image-container {
  height: 320px;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-secondary);
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card:hover .product-image-container img {
  transform: scale(1.06);
}

.product-card-details {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
}

.product-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.product-card-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
}

.product-card-price {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--color-accent);
}

.product-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.product-card-actions {
  margin-top: auto;
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
}

/* Direct Shipping Form Styling */
.delivery-address-form {
  display: none;
  flex-direction: column;
  gap: 15px;
  animation: fadeIn 0.4s ease;
}

.delivery-address-form.active {
  display: flex;
}

.form-row-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
}

/* Simulated Tracking Timeline */
.delivery-track-sim {
  background-color: rgba(78, 96, 80, 0.05);
  border: 1px solid rgba(78, 96, 80, 0.15);
  border-radius: 24px;
  padding: 25px;
  width: 100%;
  max-width: 420px;
  margin-top: 20px;
  text-align: left;
  animation: slideInUp 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.delivery-track-header {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-sage);
  border-bottom: 1px solid rgba(78, 96, 80, 0.15);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}

.timeline-list::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: 1px;
  height: calc(100% - 15px);
  background-color: var(--color-sage);
  opacity: 0.3;
}

.timeline-item {
  position: relative;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
}

.timeline-item.active {
  color: var(--text-dark);
  font-weight: 500;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  border: 2px solid var(--color-sage);
}

.timeline-item.active::before {
  background-color: var(--color-sage);
  box-shadow: 0 0 0 4px rgba(78, 96, 80, 0.15);
}

/* Simulated Mobile Overrides for Flower Showcase */
.phone-screen-content .elora-collection-grid {
  grid-template-columns: 1fr;
  gap: 24px;
}

.phone-screen-content .product-image-container {
  height: 220px;
}

.phone-screen-content .product-card-details {
  padding: 20px;
}

.phone-screen-content .product-card-title,
.phone-screen-content .product-card-price {
  font-size: 20px;
}

