/* ============================================
   MINAMI QUÀ TẶNG ĐÀ NẴNG — Landing Page CSS
   ============================================ */

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

:root {
  --pink:      #ff6b9d;
  --pink-dark: #e8457a;
  --pink-soft: #fff0f5;
  --purple:    #a855f7;
  --blue-fb:   #1877f2;
  --yellow:    #fbbf24;
  --dark:      #1e1b2e;
  --grey:      #6b7280;
  --light-bg:  #fdf2f8;
  --white:     #ffffff;
  --radius:    16px;
  --shadow:    0 4px 24px rgba(255,107,157,.15);
  --shadow-lg: 0 12px 40px rgba(255,107,157,.25);
  --font:      'Nunito', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all .25s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--sm  { padding: 8px 18px; font-size: .9rem; }
.btn--lg  { padding: 15px 32px; font-size: 1.05rem; }
.btn--primary {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
  box-shadow: 0 4px 16px rgba(255,107,157,.4);
}
.btn--primary:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,157,.5);
}
.btn--outline {
  background: transparent;
  color: var(--pink);
  border-color: var(--pink);
}
.btn--outline:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--facebook {
  background: var(--blue-fb);
  color: var(--white);
  border-color: var(--blue-fb);
}
.btn--facebook:hover {
  background: #1464d0;
  border-color: #1464d0;
  transform: translateY(-2px);
}

/* ---- HEADER ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,107,157,.15);
  padding: 12px 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.logo__photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pink);
}
.logo__text { display: flex; flex-direction: column; line-height: 1.2; }
.logo__text strong { font-size: 1.3rem; font-weight: 900; color: var(--pink); }
.logo__text small  { font-size: .75rem; color: var(--grey); font-weight: 600; }

.nav__list { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav__list a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  transition: all .2s;
}
.nav__list a:hover { background: var(--pink-soft); color: var(--pink); }

/* ---- HERO ---- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff0f5 0%, #fdf2f8 50%, #f5f3ff 100%);
  padding: 72px 0 88px;
}
.hero__bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; opacity: .1; }
.shape--1 { width: 500px; height: 500px; background: var(--pink); top: -150px; right: -150px; }
.shape--2 { width: 300px; height: 300px; background: var(--purple); bottom: -80px; left: -100px; }
.shape--3 { width: 200px; height: 200px; background: var(--yellow); top: 40%; right: 15%; }

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.badge {
  display: inline-block;
  background: var(--pink);
  color: white;
  font-size: .8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.hero__content h1 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 18px;
}
.highlight {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--grey);
  margin-bottom: 28px;
  max-width: 520px;
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }

.hero__social { margin-bottom: 28px; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-fb);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 50px;
  border: 2px solid var(--blue-fb);
  transition: all .2s;
}
.social-link:hover { background: var(--blue-fb); color: white; }

.hero__stats { display: flex; gap: 28px; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.8rem; font-weight: 900; color: var(--pink); line-height: 1; }
.stat span   { font-size: .82rem; color: var(--grey); font-weight: 600; }

/* Hero store image */
.hero__visual { display: flex; justify-content: center; align-items: center; }
.hero__store-img {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.hero__store-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.hero__store-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--dark);
  border: 1.5px solid rgba(255,107,157,.2);
}
.hero__store-badge span:first-child { color: var(--pink); }

/* ---- KEYWORD TAGS ---- */
.keywords-section { padding: 18px 0; background: white; border-bottom: 1px solid #f3e8ef; }
.keyword-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.keyword-tags span {
  background: var(--pink-soft);
  color: var(--pink-dark);
  border: 1px solid rgba(255,107,157,.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .83rem;
  font-weight: 600;
  cursor: default;
  transition: all .2s;
}
.keyword-tags span:hover { background: var(--pink); color: white; border-color: var(--pink); }

/* ---- SECTION HEADER ---- */
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 900; margin-bottom: 12px; }
.section-header p  { font-size: 1.05rem; color: var(--grey); max-width: 560px; margin: 0 auto; }
.section-header--light h2 { color: white; }
.section-header--light p  { color: rgba(255,255,255,.8); }

/* ---- PRODUCTS ---- */
.products { padding: 88px 0; background: white; }
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.product-card {
  background: white;
  border-radius: var(--radius);
  border: 1.5px solid #f3e8ef;
  overflow: hidden;
  transition: all .3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink);
}
.product-card__img {
  font-size: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  background: linear-gradient(135deg, #fff0f5, #f5f3ff);
}
.product-card__body { padding: 18px 22px 22px; }
.product-card__tag {
  display: inline-block;
  background: var(--pink);
  color: white;
  font-size: .72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.product-card__body h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.product-card__body p  { font-size: .88rem; color: var(--grey); margin-bottom: 14px; line-height: 1.55; }
.product-card__price strong { font-size: 1.15rem; font-weight: 900; color: var(--pink); }

/* ---- STORE GALLERY ---- */
.store-gallery { padding: 88px 0; background: var(--light-bg); }
.store-gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.store-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  margin: 0;
}
.store-photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.store-photo:hover img { transform: scale(1.03); }
.store-photo figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(30,27,46,.82));
  color: white;
  padding: 48px 20px 18px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.store-photo__icon { font-size: 1.8rem; flex-shrink: 0; }
.store-photo figcaption div { display: flex; flex-direction: column; gap: 3px; }
.store-photo figcaption strong { font-size: 1rem; font-weight: 800; }
.store-photo figcaption span  { font-size: .82rem; opacity: .85; }

/* ---- OCCASIONS ---- */
.occasions {
  padding: 88px 0;
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
}
.occasions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.occasion-item {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
  color: white;
  transition: all .3s;
}
.occasion-item:hover { background: rgba(255,255,255,.22); transform: translateY(-4px); }
.occasion-item__icon { font-size: 2.4rem; display: block; margin-bottom: 10px; }
.occasion-item h3 { font-size: 1rem; font-weight: 800; margin-bottom: 7px; }
.occasion-item p  { font-size: .83rem; opacity: .85; line-height: 1.5; }

/* ---- REASONS ---- */
.reasons { padding: 88px 0; background: #fdf2f8; }
.reasons__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.reason-card {
  background: white;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  border: 1.5px solid #f3e8ef;
  transition: all .3s;
}
.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--pink);
}
.reason-card__icon { font-size: 2.2rem; display: block; margin-bottom: 10px; }
.reason-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 7px; }
.reason-card p  { font-size: .88rem; color: var(--grey); line-height: 1.6; }

/* ---- REVIEWS ---- */
.reviews {
  padding: 88px 0;
  background: linear-gradient(135deg, #1e1b2e 0%, #3b1d4e 100%);
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.review-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 26px;
  color: white;
  transition: all .3s;
}
.review-card:hover { background: rgba(255,255,255,.14); transform: translateY(-4px); }
.review-card__stars { color: var(--yellow); font-size: 1.15rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-card p   { font-size: .93rem; line-height: 1.7; opacity: .9; margin-bottom: 14px; font-style: italic; }
.review-card footer { opacity: .7; font-size: .83rem; }
.review-card footer strong { color: var(--pink); font-style: normal; }

/* ---- CONTACT ---- */
.contact { padding: 88px 0; background: white; }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact__info h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 900;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact__info > p { font-size: 1.05rem; color: var(--grey); margin-bottom: 28px; }

.contact__details { font-style: normal; display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.contact-item { display: flex; gap: 12px; align-items: flex-start; }
.contact-item__icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-item div { display: flex; flex-direction: column; gap: 3px; }
.contact-item strong { font-weight: 800; color: var(--dark); font-size: .88rem; }
.contact-item span  { color: var(--grey); font-size: .9rem; line-height: 1.5; }

.contact-phone {
  color: var(--pink);
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
}
.contact-phone:hover { text-decoration: underline; }
.contact-fb {
  color: var(--blue-fb);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
}
.contact-fb:hover { text-decoration: underline; }

.contact__cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.contact__map { width: 100%; }
.contact__map iframe { box-shadow: var(--shadow-lg); width: 100%; }

/* ---- FOOTER ---- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 40px 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer__brand { display: flex; align-items: center; gap: 12px; color: white; }
.footer__logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pink);
}
.footer__brand strong { font-size: 1.05rem; font-weight: 800; color: var(--pink); }
.footer__brand small  { font-size: .72rem; color: rgba(255,255,255,.5); }
.footer__brand div { display: flex; flex-direction: column; gap: 2px; text-align: left; }

.footer__links { display: flex; flex-wrap: wrap; gap: 6px 20px; justify-content: center; }
.footer__links a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
  transition: color .2s;
}
.footer__links a:hover { color: var(--pink); }

.footer__copy { font-size: .78rem; color: rgba(255,255,255,.35); max-width: 700px; line-height: 1.7; }
.footer__copy em { color: rgba(255,107,157,.5); font-style: normal; }

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .hero__inner    { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero__visual   { order: -1; }
  .hero__store-img img { height: 280px; }
  .hero__stats    { justify-content: center; }
  .hero__actions  { justify-content: center; }
  .hero__social   { display: flex; justify-content: center; }
  .hero__desc     { margin: 0 auto 24px; }
  .store-gallery__grid { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
  .nav__list li:not(:last-child):not(:nth-last-child(2)) { display: none; }
}

@media (max-width: 640px) {
  .hero { padding: 48px 0 64px; }
  .products, .store-gallery, .occasions, .reasons, .reviews, .contact { padding: 60px 0; }
  .hero__stats { gap: 18px; }
  .products__grid, .occasions__grid, .reasons__grid, .reviews__grid { grid-template-columns: 1fr; }
  .contact__cta-buttons { flex-direction: column; }
  .contact__cta-buttons .btn { text-align: center; justify-content: center; }
  .store-photo img { height: 240px; }
}
