/* ================= RESET ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ================= BASE ================= */
body {
  font-family: "Georgia", serif;
  background: #faf7f3;
  color: #2e2e2e;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

section {
  padding: 80px 20px;
  text-align: center;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: normal;
  letter-spacing: 0.5px;
  position: relative;
}

section h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #8b5e3c;
  display: block;
  margin: 15px auto 0;
}

/* ================= HEADER ================= */
header {
  background: radial-gradient(
    circle at center,
    #f6efe8 0%,
    #f1e8de 70%
  );
  padding: 45px 20px;
  text-align: center;
}

header h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.1rem;
  color: #555;
}

.header-links {
  margin-top: 20px;
}

/* ================= TRUST BAR ================= */
.trust-bar {
  background: #ffffff;
  padding: 12px;
  text-align: center;
  font-size: 0.95rem;
  color: #555;
  border-bottom: 1px solid #e0e0e0;
}

/* ================= NAV ================= */
nav {
  background: #8b5e3c;
  padding: 12px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

nav a {
  color: #ffffff;
  margin: 0 15px;
  font-weight: bold;
}

/* ================= BOUTONS ================= */
button,
.vinted-btn {
  background: #8b5e3c;
  color: #ffffff;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.25s ease, transform 0.2s ease;
}

button:hover,
.vinted-btn:hover {
  background: #734a2e;
  transform: translateY(-2px);
}

.vinted-btn {
  background: #09b1ba;
  display: inline-block;
  margin-top: 10px;
}

/* ================= BOUTIQUE ================= */
#shop {
  max-width: 1100px;
  margin: 0 auto;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.product {
  background: #ffffff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.product img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.product h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.price {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.product-badge {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 12px;
}

.reassurance {
  font-size: 0.8rem;
  color: #888;
  margin-top: 10px;
}

/* ================= SEO TEXT ================= */
.seo-text {
  max-width: 750px;
  margin: 40px auto 0;
  font-size: 0.95rem;
  color: #555;
}

/* ================= INSTAGRAM ================= */
#instagram {
  max-width: 1100px;
  margin: 0 auto;
}

.instagram-feed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;

  justify-items: center; /* 👈 centrage horizontal */
  align-items: center;      /* 👈 alignement bas (desktop) */
}

.instagram-feed blockquote.instagram-media {
  max-width: 320px !important;
  min-width: 280px !important;
  margin: 0 !important;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ================= GOOGLE PHOTOS ================= */
#google-photos {
  background: #f1e8de;
  max-width: 1100px;
  margin: 0 auto;
}

.google-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 1rem;
}

.google-rating .stars {
  color: #f4b400;
  font-size: 1.1rem;
}

.google-rating .rating-text {
  font-weight: bold;
}

.google-rating a {
  color: #555;
  font-size: 0.95rem;
}

.google-rating a:hover {
  text-decoration: underline;
}

.google-desc {
  max-width: 700px;
  margin: 0 auto 30px;
  color: #555;
}

/* ================= CONTACT ================= */
#contact {
  max-width: 900px;
  margin: 0 auto;
}

#contact p {
  margin-bottom: 10px;
}

/* ================= PANIER ================= */
.cart {
  position: fixed;
  top: 0;
  right: -360px;
  width: 320px;
  height: 100%;
  background: #ffffff;
  padding: 20px;
  box-shadow: -5px 0 15px rgba(0,0,0,0.15);
  transition: right 0.3s ease;
  overflow-y: auto;
  z-index: 100;
}

.cart.open {
  right: 0;
}

.cart h3 {
  margin-bottom: 20px;
}

.cart ul {
  list-style: none;
  margin-bottom: 20px;
}

/* ================= FOOTER ================= */
footer {
  background: #f1e8de;
  padding: 30px;
  text-align: center;
  font-size: 0.9rem;
  color: #555;
}

footer a {
  color: #555;
}

footer a:hover {
  text-decoration: underline;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 600px) {
  header h1 {
    font-size: 2.2rem;
  }

  section {
    padding: 60px 15px;
  }

  .products {
    gap: 25px;
  }

  .instagram-feed {
    grid-template-columns: 1fr;
  }
}

/* ===== LOGO PREMIUM ===== */
.site-logo {
  display: block;
  max-width: 220px;
  margin: 0 auto 22px;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter:
    drop-shadow(0 8px 18px rgba(0,0,0,0.25))
    drop-shadow(0 0 25px rgba(255,255,255,0.35));
}

.site-logo:hover {
  transform: scale(1.04);
  filter:
    drop-shadow(0 12px 25px rgba(0,0,0,0.35))
    drop-shadow(0 0 35px rgba(255,255,255,0.45));
}
/* ================= LIENS SOCIAUX HEADER ================= */
.social-links {
  margin-top: 15px;
}

.social-link {
  margin: 0 8px;
  font-weight: bold;
  font-size: 0.95rem;
  color: #555;
}

.social-link:hover {
  text-decoration: underline;
}

/* ================= FOOTER LIENS ================= */
.footer-links {
  margin-top: 10px;
}

.footer-links a {
  margin: 0 5px;
  font-size: 0.9rem;
}

/* ===== SUIVEZ-NOUS PREMIUM ===== */
.social-premium {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.follow-label {
  font-size: 0.9rem;
  color: #777;
  letter-spacing: 0.5px;
  margin-right: 6px;
}

/* Icônes SVG */
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: #555;
  transition: fill 0.35s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  border-color: #8b5e3c;
}

.social-icon:hover svg {
  fill: #8b5e3c;
}


/* ===== INSTAGRAM : CENTRAGE MOBILE FINAL ===== */
@media (max-width: 768px) {

  /* conteneur */
  .instagram-feed {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* bloc Instagram */
  .instagram-feed > blockquote.instagram-media {
    max-width: 92vw !important;   /* 👈 clé */
    width: 92vw !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

}


/* ===== PANIER : SUPPRESSION ===== */
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.remove-item {
  background: none;
  border: none;
  font-size: 1rem;
  color: #999;
  cursor: pointer;
}

.remove-item:hover {
  color: #8b5e3c;
}

/* ===== PAYPAL BUTTON ===== */
.paypal-btn {
  display: block;
  margin: 20px 0;
  padding: 12px;
  background: #ffc439;
  color: #111;
  text-align: center;
  font-weight: bold;
  border-radius: 6px;
}

.paypal-btn:hover {
  background: #f7b800;
}

/* ===== PANIER OVERLAY ===== */
.cart {
  position: fixed;
  top: 0;
  right: -100%;
  width: 90%;
  max-width: 360px;
  height: 100vh;

  background: #fff;
  padding: 20px;

  box-shadow: -5px 0 20px rgba(0,0,0,0.2);
  z-index: 9999;

  transition: right 0.3s ease;
  overflow-y: auto;
}

/* Panier ouvert */
.cart.open {
  right: 0;
}



