/* Header */
.site-header {
  position: relative;
  background: rgba(255, 253, 249, .97);
  z-index: 20
}

.header-inner {
  height: 84px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center
}

.menu-button {
  width: 40px;
  height: 40px;
  padding: 9px;
  border: 0;
  background: none;
  cursor: pointer
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink)
}

.header-spacer {
  width: 40px
}

.mobile-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 84px;
  padding: 12px 24px 20px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow)
}

.mobile-nav.is-open {
  display: grid
}

.mobile-nav a {
  padding: 10px 0;
  border-bottom: 1px solid #eee
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden
}

.hero>img {
  width: 100%;
  object-fit: cover
}

.hero-overlay {
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 250, 242, .65), transparent 58%)
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(36px, 6vw, 58px);
  font-weight: 500;
  line-height: 1.05
}

.hero h1 em {
  font-weight: 400
}

.hero h1 span {
  color: #a96828
}

.hero p {
  margin-top: 15px;
  font-size: clamp(16px, 2.2vw, 21px)
}

.hero-arrow {
  position: absolute;
  bottom: 5px;
  left: 50%;
  font-size: 34px;
  color: white;
  transform: translateX(-50%)
}

/* Features */
.features {
  border-bottom: 1px solid var(--line);
  background: #fffdfa
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 18px 0
}

.feature-item {
  text-align: center;
  padding: 0 8px
}

.feature-item+.feature-item {
  border-left: 1px solid #d9c5aa
}

.feature-icon {
  height: 42px;
  display: grid;
  place-items: center
}

.feature-icon img {
  width: 34px;
  height: 34px;
  display: block
}

.feature-item p {
  font-size: 14px
}

/* Products */
.products-section {
  background: #fff
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
  box-shadow: 0 2px 9px rgba(70, 45, 20, .06)
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.22/1;
  object-fit: cover
}

.product-body {
  text-align: center;
  padding: 10px 7px 12px
}

.product-body h3 {
  font-size: 15px
}

.product-body a {
  display: inline-block;
  margin-top: 5px;
  color: var(--gold-dark);
  font-size: 14px
}

/* Promotion */
.promotion-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fffaf2;
  box-shadow: var(--shadow)
}

.promotion-image {
  position: relative
}

.promotion-image img {
  width: 100%;
  height: 190px;
  object-fit: cover
}

.gift-badge {
  position: absolute;
  left: 16px;
  top: 14px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #bd8339;
  color: white;
  font-size: 36px
}

.promotion-content {
  padding: 22px
}

.promotion-content h2 {
  font: 500 27px Georgia, serif;
  margin-bottom: 14px
}

.promotion-content h2 span {
  color: var(--gold)
}

.promotion-content p {
  margin: 4px 0
}

/* Collections */
.collections-section {
  background: #fff
}

.collection-list {
  display: grid;
  gap: 10px
}

.collection-card {
  position: relative;
  min-height: 104px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f5ede2;
  display: grid;
  grid-template-columns: 52% 48%;
  box-shadow: 0 3px 12px rgba(67, 45, 22, .05)
}

.collection-copy {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 15px
}

.collection-symbol {
  color: #aa783e;
  font-size: 28px
}

.collection-copy h3 {
  font-size: 21px
}

.collection-copy p {
  font-size: 13px;
  line-height: 1.25
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.collection-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
  color: var(--gold-dark);
  font-size: 24px;
  box-shadow: var(--shadow)
}

/* About */
.about-section {
  background: #faf7f1
}

.about-card {
  display: grid;
  gap: 23px
}

.about-card>img {
  width: 100%;
  border-radius: 14px;
  box-shadow: var(--shadow)
}

.about-copy h2 {
  font: 500 29px Georgia, serif;
  margin-bottom: 12px
}

.about-copy p {
  color: var(--muted);
  max-width: 520px
}

.about-copy a {
  display: inline-block;
  margin-top: 15px;
  color: var(--gold-dark);
  font-weight: 700
}

/* Footer */
.site-footer {
  padding: 28px 0 20px;
  border-top: 1px solid var(--line);
  background: #fffdfa
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
  text-align: center
}

.footer-brand {
  grid-column: 1/-1
}

.footer-brand strong {
  font-size: 23px
}

.footer-brand span {
  font-size: 20px
}

.qr-placeholder {
  width: 76px;
  height: 76px;
  margin: auto;
  padding: 11px;
  border: 5px dotted var(--ink);
  display: grid;
  place-items: center;
  font-weight: bold;
  line-height: 1
}

.copyright {
  text-align: center;
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px
}

.footer-social{
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 18px 0;
}

.footer-social a{
    display: flex;
    align-items: center;
    gap: 8px;
    color: #222;
    text-decoration: none;
    font-size: 16px;
    transition: .2s;
}

.footer-social a i{
    width: 20px;
    text-align: center;
    font-size: 18px;
}

.footer-social a:hover{
    color: #c58b35;   /* màu nhận diện của ÉNN */
}

/* Floating Zalo */
.zalo-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 15;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #bd8339;
  color: white;
  box-shadow: 0 8px 26px rgba(92, 58, 25, .25)
}

.zalo-float strong {
  background: white;
  color: #b06c20;
  padding: 3px 7px;
  border-radius: 8px
}

.zalo-float span {
  margin-top: 4px;
  font-size: 12px
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50
}

.modal.is-open {
  display: block
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 18, 10, .55)
}

.modal-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(calc(100% - 32px), 480px);
  transform: translate(-50%, -50%);
  padding: 34px;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .25)
}

.modal-panel h2 {
  font: 500 32px Georgia, serif;
  margin-bottom: 15px
}

.modal-panel p {
  margin: 8px 0
}

.modal-panel .solid-button {
  margin-top: 18px
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 9px;
  border: 0;
  background: none;
  font-size: 30px;
  cursor: pointer
}

@media (min-width:760px) {

  .hero,
  .hero>img {
    min-height: 420px;
    height: 420px
  }

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

  .promotion-card {
    display: grid;
    grid-template-columns: 1fr 1.12fr
  }

  .promotion-image img {
    height: 100%;
    min-height: 250px
  }

  .promotion-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px 40px
  }

  .about-card {
    grid-template-columns: 1fr 1.12fr;
    align-items: center
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(5, 1fr)
  }

  .footer-brand {
    grid-column: auto
  }
  .footer-social{
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 18px 0;
}

.footer-social a{
    display: flex;
    align-items: center;
    gap: 8px;
    color: #222;
    text-decoration: none;
    font-size: 16px;
    transition: .2s;
}

.footer-social a i{
    width: 20px;
    text-align: center;
    font-size: 18px;
}

.footer-social a:hover{
    color: #c58b35;   /* màu nhận diện của ÉNN */
}

}

@media (min-width:1000px) {
  .section {
    padding: 40px 0
  }

  .feature-item p {
    font-size: 16px
  }

  .collection-card {
    grid-template-columns: 43% 57%;
    min-height: 94px
  }
}

.title-ornament {
  width: 56px;
  height: 20px;
  object-fit: contain;
  flex: 0 0 auto
}

.title-ornament--right {
  transform: scaleX(-1)
}

.section-title>span {
  color: var(--ink);
  font-size: 1em
}

.gift-badge img {
  width: 42px;
  height: 42px
}

.promotion-content h2 {
  display: flex;
  align-items: center;
  gap: 10px
}

.inline-icon {
  width: 26px;
  height: 26px;
  padding: 4px;
  border-radius: 5px;
  background: var(--gold)
}

.collection-symbol {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto
}

.collection-symbol img {
  width: 34px;
  height: 34px
}

@media(max-width:520px) {
  .title-ornament {
    width: 36px;
    height: 16px
  }

  .section-title {
    gap: 8px
  }
}/* ===== Header & Hero refinement V1.2 ===== */
.site-header {
  background: rgba(255, 253, 249, .98);
}

.header-inner {
  height: 64px;
  grid-template-columns: 40px 1fr 40px;
}

.menu-button {
  width: 36px;
  height: 36px;
  padding: 7px;
}

.menu-button span {
  width: 22px;
  height: 1.5px;
  margin: 4.5px 0;
}

.site-header .brand strong {
  font-size: 24px;
  line-height: 1;
}

.site-header .brand span {
  margin-top: 1px;
  font-size: 18px;
  line-height: 1;
}

.mobile-nav { top: 64px; }

.hero {
  position: relative;
  aspect-ratio: 2.72 / 1;
  min-height: 145px;
  overflow: hidden;
  background: #eadbc7;
}

.hero > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 252, 247, .76) 0%,
    rgba(255, 252, 247, .58) 25%,
    rgba(255, 252, 247, .12) 49%,
    rgba(255, 252, 247, 0) 66%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: 48%;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(25px, 7vw, 34px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.02em;
  color: var(--ink);
  text-shadow: 0 1px 1px rgba(255,255,255,.45);
}

.hero h1 em {
  display: inline-block;
  margin-top: 5px;
  padding-left: 19%;
  font-weight: 400;
  font-style: italic;
}

.hero h1 span {
  color: #ad6d24;
  font-style: normal;
}

.hero p {
  margin-top: 10px;
  font-size: clamp(10px, 2.65vw, 13px);
  line-height: 1.35;
  color: #3f3027;
}

.hero-arrow {
  position: absolute;
  left: 50%;
  bottom: 1px;
  z-index: 3;
  transform: translateX(-50%);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  text-shadow: 0 1px 4px rgba(0,0,0,.25);
}

@media (min-width: 560px) {
  .header-inner { height: 72px; }
  .mobile-nav { top: 72px; }
  .site-header .brand strong { font-size: 29px; }
  .site-header .brand span { font-size: 22px; }
  .hero-content { padding-right: 52%; }
  .hero h1 { font-size: clamp(34px, 5vw, 50px); }
  .hero p { margin-top: 13px; font-size: clamp(13px, 1.8vw, 17px); }
}

@media (min-width: 760px) {
  .hero,
  .hero > img {
    min-height: 0;
    height: auto;
  }
  .hero { aspect-ratio: 2.75 / 1; }
  .hero > img { height: 100%; }
  .hero-content { padding-right: 30%; }
  .hero h1 { font-size: clamp(42px, 5.3vw, 66px); }
  .hero p { font-size: clamp(15px, 1.55vw, 21px); }
  .hero-arrow { bottom: 5px; font-size: 36px; }
}
