/* RESET & BASICS */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #050507;
  color: #ffffff;
  line-height: 1.4;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* COLOR PALETTE - LUXURY GOLD */
:root {
  --primary-gold: #d4af37;
  --primary-gold-bright: #f5cf53;
  --primary-gold-hover: #e8c142;
  --dark-bg: #070709;
  --input-bg: #09090c;
  --input-border: #d4af37;
  --text-muted: #bbbbbb;
  --error-color: #ff4d48;
  --success-color: #4cd964;
}

/* TOP NAVIGATION BAR */
.top-nav {
  position: relative;
  z-index: 10;
  background: rgba(5, 5, 7, 0.95);
  border-bottom: 1px solid #1a1a24;
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-gold-bright);
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #dddddd;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s;
}

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

/* HERO SECTION CONTAINER */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #050506;
  background-image: url('images/fitness_bg.jpg');
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 40px 10px 40px;
  overflow: hidden;
}

/* Dark Gradient Overlay for left text readability */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    #050507 0%, 
    #050507 48%, 
    rgba(5, 5, 7, 0.85) 65%, 
    rgba(5, 5, 7, 0.4) 85%, 
    rgba(5, 5, 7, 0.2) 100%
  );
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* TOP LEFT GOLD CUT ACCENT LINE */
.top-accent-line {
  position: absolute;
  top: -15px;
  left: -20px;
  width: 40px;
  height: 25px;
  border-left: 2px solid var(--primary-gold);
  border-top: 2px solid var(--primary-gold);
  transform: skewX(-30deg);
}

.hero-content {
  max-width: 680px;
  padding-top: 10px;
}

/* BRAND TITLE */
.brand-title {
  font-family: 'Oswald', 'Montserrat', sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  color: var(--primary-gold-bright);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(212, 175, 55, 0.4);
}

/* SUBTITLE */
.hero-subtitle {
  font-size: clamp(16px, 3.5vw, 22px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.35;
}

/* BENEFIT LIST */
.benefit-list {
  list-style: none;
  margin-bottom: 24px;
}

.benefit-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.bullet-icon {
  width: 20px;
  height: 20px;
  background-color: var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #050507;
  margin-right: 14px;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.bullet-icon svg {
  margin-left: 1px;
}

.bullet-text {
  font-size: clamp(15px, 2.5vw, 18px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

/* CALLOUT BANNER WITH LIGHTNING */
.callout-banner {
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 24px;
  color: var(--primary-gold-bright);
}

.lightning-bolt {
  font-size: 22px;
  margin-right: 8px;
  filter: drop-shadow(0 0 6px var(--primary-gold));
}

.callout-text {
  font-size: clamp(15px, 2.8vw, 19px);
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* OFFER WRAPPER (FORM + ARROW + PRODUCT BOX) */
.offer-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  position: relative;
}

/* ORDER BOX */
.order-box {
  width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.only-today {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #ffffff;
}

.date-badge {
  background-color: #121216;
  color: #ffffff;
  border: 1px solid #33333d;
  padding: 4px 18px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}

.price-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 14px;
}

.old-price {
  font-size: 15px;
  color: #999999;
  text-decoration: line-through;
  margin-bottom: 4px;
  font-weight: 600;
}

.new-price {
  background-color: var(--primary-gold);
  color: #050507;
  font-size: 24px;
  font-weight: 900;
  padding: 6px 0;
  width: 100%;
  text-align: center;
  border-radius: 2px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.asterisk {
  font-size: 16px;
  vertical-align: top;
  margin-left: 2px;
}

/* ORDER FORM */
.order-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.input-group {
  position: relative;
  width: 100%;
}

.form-control {
  width: 100%;
  height: 46px;
  background-color: var(--input-bg);
  border: 1px solid var(--input-border);
  color: #ffffff;
  padding: 0 14px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control::placeholder {
  color: #888888;
}

.form-control:focus {
  border-color: #f5cf53;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.form-control.has-error {
  border-color: var(--error-color) !important;
  box-shadow: 0 0 8px rgba(255, 77, 72, 0.6) !important;
}

.form-control.is-valid {
  border-color: var(--success-color);
  box-shadow: 0 0 8px rgba(76, 217, 100, 0.4);
}

/* FIELD ERROR MESSAGE */
.field-error-message {
  display: none;
  font-size: 12px;
  font-weight: 700;
  color: var(--error-color);
  margin-top: 6px;
  text-align: left;
  line-height: 1.3;
  background: rgba(255, 77, 72, 0.1);
  padding: 6px 10px;
  border-radius: 4px;
  border-left: 3px solid var(--error-color);
}

.submit-btn {
  width: 100%;
  height: 50px;
  background-color: var(--primary-gold);
  color: #050507;
  border: none;
  font-family: inherit;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.5px;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 4px;
  transition: background-color 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  -webkit-tap-highlight-color: transparent;
}

.submit-btn:hover {
  background-color: var(--primary-gold-hover);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.submit-btn:active {
  transform: scale(0.98);
}

/* CURVED ARROW */
.arrow-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
}

.curved-arrow {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

/* PRODUCT BOX CONTAINER */
.product-box-container {
  position: relative;
  width: 180px;
  display: flex;
  justify-content: center;
}

.product-img {
  width: 100%;
  height: auto;
  max-width: 180px;
  border-radius: 4px;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.9));
  transition: transform 0.3s ease;
}

.product-img:hover {
  transform: scale(1.03) rotate(-1deg);
}

/* NEW DANISH DISCLAIMER */
.disclaimer {
  font-size: 12px;
  color: #aaaaaa;
  margin-top: 16px;
  font-weight: 500;
  line-height: 1.5;
  max-width: 620px;
}

/* BOTTOM GOLD ACCENT LINE */
.bottom-accent-line {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 2px;
  background-color: var(--primary-gold);
  margin-top: 40px;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

/* LEGAL / DOCUMENTATION PAGES (quality.html & disclaimer.html) */
.legal-page-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: radial-gradient(circle at center, #101017 0%, #050507 100%);
}

.page-main-container {
  max-width: 850px;
  margin: 40px auto;
  padding: 0 20px;
  flex-grow: 1;
}

.legal-card {
  background: rgba(16, 16, 22, 0.95);
  border: 1px solid #282838;
  border-top: 3px solid var(--primary-gold);
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.page-badge {
  font-size: 12px;
  font-weight: 800;
  color: var(--primary-gold);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.page-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(24px, 4vw, 34px);
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.2;
}

.page-intro {
  font-size: 15px;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 24px;
}

.legal-divider {
  border: none;
  height: 1px;
  background: #242434;
  margin: 24px 0;
}

.legal-section {
  margin-bottom: 30px;
}

.section-badge-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.legal-section h2 {
  font-size: 20px;
  color: var(--primary-gold-bright);
  font-weight: 800;
  margin-bottom: 12px;
}

.legal-section p {
  font-size: 14px;
  color: #bbbbbb;
  line-height: 1.6;
  margin-bottom: 12px;
}

.highlight-box {
  background: rgba(212, 175, 55, 0.08);
  border-left: 3px solid var(--primary-gold);
  padding: 16px;
  border-radius: 4px;
  margin: 16px 0;
}

.highlight-box p {
  color: #ffffff;
  margin-bottom: 0;
}

.warning-box {
  background: rgba(255, 77, 72, 0.08);
  border-left-color: var(--error-color);
}

.doc-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #09090d;
  border: 1px solid #20202c;
  padding: 16px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.doc-icon {
  width: 26px;
  height: 26px;
  background-color: var(--primary-gold);
  color: #050507;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
  font-size: 14px;
}

.doc-item h3 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 4px;
}

.action-footer {
  margin-top: 35px;
  text-align: center;
}

/* DETAILS SECTION */
.details-section {
  background-color: #0b0b0e;
  padding: 60px 20px 100px 20px;
  border-top: 1px solid #1a1a22;
}

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

.section-title {
  text-align: center;
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 35px;
  letter-spacing: 1px;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: rgba(20, 20, 26, 0.8);
  border: 1px solid #242430;
  border-radius: 8px;
  padding: 26px 20px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-gold);
}

.card-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.card p {
  font-size: 14px;
  color: #bbbbbb;
  line-height: 1.6;
}

/* SITE FOOTER */
.site-footer {
  background-color: #050507;
  padding: 30px 20px 90px 20px;
  border-top: 1px solid #191922;
  text-align: center;
  font-size: 12px;
  color: #888888;
}

.footer-legal-notice {
  max-width: 800px;
  margin: 0 auto 20px auto;
  line-height: 1.6;
}

.footer-links {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--primary-gold);
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* STICKY MOBILE CTA BAR */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background-color: #0a0a0d;
  border-top: 2px solid var(--primary-gold);
  z-index: 999;
  padding: 0 16px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.8);
}

.sticky-price-info {
  display: flex;
  flex-direction: column;
}

.sticky-label {
  font-size: 12px;
  color: #888888;
  font-weight: 600;
}

.sticky-price {
  font-size: 18px;
  font-weight: 900;
  color: var(--primary-gold-bright);
}

.sticky-price del {
  font-size: 12px;
  color: #777777;
  margin-left: 4px;
}

.sticky-btn {
  background-color: var(--primary-gold);
  color: #050507;
  text-decoration: none;
  font-weight: 900;
  font-size: 15px;
  padding: 10px 22px;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
  transition: background-color 0.2s;
}

.sticky-btn:active {
  transform: scale(0.96);
}

/* MODAL STYLES */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.85);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.modal-content {
  background-color: #14141a;
  border: 2px solid var(--primary-gold);
  border-radius: 8px;
  max-width: 480px;
  width: 100%;
  padding: 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.policy-content {
  max-width: 650px;
  text-align: left;
  max-height: 80vh;
  overflow-y: auto;
}

.policy-text p {
  margin-bottom: 14px;
  line-height: 1.6;
  color: #cccccc;
  font-size: 13px;
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 28px;
  color: #aaaaaa;
  cursor: pointer;
}

.close-modal:hover {
  color: #ffffff;
}

/* RESPONSIVE DESIGN - MOBILE PHONES OPTIMIZATION */
@media (max-width: 768px) {
  .nav-links {
    gap: 10px;
  }
  
  .nav-links a {
    font-size: 11px;
  }

  .hero-section {
    background-position: center top;
    padding: 16px 14px;
  }
  
  .hero-section::before {
    background: rgba(5, 5, 7, 0.90);
  }

  .top-accent-line {
    display: none;
  }

  .hero-content {
    padding-top: 0;
  }

  .brand-title {
    text-align: center;
  }

  .hero-subtitle {
    text-align: center;
    margin-bottom: 18px;
  }

  .benefit-list {
    margin-bottom: 18px;
  }

  .benefit-list li {
    margin-bottom: 10px;
  }

  .bullet-icon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
  }

  .callout-banner {
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
  }

  .offer-wrapper {
    flex-direction: column-reverse;
    align-items: center;
    gap: 16px;
  }

  .arrow-container {
    display: none;
  }

  .order-box {
    width: 100%;
    max-width: 320px;
  }

  .product-box-container {
    width: 170px;
  }

  .product-img {
    max-width: 170px;
  }

  .disclaimer {
    text-align: center;
    margin-top: 14px;
    font-size: 11px;
  }

  .mobile-sticky-bar {
    display: flex;
  }
}
