/* NaturLife Danmark - Styling */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,400&display=swap');

:root {
  --bg-dark-top: #261108;
  --bg-dark-main: #1d0d07;
  --bg-dark-card: #2c150b;
  --bg-dark-hover: #381b0e;
  --accent-green: #2ecc71;
  --accent-green-bright: #25C849;
  --accent-green-dark: #1da83a;
  --accent-green-glow: rgba(37, 200, 73, 0.45);
  --text-main: #f7ede2;
  --text-muted: #c5a898;
  --text-gold: #e6c594;
  --font-heading: 'Montserrat', sans-serif;
  --font-display: 'Playfair Display', serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 30px;
  --radius-pill: 50px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

body {
  font-family: var(--font-heading);
  background-color: var(--bg-dark-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Main Site Wrapper */
.site-frame {
  max-width: 1300px;
  margin: 30px auto 40px;
  padding: 0 20px;
}

.site-inner-box {
  background: linear-gradient(135deg, #2b1309 0%, #190a04 60%, #240e06 100%);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
}

/* Header Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
}

.logo-icon {
  width: 32px;
  height: 32px;
}

.logo-text {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: #ffffff;
  text-transform: uppercase;
}

.nav-link-item {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.nav-link-item:hover {
  color: var(--accent-green-bright);
}

.btn-cta-green-sm {
  background: linear-gradient(135deg, #2ae054 0%, #1da83a 100%);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 20px var(--accent-green-glow);
  transition: var(--transition);
}

.btn-cta-green-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 200, 73, 0.6);
}

/* SECTION HEADERS */
.section {
  padding: 50px 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 30px;
}

.video-main-section {
  padding-top: 40px;
}

.video-main-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
}

.video-section-box {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  position: relative;
}

.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: #000000;
  cursor: pointer;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Custom Play Overlay */
.video-custom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  z-index: 10;
  transition: var(--transition);
}

.video-container:hover .video-custom-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.big-play-btn {
  width: 86px;
  height: 86px;
  background: var(--accent-green-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 35px var(--accent-green-glow);
  transition: var(--transition);
}

.video-container:hover .big-play-btn {
  transform: scale(1.15);
  background: #2ae054;
}

.overlay-text {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.15rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}

.video-overlay-info {
  padding: 22px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(30, 14, 8, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.video-info-text h4 {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 2px;
}

.video-info-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hls-badge-btn {
  background: var(--accent-green-bright);
  color: #ffffff;
  border: none;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px var(--accent-green-glow);
}

.hls-badge-btn:hover {
  background: #2ae054;
  transform: scale(1.04);
}

/* RECIPES PAGE STYLING */
.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1140px;
  margin: 0 auto;
}

.recipe-card {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.recipe-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 200, 73, 0.4);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.recipe-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #180a04;
}

.recipe-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.recipe-card:hover .recipe-img {
  transform: scale(1.06);
}

.recipe-number-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(37, 200, 73, 0.9);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.recipe-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.recipe-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.recipe-prep-step {
  font-size: 0.88rem;
  color: var(--text-gold);
  margin-bottom: 12px;
  font-weight: 500;
}

.recipe-ingredients h5 {
  font-size: 0.82rem;
  color: var(--accent-green-bright);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.recipe-ingredients ul {
  list-style: none;
  margin-bottom: 12px;
}

.recipe-ingredients li {
  font-size: 0.9rem;
  color: var(--text-main);
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.recipe-ingredients li::before {
  content: '•';
  color: var(--accent-green-bright);
  font-weight: bold;
}

.recipe-note-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.recipe-serve-note {
  font-size: 0.88rem;
  color: var(--text-gold);
  font-weight: 700;
  margin-top: auto;
  padding-top: 10px;
}

/* ORDER FORM SECTION */
.order-form-section {
  background: rgba(0, 0, 0, 0.2);
  padding-top: 40px;
}

.order-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}

/* Product Offer Card */
.product-offer-card {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.offer-img-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  background: #180a04;
  overflow: hidden;
}

.offer-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.offer-badge-floating {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #ff4757;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 15px rgba(255, 71, 87, 0.5);
}

.offer-card-details {
  padding: 28px;
}

.offer-product-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.offer-product-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.offer-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-highlights span {
  font-size: 0.9rem;
  color: var(--text-gold);
  font-weight: 600;
}

/* Order Card Form */
.order-card-form {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.price-header-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.4);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.price-box-col {
  display: flex;
  flex-direction: column;
}

.old-price {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 0.95rem;
}

.new-price {
  color: var(--text-gold);
  font-size: 1.4rem;
  font-weight: 800;
}

.discount-tag {
  background: #ff4757;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

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

.form-label {
  display: block;
  font-size: 0.88rem;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-green-bright);
  box-shadow: 0 0 15px var(--accent-green-glow);
  background: rgba(0, 0, 0, 0.5);
}

.phone-input-wrapper {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.phone-input-wrapper.error {
  border-color: #ff4757;
  box-shadow: 0 0 15px rgba(255, 71, 87, 0.4);
}

.phone-input-wrapper.valid {
  border-color: var(--accent-green-bright);
  box-shadow: 0 0 12px var(--accent-green-glow);
}

.country-prefix {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-gold);
  font-weight: 700;
  font-size: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-field {
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.phone-error-notice {
  font-size: 0.82rem;
  color: #ff4757;
  margin-top: 6px;
  font-weight: 600;
  display: none;
}

.phone-error-notice.active {
  display: block;
}

.btn-submit-order {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #2ae054 0%, #1da83a 100%);
  color: #ffffff;
  border: none;
  padding: 18px;
  border-radius: var(--radius-pill);
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 30px var(--accent-green-glow);
  transition: var(--transition);
  margin-top: 10px;
}

.btn-submit-order:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(37, 200, 73, 0.6);
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-item {
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* THANK YOU PAGE STYLING */
.thank-you-section {
  padding: 60px 40px;
  display: flex;
  justify-content: center;
}

.thank-you-card {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 50px 40px;
  max-width: 680px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0,0,0,0.7);
}

.success-icon-badge {
  width: 90px;
  height: 90px;
  background: rgba(37, 200, 73, 0.12);
  border: 2px solid var(--accent-green-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 30px var(--accent-green-glow);
}

.thank-you-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.thank-you-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.thank-you-summary-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: left;
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-row span {
  color: var(--text-muted);
}

.status-pill {
  background: rgba(37, 200, 73, 0.2);
  color: var(--accent-green-bright);
  font-weight: 700;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
}

.thank-you-info-notice {
  background: rgba(230, 197, 148, 0.1);
  border-left: 4px solid var(--text-gold);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  text-align: left;
  font-size: 0.88rem;
  color: var(--text-gold);
}

/* GOOGLE COMPLIANT FOOTER */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 50px 30px;
  background: #150904;
}

.footer-legal-notice {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  margin-bottom: 30px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

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

.footer-col h5 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-green-bright);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* LEGAL POLICY MODAL */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.legal-modal-card {
  background: #241007;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 40px;
  max-width: 680px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8);
  position: relative;
}

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

.modal-title {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.legal-modal-body {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.legal-modal-body h4 {
  color: #ffffff;
  margin: 16px 0 8px;
}

/* Toast notice */
.toast-notice {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--accent-green-bright);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  box-shadow: 0 10px 25px var(--accent-green-glow);
  z-index: 150;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
}

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

/* Responsive queries */
@media (max-width: 900px) {
  .order-form-grid {
    grid-template-columns: 1fr;
  }
  .recipes-grid {
    grid-template-columns: 1fr;
  }
  .video-main-heading {
    font-size: 2rem;
  }
  .section {
    padding: 30px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
