@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

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

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #334155;
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

button, input, textarea, select {
  font-family: inherit;
  outline: none;
}

/* --- THEME VARIABLE GRADIENTS --- */
:root {
  --primary-color: #880e4f;
  --accent-color: #c2185b;
  --light-accent: #ffd6e7;
  --gold-color: #ffd700;
  --gold-dark: #b8860b;
  --text-dark: #1e293b;
  --text-gray: #64748b;
  --bg-gradient: linear-gradient(135deg, #fff9f0 0%, #fff0e6 40%, #fce4ec 100%);
  --gold-gradient: linear-gradient(90deg, #c2185b, #ffd700);
  --pink-gradient: linear-gradient(90deg, #880e4f 0%, #c2185b 50%, #880e4f 100%);
  --text-gradient: linear-gradient(90deg, #880e4f, #c2185b, #e91e63, #b8860b);
}

/* --- UTILITY CLASSES --- */
.section-wrap {
  width: 100%;
  background: var(--bg-gradient);
  padding: 64px 16px;
}

.section-head {
  text-align: center;
  margin-bottom: 44px;
}

.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.divline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.divline::before,
.divline::after {
  content: '';
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0.5;
  border-radius: 2px;
}

.divline span {
  font-size: 20px;
  display: inline-block;
  animation: bounceAnim 2s ease-in-out infinite;
}

.section-head p {
  font-size: 11px;
  color: #ad6b7a;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
}

@keyframes bounceAnim {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50%      { transform: translateY(-7px) rotate(6deg); }
}

/* --- HEADER AND NAVIGATION --- */
#amh-strip {
  width: 100%;
  background: #a20a3a;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
}

#amh-strip-inner {
  display: inline-block;
  animation: amhMarquee 25s linear infinite;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #ffffff;
  text-transform: uppercase;
}

@keyframes amhMarquee {
  from { transform: translateX(100vw); }
  to   { transform: translateX(-100%); }
}

#amh {
  width: 100%;
  background: #fff5f2; /* soft warm cream flat background to match screenshot */
  border-bottom: 2px solid var(--accent-color);
  position: sticky;
  top: 0;
  z-index: 999;
}

#amh-brand-row {
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: none; /* removed internal border to avoid double borders, matching single thin line at header bottom */
  max-width: 1240px;
  margin: 0 auto;
}

#amh-logo {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 12px;
  border: 1.5px solid rgba(194, 24, 91, 0.2);
  box-shadow: 0 2px 10px rgba(136, 14, 79, 0.08);
  background: #fff;
}

#amh-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#amh-brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#amh-name {
  font-family: 'Playfair Display', serif;
  font-size: 25px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.5px;
  line-height: 1.1;
}

#amh-tagline {
  font-size: 8.5px;
  font-weight: 500;
  color: #ad6b7a;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#amh-nav-inline {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}

#amh-nav-inline a {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--primary-color) !important;
  padding: 8px 14px;
  position: relative;
  transition: color 0.25s;
}

#amh-nav-inline a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
  border-radius: 2px;
}

#amh-nav-inline a:hover {
  color: var(--accent-color) !important;
}

#amh-nav-inline a:hover::after {
  transform: scaleX(1);
}

#amh-gifts {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  margin-left: 20px;
}

#amh-gifts span {
  display: inline-block;
  animation: amhBounce 2s ease-in-out infinite;
}

#amh-gifts span:nth-child(1) { animation-delay: 0s; }
#amh-gifts span:nth-child(2) { animation-delay: 0.3s; }
#amh-gifts span:nth-child(3) { animation-delay: 0.6s; }
#amh-gifts span:nth-child(4) { animation-delay: 0.9s; }
#amh-gifts span:nth-child(5) { animation-delay: 1.2s; }

@keyframes amhBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

#amh-ham {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

#amh-ham span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent-color);
  border-radius: 2px;
  margin: 5px 0;
  transition: all 0.3s;
}

#amh-ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#amh-ham.open span:nth-child(2) { opacity: 0; }
#amh-ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#amh-mobile-nav {
  display: none;
  flex-direction: column;
  background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

#amh-mobile-nav.open {
  display: flex;
}

#amh-mobile-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--light-accent) !important;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s, padding-left 0.3s;
}

#amh-mobile-nav a:hover {
  background: rgba(255,255,255,0.1);
  padding-left: 32px;
  color: #fff !important;
}

/* --- HERO SLIDER --- */
.ywa-hero-section {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #000;
  user-select: none;
}

.ywa-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

.ywa-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.ywa-slide img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  vertical-align: bottom;
}

/* Toggle displays for responsive banners */
.ywa-pc-slider { display: block; }
.ywa-mobile-slider { display: none; }

.ywa-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.ywa-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
  outline: none;
  padding: 0;
}

.ywa-dot.active {
  background: #fff;
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.ywa-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.4);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  transition: background 0.3s, transform 0.2s;
  line-height: 1;
}

.ywa-arrow:hover {
  background: rgba(194, 24, 91, 0.85);
  transform: translateY(-50%) scale(1.05);
}

.ywa-arrow-prev { left: 16px; }
.ywa-arrow-next { right: 16px; }

/* --- PRODUCTS GRID & CARDS --- */
.acp-grid {
  max-width: 1100px;
  margin: 0 auto 20px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.acp-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(194, 24, 91, 0.13);
  box-shadow: 0 4px 18px rgba(194, 24, 91, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s;
}

.acp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(194, 24, 91, 0.13);
}

.acp-img {
  width: 100%;
  height: 190px;
  overflow: hidden;
  position: relative;
  background: #fce4ec;
  flex-shrink: 0;
}

.acp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.acp-card:hover .acp-img img {
  transform: scale(1.08);
}

.acp-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(136, 14, 79, 0.3);
}

.acp-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.acp-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.35;
}

.acp-desc {
  font-size: 11.5px;
  color: var(--text-gray);
  line-height: 1.6;
}

.acp-prices {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 4px;
}

.acp-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
}

.acp-old {
  font-size: 12px;
  color: #cbd5e1;
  text-decoration: line-through;
}

.acp-off {
  font-size: 9.5px;
  background: #fff8e1;
  color: #78350f;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 600;
  border: 1px solid #fef3c7;
}

.acp-shipping {
  font-size: 10px;
  color: #16a34a;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.acp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 0;
  margin-top: 8px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  color: #fff !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity 0.25s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(194, 24, 91, 0.2);
}

.acp-btn:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

/* --- ORDER MODAL --- */
.acp-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(136, 14, 79, 0.25);
  backdrop-filter: blur(4px);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.acp-modal-overlay.open {
  display: flex;
  opacity: 1;
}

.acp-modal {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(136, 14, 79, 0.25);
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  position: relative;
}

.acp-modal-overlay.open .acp-modal {
  transform: scale(1);
  opacity: 1;
}

.acp-modal-header {
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  padding: 18px 22px;
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
}

.acp-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
}

.acp-modal-subtitle {
  font-size: 10.5px;
  color: #ffd6e7;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

.acp-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.acp-modal-close:hover {
  background: rgba(255,255,255,0.35);
}

.acp-modal-product {
  margin: 18px 22px 0;
  background: linear-gradient(135deg, #fce4ec, #fff0e6);
  border-radius: 12px;
  border: 1px solid rgba(194, 24, 91, 0.15);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.acp-modal-product-img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(194, 24, 91, 0.2);
  flex-shrink: 0;
}

.acp-modal-product-name {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
}

.acp-modal-product-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-color);
  margin-top: 2px;
}

.acp-form {
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.acp-form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.acp-form-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.acp-form-input, .acp-form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid rgba(194, 24, 91, 0.2);
  border-radius: 10px;
  font-size: 13px;
  color: #334155;
  background: #fff9f0;
  transition: border-color 0.25s, box-shadow 0.25s, background-color 0.25s;
}

.acp-form-input:focus, .acp-form-textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(194, 24, 91, 0.1);
  background: #fff;
}

.acp-form-textarea {
  resize: none;
  height: 70px;
}

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

.acp-submit-btn {
  width: 100%;
  padding: 13px 0;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 4px;
}

.acp-submit-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.acp-form-note {
  font-size: 10.5px;
  color: #ad6b7a;
  text-align: center;
  line-height: 1.6;
}

/* --- WHY CHOOSE US --- */
.awc-wrap {
  width: 100%;
  background: var(--bg-gradient);
  padding: 56px 16px;
}

.awc-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.awc-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(194,24,91,0.12);
  box-shadow: 0 3px 16px rgba(194,24,91,0.07);
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  transition: transform 0.35s, box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}

.awc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--gold-color));
  opacity: 0;
  transition: opacity 0.35s;
}

.awc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(194,24,91,0.14);
}

.awc-card:hover::before {
  opacity: 1;
}

.awc-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fce4ec, #fff0e6);
  border: 2px solid rgba(194,24,91,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  transition: transform 0.35s;
}

.awc-card:hover .awc-icon {
  transform: scale(1.12) rotate(-5deg);
}

.awc-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.35;
}

.awc-desc {
  font-size: 12px;
  color: #7e8c9f;
  line-height: 1.7;
}

.awc-banner {
  max-width: 1100px;
  margin: 36px auto 0;
  background: var(--pink-gradient);
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 10px 24px rgba(136, 14, 79, 0.2);
}

.awc-banner-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.awc-banner-sub {
  font-size: 11px;
  color: #ffd6e7;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 3px;
}

.awc-banner-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--primary-color) !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: 8px;
  transition: background 0.25s, transform 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.awc-banner-btn:hover {
  background: #fff8e1;
  transform: scale(1.03);
}

/* --- REVIEWS SCRIPTER SLIDER --- */
.afb-wrap {
  width: 100%;
  background: var(--bg-gradient);
  padding: 48px 16px;
  overflow: hidden;
}

.afb-slider-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.afb-slider-outer::before,
.afb-slider-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.afb-slider-outer::before {
  left: 0;
  background: linear-gradient(90deg, #fff9f0, transparent);
}

.afb-slider-outer::after {
  right: 0;
  background: linear-gradient(270deg, #fce4ec, transparent);
}

.afb-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: afbScroll 35s linear infinite;
}

.afb-track:hover {
  animation-play-state: paused;
}

@keyframes afbScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.afb-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(194,24,91,0.13);
  box-shadow: 0 3px 14px rgba(194,24,91,0.07);
  padding: 22px;
  width: 290px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.afb-card:hover {
  box-shadow: 0 10px 28px rgba(194,24,91,0.15);
  transform: translateY(-4px);
}

.afb-stars {
  display: flex;
  gap: 3px;
}

.afb-stars span {
  font-size: 15px;
  color: var(--gold-color);
  filter: drop-shadow(0 1px 2px rgba(255,215,0,0.4));
}

.afb-quote {
  font-size: 13px;
  color: #556476;
  line-height: 1.65;
  position: relative;
  padding-left: 16px;
}

.afb-quote::before {
  content: '"';
  position: absolute;
  left: 0; top: -4px;
  font-size: 30px;
  font-family: 'Playfair Display', serif;
  color: #f48fb1;
  line-height: 1;
}

.afb-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  background: #fce4ec;
  color: var(--primary-color);
  border: 1px solid #f48fb1;
}

.afb-person {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(194,24,91,0.08);
  padding-top: 12px;
}

.afb-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
  color: #fff;
}

.afb-avatar.c1 { background: linear-gradient(135deg, #880e4f, #c2185b); }
.afb-avatar.c2 { background: linear-gradient(135deg, #b8860b, #e6a817); }
.afb-avatar.c3 { background: linear-gradient(135deg, #6a1b9a, #ab47bc); }
.afb-avatar.c4 { background: linear-gradient(135deg, #c2185b, #e91e63); }
.afb-avatar.c5 { background: linear-gradient(135deg, #880e4f, #ad1457); }
.afb-avatar.c6 { background: linear-gradient(135deg, #4a148c, #7b1fa2); }
.afb-avatar.c7 { background: linear-gradient(135deg, #b8860b, #c2185b); }
.afb-avatar.c8 { background: linear-gradient(135deg, #880e4f, #6a1b9a); }

.afb-pinfo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.afb-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
}

.afb-loc {
  font-size: 10.5px;
  color: #ad6b7a;
  letter-spacing: 0.5px;
}

/* --- ABOUT US --- */
.aau-wrap {
  width: 100%;
  background: var(--bg-gradient);
  padding: 56px 16px;
}

.aau-main {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.aau-brand-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(194,24,91,0.13);
  box-shadow: 0 6px 22px rgba(194,24,91,0.08);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.aau-logo-ring {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid var(--accent-color);
  box-shadow: 0 0 0 6px rgba(194,24,91,0.1);
  overflow: hidden;
  flex-shrink: 0;
}

.aau-logo-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aau-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.aau-brand-tag {
  font-size: 10.5px;
  color: #ad6b7a;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

.aau-brand-desc {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.8;
}

.aau-stats {
  display: flex;
  gap: 0;
  width: 100%;
  border-top: 1px solid rgba(194,24,91,0.1);
  padding-top: 22px;
  margin-top: 8px;
}

.aau-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border-right: 1px solid rgba(194,24,91,0.1);
}

.aau-stat:last-child {
  border-right: none;
}

.aau-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
}

.aau-stat-label {
  font-size: 9.5px;
  color: #ad6b7a;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.aau-story {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.aau-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(194,24,91,0.1);
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.aau-point:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 20px rgba(194,24,91,0.1);
}

.aau-point-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fce4ec, #fff0e6);
  border: 1px solid rgba(194,24,91,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.aau-point-title {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.aau-point-desc {
  font-size: 12px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* --- FAQ ACCORDION --- */
.afq-wrap {
  width: 100%;
  background: var(--bg-gradient);
  padding: 56px 16px;
}

.afq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.afq-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(194,24,91,0.12);
  box-shadow: 0 2px 10px rgba(194,24,91,0.05);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.afq-item:hover {
  box-shadow: 0 6px 22px rgba(194,24,91,0.12);
}

.afq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
}

.afq-q-text {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.45;
}

.afq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fce4ec, #fff0e6);
  border: 1px solid rgba(194,24,91,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-color);
  transition: transform 0.3s, background-color 0.3s, color 0.3s;
}

.afq-item.open .afq-icon {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  color: #fff;
  border-color: transparent;
}

.afq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 20px;
}

.afq-item.open .afq-a {
  max-height: 200px;
  padding: 0 20px 20px;
}

.afq-a p {
  font-size: 12.5px;
  color: var(--text-gray);
  line-height: 1.75;
  border-top: 1px solid rgba(194,24,91,0.08);
  padding-top: 14px;
}

/* --- CONTACT US --- */
.act-wrap {
  width: 100%;
  background: var(--bg-gradient);
  padding: 56px 16px 0;
}

.act-grid {
  max-width: 1100px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.act-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(194,24,91,0.12);
  box-shadow: 0 3px 16px rgba(194,24,91,0.07);
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.act-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(194,24,91,0.13);
}

.act-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fce4ec, #fff0e6);
  border: 2px solid rgba(194,24,91,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.act-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
}

.act-card-info {
  font-size: 12.5px;
  color: var(--text-gray);
  line-height: 1.75;
}

.act-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 0;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  color: #fff !important;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: opacity 0.2s, transform 0.2s;
  margin-top: auto;
}

.act-card-link:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.act-addr {
  font-size: 12.5px;
  color: var(--text-gray);
  line-height: 1.85;
}

/* --- FOOTER --- */
.act-footer {
  background: var(--pink-gradient);
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.05);
}

.act-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.act-footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.act-footer-logo span {
  font-size: 11px;
  font-weight: 300;
  color: #ffd6e7;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif;
}

.act-footer-copy {
  font-size: 11.5px;
  color: #ffd6e7;
  letter-spacing: 0.5px;
}

.act-footer-links {
  display: flex;
  gap: 18px;
}

.act-footer-links a {
  font-size: 11px;
  color: #ffd6e7 !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}

.act-footer-links a:hover {
  color: #fff !important;
}

/* --- STICKY FLOATING WHATSAPP BUTTON --- */
.sticky-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background-color: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waPulse 2s infinite;
  text-decoration: none !important;
}

.sticky-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.sticky-whatsapp svg {
  fill: #fff;
  width: 32px;
  height: 32px;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.sticky-whatsapp .tooltip {
  visibility: hidden;
  width: 140px;
  background-color: #1e293b;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 8px 12px;
  position: absolute;
  right: 75px;
  top: 10px;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  white-space: nowrap;
}

.sticky-whatsapp:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .acp-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0 8px;
  }
}

@media (max-width: 900px) {
  #amh-nav-inline {
    display: none;
  }
  #amh-ham {
    display: block;
  }
  #amh-gifts {
    margin-left: auto;
  }
  .acp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .awc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  #amh-brand-row {
    padding: 12px 20px;
    gap: 12px;
  }
  #amh-name {
    font-size: 20px;
  }
  #amh-logo {
    width: 50px;
    height: 50px;
  }
  #amh-gifts {
    font-size: 16px;
    gap: 4px;
    margin-left: auto;
  }
  .ywa-pc-slider {
    display: none !important;
  }
  .ywa-mobile-slider {
    display: block !important;
  }
  .ywa-arrow {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .ywa-arrow-prev { left: 8px; }
  .ywa-arrow-next { right: 8px; }
  .aau-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .act-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .section-head h2 {
    font-size: 26px;
  }
  .awc-banner {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }
  .act-footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .act-footer-links {
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .section-wrap {
    padding: 40px 10px;
  }
  .acp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .acp-img {
    height: 140px;
  }
  .acp-info {
    padding: 10px;
    gap: 6px;
  }
  .acp-title {
    font-size: 13.5px;
  }
  .acp-desc {
    font-size: 10px;
    line-height: 1.4;
  }
  .acp-price {
    font-size: 15px;
  }
  .acp-btn {
    font-size: 10px;
    padding: 9px 0;
    letter-spacing: 1px;
  }
  .acp-badge {
    font-size: 8px;
    padding: 3px 8px;
  }
  .awc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .awc-card {
    padding: 20px 12px;
    gap: 10px;
  }
  .awc-icon {
    width: 54px;
    height: 54px;
    font-size: 24px;
  }
  .awc-title {
    font-size: 14px;
  }
  .awc-desc {
    font-size: 11px;
  }
  .afq-q-text {
    font-size: 12.5px;
  }
  .afq-a p {
    font-size: 11.5px;
  }
  .acp-form-row {
    grid-template-columns: 1fr;
  }
  .acp-modal {
    border-radius: 16px;
  }
}

@media (max-width: 420px) {
  #amh-name {
    font-size: 17px;
  }
  #amh-tagline {
    font-size: 9px;
    letter-spacing: 2px;
  }
  #amh-gifts {
    display: none;
  }
  .sticky-whatsapp {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
  .sticky-whatsapp svg {
    width: 26px;
    height: 26px;
  }
}
