/* ============================================
   knihovna-jako-darek.cz — Stylesheet
   Noeli gift landing page for grandparents
   ============================================ */

/* --- Design Tokens (same as noeli.cz brand) --- */
:root {
  --color-cream: #FFF8F0;
  --color-beige: #F5E6D3;
  --color-soft-pink: #F2C4C4;
  --color-peach: #FADCC2;
  --color-apricot: #F4B69A;
  --color-soft-green: #C8DFD0;
  --color-sage: #A8C5B2;
  --color-accent: #E8956B;
  --color-accent-hover: #D47E55;
  --color-accent-light: #fdf0e9;
  --color-text: #3D3028;
  --color-text-secondary: #6B5E52;
  --color-text-light: #8A7E74;
  --color-white: #ffffff;
  --color-border: #E5DDD5;
  --color-error: #c0392b;
  --color-success: #27ae60;

  --font-heading: 'Nunito', sans-serif;
  --font-body: 'Quicksand', sans-serif;
  --font-accent: 'Fredoka', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(61, 48, 40, 0.06);
  --shadow-md: 0 4px 16px rgba(61, 48, 40, 0.08);
  --shadow-lg: 0 8px 32px rgba(61, 48, 40, 0.12);

  --container-max: 1100px;
  --section-padding: 5rem 0;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--color-accent-hover);
}

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Typography --- */
.section__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  text-align: center;
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  line-height: 1.2;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn--outline:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-accent);
  border-color: var(--color-white);
}

.btn--white:hover {
  background: var(--color-cream);
  color: var(--color-accent-hover);
  transform: translateY(-1px);
}

.btn--white-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--white-outline:hover {
  background: var(--color-white);
  color: var(--color-accent);
}

.btn--lg {
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
  min-height: 56px;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ========== HEADER ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s;
}

.header--scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo-img {
  height: 40px;
  width: auto;
}

.header__logo-text {
  font-family: var(--font-accent);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-accent);
}

.header__contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text);
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
}

.header__phone:hover {
  color: var(--color-accent);
}

.header__phone-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ========== HERO ========== */
.hero {
  padding: 4rem 0 5rem;
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-peach) 100%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1.25;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.hero__title-accent {
  display: block;
  color: var(--color-accent);
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__img-placeholder {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  box-shadow: var(--shadow-md);
}

.hero__img-placeholder svg {
  width: 200px;
  height: auto;
}

.hero__img-label {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* ========== WHY SECTION ========== */
.why {
  padding: var(--section-padding);
  background: var(--color-white);
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.why__card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  transition: transform 0.2s, box-shadow 0.2s;
}

.why__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.why__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
}

.why__icon svg {
  width: 100%;
  height: 100%;
}

.why__card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.why__card-text {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ========== PRODUCT ========== */
.product {
  padding: var(--section-padding);
  background: var(--color-cream);
}

.product__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.product__inner .section__title {
  text-align: left;
}

.product__img-placeholder {
  background: linear-gradient(135deg, var(--color-peach), var(--color-soft-pink));
  border-radius: var(--radius-lg);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.125rem;
  box-shadow: var(--shadow-md);
}

.product__text {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.product__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.product__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.05rem;
  line-height: 1.5;
}

.product__feature-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ========== PERSONAL MESSAGE ========== */
.message {
  padding: var(--section-padding);
  background: var(--color-beige);
}

.message__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.message__inner .section__title {
  text-align: left;
}

.message__text {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.message__text--highlight {
  color: var(--color-text);
  font-weight: 500;
  font-style: italic;
  border-left: 3px solid var(--color-accent);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
}

.message__text--small {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.message__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.message__envelope {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  max-width: 340px;
  width: 100%;
  transform: rotate(-2deg);
}

.message__envelope::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 24px;
  background: var(--color-peach);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  opacity: 0.6;
}

.message__letter {
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-white) 100%);
}

.message__letter-text {
  font-family: 'Georgia', serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  font-style: italic;
}

.message__visual-label {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--color-text-light);
  text-align: center;
}

/* ========== PERSONALIZATION ========== */
.personalization {
  padding: var(--section-padding);
  background: var(--color-white);
}

.personalization__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.personalization__inner .section__title {
  text-align: left;
}

.personalization__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.personalization__wood {
  background: linear-gradient(135deg, #d4a574 0%, #c4915e 30%, #b8844f 60%, #d4a574 100%);
  border-radius: var(--radius-md);
  padding: 3rem 3.5rem;
  box-shadow: var(--shadow-lg), inset 0 2px 4px rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.personalization__wood::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 8px,
    rgba(139, 90, 43, 0.08) 8px,
    rgba(139, 90, 43, 0.08) 9px
  );
}

.personalization__name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #8b5a2b;
  text-shadow: 1px 1px 0 rgba(255,255,255,0.3), -1px -1px 0 rgba(0,0,0,0.1);
  position: relative;
  letter-spacing: 2px;
}

.personalization__label {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.personalization__text {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.personalization__note {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--color-text);
}

/* ========== GIFT VOUCHERS ========== */
.gifts {
  padding: var(--section-padding);
  background: var(--color-cream);
}

.gifts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.gifts__card {
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.gifts__card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.gifts__card--selected {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(232, 149, 107, 0.2), var(--shadow-md);
}

.gifts__card--popular {
  border-color: var(--color-accent);
}

.gifts__card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 1.25rem;
  border-radius: var(--radius-xl);
  white-space: nowrap;
}

.gifts__card-header {
  text-align: center;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.gifts__card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.gifts__card-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--color-accent);
}

.gifts__card-body {
  flex: 1;
}

.gifts__card-desc {
  text-align: center;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.gifts__card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.gifts__card-list li {
  font-size: 0.95rem;
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.5;
}

.gifts__card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background: var(--color-soft-green);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%233D3028' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.gifts__card-btn {
  width: 100%;
  margin-top: auto;
}

.gifts__note {
  text-align: center;
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  margin-top: 1.5rem;
  line-height: 1.6;
}

/* ========== ORDER FORM ========== */
.order {
  padding: var(--section-padding);
  background: var(--color-white);
}

.order__box {
  max-width: 720px;
  margin: 0 auto;
}

.order__box .section__title {
  margin-bottom: 1.5rem;
}

.order__selected {
  background: var(--color-accent-light);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
}

.order__selected-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.order__selected-label {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

.order__selected-name {
  font-size: 1.1rem;
}

.order__selected-price {
  font-size: 1.1rem;
  color: var(--color-accent);
  margin-left: auto;
}

.order__selected-change {
  background: none;
  border: none;
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.order__no-selection {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--color-cream);
  border-radius: var(--radius-md);
  color: var(--color-text-secondary);
  font-size: 1.05rem;
}

.order__fieldset {
  border: none;
  margin-bottom: 2rem;
}

.order__legend {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.order__row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.order__field {
  flex: 1;
}

.order__field--full {
  flex: 1 0 100%;
}

.order__field--small {
  flex: 0 0 140px;
}

.order__label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  color: var(--color-text);
}

.order__input,
.order__textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.875rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color 0.2s;
}

.order__input:focus,
.order__textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(232, 149, 107, 0.15);
}

.order__input::placeholder,
.order__textarea::placeholder {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.order__textarea {
  resize: vertical;
  min-height: 100px;
}

.order__hint {
  display: block;
  margin-top: 0.375rem;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* Radio buttons */
.order__radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.order__radio {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
}

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

.order__radio input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 0;
  height: 0;
  position: absolute;
  opacity: 0;
}

.order__radio-mark {
  width: 22px;
  height: 22px;
  border: 2px solid var(--color-border);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: all 0.2s;
}

.order__radio input[type="radio"]:checked ~ .order__radio-mark {
  border-color: var(--color-accent);
}

.order__radio input[type="radio"]:checked ~ .order__radio-mark::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
}

.order__radio input[type="radio"]:checked ~ .order__radio-content strong {
  color: var(--color-accent);
}

.order__radio-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.order__radio-content strong {
  font-size: 1rem;
  transition: color 0.2s;
}

.order__radio-content small {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.order__address {
  margin-top: 1rem;
  padding: 1.25rem;
  background: var(--color-cream);
  border-radius: var(--radius-md);
}

/* Submit */
.order__submit {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.order__total {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.order__total-label {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
}

.order__total-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--color-accent);
}

.order__pay-btn {
  width: 100%;
  max-width: 400px;
  font-size: 1.15rem;
  padding: 1.125rem 2rem;
}

.order__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* ========== TRUST ========== */
.trust {
  padding: var(--section-padding);
  background: var(--color-cream);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.trust__item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.trust__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.75rem;
}

.trust__icon svg {
  width: 100%;
  height: 100%;
}

.trust__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.trust__text {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* ========== FAQ ========== */
.faq {
  padding: var(--section-padding);
  background: var(--color-white);
}

.faq__list {
  max-width: 720px;
  margin: 2rem auto 0;
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  text-align: left;
  line-height: 1.4;
}

.faq__question:hover {
  color: var(--color-accent);
}

.faq__chevron {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s;
}

.faq__chevron::before,
.faq__chevron::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}

.faq__chevron::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__chevron::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}

.faq__question[aria-expanded="true"] .faq__chevron::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq__answer p {
  padding-bottom: 1.25rem;
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.faq__answer a {
  color: var(--color-accent);
  text-decoration: underline;
}

/* ========== FINAL CTA ========== */
.final-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  text-align: center;
}

.final-cta__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.final-cta__text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 3rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer__logo-img {
  height: 36px;
  width: auto;
  filter: invert(1);
}

.footer__logo {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-white);
}

.footer__tagline {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.footer__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-white);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer p {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
}

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

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* ========== STICKY PHONE BAR (mobile) ========== */
.phone-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--color-white);
  border-top: 2px solid var(--color-accent);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 1rem;
}

.phone-bar__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text);
  font-size: 0.85rem;
  line-height: 1.3;
}

.phone-bar__number {
  margin-left: auto;
  font-weight: 700;
  color: var(--color-accent);
  font-size: 0.95rem;
  white-space: nowrap;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (min-width: 768px) {
  .section__title {
    font-size: 2.25rem;
  }

  .hero__title {
    font-size: 2.75rem;
  }

  .hero__inner {
    grid-template-columns: 1fr 1fr;
  }

  .why__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product__inner {
    grid-template-columns: 1fr 1fr;
  }

  .message__inner {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .personalization__inner {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .gifts__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer__inner {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .final-cta__title {
    font-size: 2.25rem;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .hero__title {
    font-size: 3rem;
  }

  .section__title {
    font-size: 2.5rem;
  }
}

/* Mobile only */
@media (max-width: 767px) {
  body {
    font-size: 17px;
    /* Add bottom padding for sticky phone bar */
    padding-bottom: 64px;
  }

  .header__cta {
    display: none;
  }

  .header__phone-number {
    display: none;
  }

  .hero {
    padding: 2.5rem 0 3rem;
  }

  .hero__title {
    font-size: 1.75rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .order__row {
    flex-direction: column;
    gap: 0.75rem;
  }

  .order__field--small {
    flex: 1;
  }

  .gifts__card--popular {
    order: -1;
  }

  .phone-bar {
    display: block;
  }

  .final-cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .final-cta__actions .btn {
    width: 100%;
    max-width: 360px;
  }

  .personalization__inner {
    direction: ltr;
  }

  .message__inner .section__title,
  .product__inner .section__title,
  .personalization__inner .section__title {
    text-align: center;
  }
}

/* Small mobile */
@media (max-width: 380px) {
  .container {
    padding: 0 1rem;
  }

  .hero__title {
    font-size: 1.5rem;
  }

  .gifts__card {
    padding: 1.5rem 1.25rem;
  }

  .gifts__card-price {
    font-size: 1.75rem;
  }
}

/* Focus styles for accessibility */
.btn:focus-visible,
.order__input:focus-visible,
.order__textarea:focus-visible,
.faq__question:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .header,
  .phone-bar,
  .final-cta {
    display: none;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
}
