/* La Roche Plate — Styles différés (below-fold) */

/* ─── ABOUT ───────────────────────────────────────────── */
#about { max-width: 1200px; margin: 0 auto; }
.about-header { margin-bottom: 20px; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-top: 0;
}
.about-text p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 20px;
  max-width: 480px;
}
.about-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
.about-note-star {
  font-size: 1.3rem;
  color: var(--red);
}
.about-note span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
}
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pillar {
  padding: 28px;
  border: 1px solid var(--sand);
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.pillar:hover {
  border-color: var(--green);
  transform: translateY(-3px);
}
.pillar-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 14px;
}
.pillar h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.pillar p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── MENU ────────────────────────────────────────────── */
#menu {
  background: var(--white);
  padding: 100px 48px;
}
.menu-inner { max-width: 1200px; margin: 0 auto; }
.menu-header { margin-bottom: 56px; }

/* lang tabs */
.lang-tabs {
  display: flex;
  gap: 0;
  border: 1px solid var(--sand);
  width: fit-content;
  margin-top: 36px;
  border-radius: var(--radius);
  overflow: hidden;
}
.lang-tab {
  padding: 10px 28px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  border: none;
  color: var(--muted);
  transition: background 0.2s, color 0.2s;
}
.lang-tab.active {
  background: var(--dark);
  color: var(--white);
}

/* menu panels */
.menu-panel { display: none; }
.menu-panel.active { display: block; }

/* category tabs */
.cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}
.cat-tab {
  padding: 8px 20px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--sand);
  color: var(--muted);
  border-radius: 40px;
  transition: all 0.2s;
}
.cat-tab.active, .cat-tab:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* category panels */
.cat-panel { display: none; }
.cat-panel.active { display: block; }
.cat-banner {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  margin-bottom: 24px;
  object-fit: cover;
}
.cat-desc {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--sand);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  border-top: 1px solid var(--sand);
  border-left: 1px solid var(--sand);
}
.menu-item {
  background: var(--white);
  padding: 22px 24px;
  border-right: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  transition: background 0.2s;
}
.menu-item:hover { background: var(--cream); }
.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.menu-item-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}
.menu-tags {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.tag {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
}
.tag-veg { background: #E8F5E9; color: #2E7D32; }
.tag-halal { background: #FFF8E1; color: #F57F17; }
.tag-spicy { background: #FFEBEE; color: #C62828; }
.tag-local { background: #E8F0FE; color: #1A56DB; }

/* ─── BADGE PRIX CATÉGORIE ───────────────────────────────────────────────── */
.cat-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.28);
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 24px;
}
.cat-price-label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.cat-price-value {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* ─── INSTAGRAM ───────────────────────────────────────── */
#photos {
  background: var(--white);
  padding: 80px 0;
}

.photos-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 48px 0 48px;
}

.photos-sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 12px;
  margin-bottom: 48px;
}
.photos-sub a {
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
}
.photos-sub a:hover { text-decoration: underline; }
.instagram-widget { width: 100%; }

/* Grille Instagram (style Elfsight) - taille équilibrée */
.instagram-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1050px;
  margin: 0 auto;
}

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

.instagram-grid-masonry {
  columns: 3;
  column-gap: 24px;
  max-width: 1050px;
  margin: 0 auto;
}

.instagram-photo {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  break-inside: avoid;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.instagram-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.instagram-photo:hover img {
  transform: scale(1.05);
}

.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-photo:hover .instagram-overlay {
  opacity: 1;
}

.instagram-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
}

.instagram-stat svg {
  width: 20px;
  height: 20px;
  fill: white;
}

@media (max-width: 768px) {
  #photos { padding: 80px 0 60px 0; }
  .photos-inner { padding: 0 24px; }

  .instagram-grid-3,
  .instagram-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .instagram-grid-masonry {
    columns: 2;
    column-gap: 14px;
  }
}

/* ─── HORAIRES ────────────────────────────────────────── */
#contact {
  max-width: 1200px;
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  background: var(--sand);
  border: 1px solid var(--sand);
  margin-top: 64px;
}
.contact-block {
  background: var(--cream);
  padding: 48px 40px;
}
.contact-block h3 {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--sand);
  font-size: 0.9rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 400; color: var(--dark); }
.hours-time { font-family: var(--font-serif); font-size: 1rem; color: var(--muted); }
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 16px; height: 16px; stroke: var(--dark); fill: none; stroke-width: 1.5; }
.contact-info { font-size: 0.88rem; line-height: 1.6; color: var(--dark); }
.contact-info a { color: inherit; text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }

/* social links */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.social-link:hover {
  border-color: var(--dark);
  background: var(--dark);
}
.social-link:hover svg { stroke: var(--white); }
.social-link svg { width: 16px; height: 16px; stroke: var(--dark); fill: none; stroke-width: 1.5; }

/* MAP placeholder */
.map-block { background: var(--sand); min-height: 220px; position: relative; overflow: hidden; }
.map-embed {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: none;
  display: block;
  filter: saturate(0.6) sepia(0.15);
}

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 40px 24px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
footer a { color: inherit; text-decoration: none; }
footer strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}

/* ═══ AVIS CLIENTS ═══ */
#reviews { text-align: center; overflow: hidden; }
.reviews-meta { display: flex; justify-content: center; margin-bottom: 48px; }
.reviews-score { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.reviews-score-num { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 600; color: var(--dark); line-height: 1; }
.reviews-stars { color: #E8A020; font-size: 1.3rem; letter-spacing: 2px; }
.reviews-count { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.reviews-carousel-wrap { position: relative; width: 100%; overflow: hidden; }
.reviews-track { display: flex; gap: 24px; transition: transform .6s cubic-bezier(.4,0,.2,1); will-change: transform; padding: 8px 4px 24px; }
.review-card { flex: 0 0 340px; background: #fff; border: 1px solid var(--sand); border-radius: 12px; padding: 28px; text-align: left; box-shadow: 0 2px 16px rgba(0,0,0,.05); display: flex; flex-direction: column; gap: 14px; }
.review-card-stars { color: #E8A020; font-size: 1rem; letter-spacing: 2px; }
.review-card-text { font-size: .9rem; color: #444; line-height: 1.7; flex: 1; font-style: italic; }
.review-card-text::before { content: '"'; font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--green); line-height: 0; vertical-align: -0.4em; margin-right: 2px; }
.review-card-author { display: flex; align-items: center; gap: 10px; }
.review-card-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .85rem; font-weight: 600; flex-shrink: 0; }
.review-card-name { font-size: .82rem; font-weight: 600; color: var(--dark); }
.review-card-date { font-size: .72rem; color: var(--muted); }
.review-card-source { display: flex; align-items: center; gap: 4px; font-size: .68rem; color: var(--muted); letter-spacing: .06em; margin-top: auto; }
.reviews-nav { display: flex; justify-content: center; gap: 12px; margin-top: 8px; }
.reviews-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sand); border: none; cursor: pointer; padding: 0; transition: background .2s, transform .2s; }
.reviews-dot.active { background: var(--green); transform: scale(1.3); }
.reviews-cta { display: inline-block; margin-top: 36px; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--green); text-decoration: none; border-bottom: 1px solid var(--green); padding-bottom: 2px; transition: opacity .2s; }
.reviews-cta:hover { opacity: .6; }
@media (max-width: 768px) { .review-card { flex: 0 0 280px; } }

/* ═══ BANNIÈRE D'ALERTE ═══ */
.alert-banner { position: relative; z-index: 100; padding: 14px 20px; display: flex; align-items: center; justify-content: center; gap: 12px; font-family: 'Jost', sans-serif; font-size: .88rem; line-height: 1.4; box-shadow: 0 2px 8px rgba(0,0,0,.08); animation: slideDown .3s ease; }
.alert-banner-warning { background: #FEF3C7; color: #92400E; border-bottom: 1px solid #FDE68A; }
.alert-banner-info { background: #DBEAFE; color: #1E3A8A; border-bottom: 1px solid #BFDBFE; }
.alert-banner-success { background: #D1FAE5; color: #065F46; border-bottom: 1px solid #A7F3D0; }
.alert-banner-promo { background: #FEE2E2; color: #991B1B; border-bottom: 1px solid #FECACA; }
.alert-banner-icon { font-size: 1.2rem; flex-shrink: 0; }
.alert-banner-text { flex: 1; text-align: center; font-weight: 500; }
.alert-banner-close { background: none; border: none; font-size: 1.3rem; cursor: pointer; padding: 0 4px; opacity: .6; transition: opacity .2s; line-height: 1; color: inherit; }
.alert-banner-close:hover { opacity: 1; }
@keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@media (max-width: 768px) { .alert-banner { padding: 12px 16px; font-size: .82rem; } }

/* ─── NEWSLETTER POPUP — styles visuels ──────────────────── */
.newsletter-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.newsletter-container {
  position: relative;
  background: white;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.newsletter-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--muted);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.newsletter-close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--dark);
}

.newsletter-content {
  padding: 48px 32px 32px;
  text-align: center;
}

.newsletter-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.newsletter-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.newsletter-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.newsletter-input {
  padding: 14px 18px;
  border: 2px solid var(--beige);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(88, 129, 87, 0.1);
}

.newsletter-gdpr {
  display: flex;
  align-items: start;
  gap: 8px;
  text-align: left;
}

.newsletter-gdpr input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
}

.newsletter-gdpr label {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

.newsletter-btn {
  background: var(--green);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.newsletter-btn:hover {
  background: #6a9e69;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(88, 129, 87, 0.3);
}

.newsletter-btn:disabled {
  background: var(--muted);
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 768px) {
  .newsletter-content {
    padding: 40px 24px 24px;
  }

  .newsletter-title {
    font-size: 1.5rem;
  }
}

/* Dark mode newsletter */
@media (prefers-color-scheme: dark) {
  .newsletter-container {
    background: #1A202C;
  }

  .newsletter-title {
    color: #F3F4F6;
  }

  .newsletter-desc {
    color: #D1D5DB;
  }

  .newsletter-input {
    background: #2D3748;
    border-color: #4A5568;
    color: #F3F4F6;
  }

  .newsletter-input:focus {
    border-color: var(--green);
  }

  .newsletter-gdpr label {
    color: #D1D5DB;
  }

  .newsletter-close {
    color: #D1D5DB;
  }

  .newsletter-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #F3F4F6;
  }
}

/* ─── BANNER POPUP — styles visuels ──────────────────── */
.banner-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.banner-popup-container {
  position: relative;
  background: white;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  padding: 40px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: popupSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

@keyframes popupSlideUp {
  from {
    transform: translateY(30px) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.banner-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--dark);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-popup-close:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: rotate(90deg);
}

.banner-popup-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.banner-popup-icon {
  font-size: 4rem;
}

.banner-popup-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--dark);
  font-weight: 500;
}

@media (max-width: 768px) {
  .banner-popup-container {
    padding: 32px 24px;
  }

  .banner-popup-icon {
    font-size: 3rem;
  }

  .banner-popup-text {
    font-size: 1rem;
  }
}

/* Dark mode banner popup */
@media (prefers-color-scheme: dark) {
  .banner-popup-container {
    background: #1A202C;
  }

  .banner-popup-text {
    color: #F3F4F6;
  }

  .banner-popup-close {
    background: rgba(255, 255, 255, 0.1);
    color: #F3F4F6;
  }

  .banner-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
  }
}

/* ─── RESPONSIVE (below-fold sections) ───────────────────── */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .about-pillars { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .menu-grid { grid-template-columns: 1fr; }
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-section {
  background: var(--dark);
  padding: 80px 24px;
  width: 100%;
}
.faq-section .faq-inner {
  max-width: 860px;
  margin: 0 auto;
}
.faq-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 2.5rem;
  text-align: center;
}
.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 1.5rem;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.faq-answer-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ─── FOOTER LEGAL LINK ───────────────────────────────── */
.footer-legal-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  opacity: 0.6;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-legal-link:hover { opacity: 1; }

/* ─── COOKIE BANNER RGPD ─────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #fff;
  padding: 14px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  z-index: 9999;
  font-family: sans-serif;
  font-size: 13px;
  line-height: 1.5;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.5);
}
.cookie-banner-text { flex: 1; }
.cookie-banner-text a { color: #f59e0b; text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 8px; flex-shrink: 0; align-items: center; padding-top: 2px; }
.cookie-btn-deny {
  background: transparent;
  border: 1px solid #666;
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  transition: border-color 0.2s;
}
.cookie-btn-deny:hover { border-color: #aaa; }
.cookie-btn-accept {
  background: #f59e0b;
  border: none;
  color: #000;
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  transition: background 0.2s;
}
.cookie-btn-accept:hover { background: #d97706; }

/* Lien "Gérer préférences" dans le footer */
.footer-cookie-prefs {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-block;
  margin-top: 6px;
}
