/*
Theme Name: Blocksy Child - Sandy Hair Crown
Theme URI: https://sandyhaircrown.com/
Description: Thème enfant de Blocksy pour Sandy Hair Crown - intègre palette et styles de base.
Author: Ruddy / Dev
Template: blocksy
Version: 1.0.0
*/

@import url("../blocksy/style.css");

/* Custom global styles for Sandy Hair Crown */
:root{
  --primary-color: #DAACAF;
  --gold-1: #BC860A;
  --gold-2: #F7C045;
  --light-bg: #FFEFFD;
  --page-bg: #000000;
}

body {
  background-color: var(--page-bg) !important;
  color: #ffffff;
  font-family: 'Lora', serif;
}

/* Headings use Playfair Display (loaded via functions.php) */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-color);
}

/* Buttons */
.button, .btn, button, .wp-block-button__link {
  background: var(--primary-color);
  color: #000;
  border-radius: 8px;
  padding: 14px 24px;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
}

.button.alt, .btn.alt {
  background: var(--gold-2);
  color: #000;
}

/* Product price highlight */
.price {
  color: var(--gold-1);
  font-weight: 700;
  font-size: 1.35rem;
}

/* Product option labels */
.product-options label {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
}

/* Cards and placeholders */
.card, .product-card {
  background: #0b0b0b;
  border: 1px solid rgba(255,255,255,0.05);
  padding: 16px;
  border-radius: 8px;
}

/* Footer */
.site-footer {
  background: #070707;
  color: rgba(255,255,255,0.85);
  padding: 40px 20px;
}

/* Small screens - stack columns */
@media (max-width: 800px) {
  .two-columns { display:block; }
}
/* 🌟 Sandy Hair Crown – Meilleures ventes effet hover *//* ✨ Sandy Hair Crown – Section Meilleures ventes animée *//* 🌸 Sandy Hair Crown – Style amélioré pour UAE Woo Products */
.best-products .uael-woo-products-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.best-products .uael-product {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background-color: #111;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.best-products .uael-product:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(218,172,175,0.3);
}

/* 🖼️ Image */
.best-products .uael-product img {
  width: 100%;
  display: block;
  border-radius: 20px;
  transition: all 0.5s ease;
}
.best-products .uael-product:hover img {
  transform: scale(1.1);
  opacity: 0.5;
}

/* 💫 Overlay (contenu caché par défaut) */
.best-products .uael-product .uael-woo-product-details {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  padding: 20px;
}

.best-products .uael-product:hover .uael-woo-product-details {
  opacity: 1;
  transform: translateY(0);
}

/* ✍️ Titre */
.best-products .uael-product .woocommerce-loop-product__title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: #FFEFFD;
  margin-bottom: 10px;
}

/* 💰 Prix */
.best-products .uael-product .price {
  font-family: 'Lora', serif;
  font-size: 16px;
  color: #F7C045;
  margin-bottom: 15px;
}

/* 🛒 Bouton */
.best-products .uael-product .button {
  background: linear-gradient(90deg, #DAACAF, #BC860A);
  color: #000;
  font-weight: 600;
  border-radius: 40px;
  padding: 10px 20px;
  text-transform: uppercase;
  border: none;
  transition: all 0.3s ease;
}
.best-products .uael-product .button:hover {
  background: linear-gradient(90deg, #BC860A, #F7C045);
  color: #fff;
  transform: scale(1.05);
}
/* 🌸 Sandy Hair Crown – Section produits Vietnamienne Virgin Hair centrée *//* ✨ Sandy Hair Crown – Style épuré pour produits Vietnamienne Virgin Hair */
.vietnamienne-section {
  text-align: center;
  padding: 60px 0;
  background-color: #000;
}

/* 🛍️ Grille produits */
.vietnamienne-section ul.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 25px;
  padding: 0;
  margin: 0 auto;
}

/* 💎 Carte produit – fond transparent */
.vietnamienne-section ul.products li.product {
  list-style: none;
  background: transparent;
  border: none;
  text-align: center;
  width: 300px;
  transition: all 0.3s ease;
}

/* 🖼️ Image produit – occupe toute la carte */
.vietnamienne-section ul.products li.product img {
  width: 100%;
  height: 380px; /* hauteur uniforme */
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Effet zoom léger au survol */
.vietnamienne-section ul.products li.product:hover img {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(218,172,175,0.25);
}

/* ✍️ Titre produit */
.vietnamienne-section ul.products li.product h2,
.vietnamienne-section ul.products li.product h3 {
  color: #FFEFFD;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  margin: 12px 0 5px 0;
}

/* 💰 Prix */
.vietnamienne-section ul.products li.product .price {
  color: #F7C045;
  font-family: 'Lora', serif;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

/* 🛒 Bouton "Personnaliser" ou "Ajouter" */
.vietnamienne-section ul.products li.product a.button {
  display: inline-block;
  text-align: center;
  background: linear-gradient(90deg, #DAACAF, #BC860A);
  color: #000 !important;
  border-radius: 40px;
  padding: 10px 24px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(188, 134, 10, 0.2);
  margin-top: 8px;
}

.vietnamienne-section ul.products li.product a.button:hover {
  background: linear-gradient(90deg, #BC860A, #F7C045);
  color: #fff !important;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(247, 192, 69, 0.4);
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .vietnamienne-section ul.products {
    gap: 20px;
  }
  .vietnamienne-section ul.products li.product {
    width: 100%;
    max-width: 330px;
  }
  .vietnamienne-section ul.products li.product img {
    height: 320px;
  }
}
.form-personnalisation {
  background: #000;
  border-radius: 20px;
  padding: 40px;
  color: #FFEFFD;
  box-shadow: 0 0 25px rgba(218,172,175,0.2);
  max-width: 700px;
  margin: 40px auto;
}
.form-personnalisation label { color: #F7C045; font-weight: 500; }
.form-personnalisation select {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid #DAACAF;
  background: #383635;
  color: #FFEFFD;
}
.form-personnalisation button {
  display: block;
  background: linear-gradient(90deg, #DAACAF, #BC860A);
  color: #000;
  border: none;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 20px auto 0;
  cursor: pointer;
  transition: all 0.3s;
}
.form-personnalisation button:hover {
  background: linear-gradient(90deg, #BC860A, #F7C045);
  transform: scale(1.05);
  color: #fff;
}
.prix-dynamique { text-align: center; margin-top: 20px; }
.prix-dynamique h3 { color: #F7C045; font-size: 24px; }
/* ============================================================
   🎀 Sandy Hair Crown – Section Personnalisation (avec aperçu)
   ============================================================ */

.aperçu-produit {
  text-align: center;
  margin-bottom: 30px;
}

.aperçu-produit .img-produit {
  max-width: 320px;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(247,192,69,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.aperçu-produit .img-produit:hover {
  transform: scale(1.03);
  box-shadow: 0 0 35px rgba(247,192,69,0.4);
}

/* 🖼️ Mini galerie sous l'image principale */
.galerie-produit {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}
.thumb-img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0.8;
  transition: 0.3s ease;
  object-fit: cover;
  border: 2px solid transparent;
}
.thumb-img:hover {
  opacity: 1;
  transform: scale(1.05);
  border: 2px solid var(--gold-2);
}

.titre-produit {
  font-family: 'Playfair Display', serif;
  font-size: 1.8em;
  color: var(--light-bg);
  margin-top: 15px;
  letter-spacing: 0.5px;
}

.prix-produit {
  color: var(--gold-2);
  font-weight: 600;
  font-size: 1.1em;
  margin-top: 5px;
}

/* 🧩 Formulaire harmonisé */
.formulaire-choix {
  margin-top: 30px;
  text-align: left;
}

.formulaire-choix label {
  color: var(--gold-2);
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}

.formulaire-choix select {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid var(--primary-color);
  background: #383635;
  color: var(--light-bg);
}

.formulaire-choix select:focus {
  outline: none;
  border-color: var(--gold-2);
  box-shadow: 0 0 10px rgba(247,192,69,0.3);
}

/* 💰 Zone prix total */
.prix-dynamique {
  text-align: center;
  margin: 20px 0;
}
.prix-dynamique h3 {
  color: var(--gold-2);
  font-size: 1.6em;
  font-weight: 700;
}

/* 🛍️ Bouton validation */
#btn-valider {
  display: block;
  margin: 20px auto 0;
  background: linear-gradient(90deg, var(--primary-color), var(--gold-1));
  color: #000;
  border: none;
  border-radius: 40px;
  padding: 14px 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(218,172,175,0.2);
}
#btn-valider:hover {
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(247,192,69,0.4);
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .aperçu-produit .img-produit {
    max-width: 260px;
  }
  .thumb-img {
    width: 60px;
    height: 60px;
  }
  .form-personnalisation {
    padding: 25px;
  }
}
.thumb-img.active {
  border: 2px solid var(--gold-2);
  opacity: 1;
  transform: scale(1.05);
}
/* =============================== */
/* 🌟 Styles page Panier WooCommerce */
/* =============================== */
/* Texte du panier */
.woocommerce-cart,
.woocommerce-cart table.cart,
.woocommerce-cart table.cart th,
.woocommerce-cart table.cart td,
.woocommerce-cart .cart-collaterals,
.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-info {
    color: #FCFEF9 !important;
}

/* Boutons panier et passer à la caisse */
.woocommerce-cart .button,
.woocommerce-cart .checkout-button,
.woocommerce-cart .actions .button {
    background-color: #B77923 !important;
    color: #fff !important;
    border: none;
    border-radius: 5px;
    padding: 12px 20px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.woocommerce-cart .button:hover,
.woocommerce-cart .checkout-button:hover {
    background-color: #9a6120 !important;
	border:none;
}

/* Input quantité */
.woocommerce-cart .quantity input.qty {
    border: 1px solid #B77923 !important;
    border-radius: 5px;
    color: #FCFEF9 !important;
    background: rgba(255,255,255,0.05) !important;
    padding: 6px;
}

/* Supprimer produit */
.woocommerce-cart .product-remove a {
    color: #B77923 !important;
    font-weight: bold;
}

.woocommerce-cart .product-remove a:hover {
    color: #FCFEF9 !important;
}
/* Titre de la page panier */
.woocommerce-cart h1.page-title {
    color: #FCFEF9 !important;
    font-size: 28px;       /* tu peux ajuster la taille */
    font-weight: bold;
    margin-bottom: 20px;
}

/* Total du panier */
.woocommerce-cart .cart_totals h2 {
    color: #FCFEF9 !important;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Valeurs du total (montant) */
.woocommerce-cart .cart_totals .order-total td,
.woocommerce-cart .cart_totals .order-total th {
    color: #FCFEF9 !important;
    font-weight: bold;
    font-size: 18px;
}
/* ================================ */
/* PAGE CONTACT PREMIUM */
/* ================================ */
.contact-page {
    background-color: #1a1a1a;
    color: #FCFEF9;
    padding: 60px 20px;
    font-family: 'Lora', serif;
}

.contact-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 10px;
    color: #FCFEF9;
}

.contact-intro {
    text-align: center;
    font-size: 16px;
    margin-bottom: 50px;
    color: #FCFEF9;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.contact-form, .contact-info {
    flex: 1 1 400px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #B77923;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    color: #FCFEF9;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #FCFEF9;
    background: rgba(255,255,255,0.1);
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #ccc;
}

.contact-btn {
    background-color: #B77923;
    color: #fff;
    border: none;
    padding: 14px 25px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(183,121,35,0.3);
}

.contact-btn:hover {
    background-color: #9a6120;
    box-shadow: 0 6px 20px rgba(154,97,32,0.4);
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-info .info-item i {
    font-size: 24px;
    margin-right: 15px;
    color: #B77923;
}

.contact-info .info-item h3 {
    margin-bottom: 5px;
    color: #B77923;
}

.map-container {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
/* --- Checkout page - Styles personnalisés Blocksy --- */

/* Titre de la page */
.page-title {
    color: #FCFEF9; /* couleur visible pour le titre */
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Détails client */
.ct-customer-details {
    background: rgba(0,0,0,0.25);
    border: none /* bordure renforcée */
    border-radius: 8px;
    padding: 20px;
    color: #FCFEF9;
}

.woocommerce-additional-fields {
	color: #FCFEF9;
}
.shop_table .woocommerce-checkout-review-order-table .product-name{
	color: #FCFEF9;
}
/* Champs supplémentaires */
.woocommerce-additional-fields input,
.woocommerce-additional-fields textarea,
.woocommerce-additional-fields select {
    background: rgba(0,0,0,0.25);
    border: 1px solid #F7C045;
    color: #FCFEF9;
    border-radius: 6px;
    padding: 10px;
}

/* Bloc résumé de commande */
.ct-order-review {
    background: rgba(0,0,0,0.2);
    border: 1px solid #F7C045;
    border-radius: 8px;
    padding: 20px;
    color: #FCFEF9;
}

/* Titre du résumé de commande */
.ct-order-review #order_review_heading {
    color: #F7C045;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
}

/* Boutons */
.button.alt {
    background: #B77923 !important; /* couleur bouton */
    color: #fff !important;
    border-radius: 8px;
    padding: 14px 20px;
    font-weight: 700;
    border: none !important;
    cursor: pointer;
    transition: 0.3s;
}

.button.alt:hover {
    background: #9a6120 !important;
    color: #fff !important;
}
/* Section principale */
.about-sandy {
  position: relative;
  background: url('https://images.unsplash.com/photo-1620403723023-37984ff85f12?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 0;
}

.about-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 40px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 40px rgba(183, 121, 35, 0.3);
}

/* Titres et sous-titres */
.about-title {
  font-size: 2.8rem;
  color: #FCFEF9;
  font-weight: 700;
  margin-bottom: 10px;
}
.about-soustitre{
	color: #FCFEF9;
}
.about-subtitle {
  font-size: 1.3rem;
  color: #fff;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* Textes */
.about-text {
  color: #f3f3f3;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

/* Séparateurs */
.about-divider {
  width: 80px;
  height: 3px;
  background: #FFD88C;
  border-radius: 3px;
  margin: 30px auto;
}

/* Listes */
.about-list, .about-benefits {
  text-align: left;
  margin: 20px 0;
  padding-left: 20px;
  color: #eee;
}

.about-list li, .about-benefits li {
  margin-bottom: 10px;
  line-height: 1.7;
}

/* Citation */
.about-quote {
  font-style: italic;
  font-size: 1.1rem;
  margin-top: 25px;
  color: #FFD88C;
}

/* Offre spéciale */
.about-offer {
  background: rgba(255, 216, 140, 0.1);
  border: 1px solid #FFD88C;
  border-radius: 14px;
  padding: 25px;
  margin: 35px 0;
}

.highlight-code {
  background: #FFD88C;
  color: #000;
  padding: 5px 10px;
  border-radius: 8px;
  font-weight: bold;
}

.about-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
  font-weight: 500;
}

/* Réseaux sociaux */
.about-contacts a {
  display: block;
  color: #FFD88C;
  text-decoration: none;
  margin: 8px 0;
  transition: color 0.3s;
  font-weight: 500;
}

.about-contacts a:hover {
  color: #fff;
}

/* Pied de page */
.about-footer {
  margin-top: 40px;
  color: #FFD88C;
  font-weight: bold;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-title {
    font-size: 2.1rem;
  }
  .about-subtitle {
    font-size: 1.1rem;
  }
  .about-content {
    padding: 25px 20px;
  }
}
/* ======================================
   🎀 PAGE PERRUQUE DE LUXE (ID 3883)
   ====================================== */
.page-id-3883 {
  background: radial-gradient(circle at center, #111 0%, #000 100%);
  color: #FCFEF9;
  padding-bottom: 50px;
	clear:both;
}

/* ----- En-tête de présentation ----- */
.page-id-3883 .luxury-header {
  background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.6)),
              url('https://sandyhaircrown.com/wp-content/uploads/2025/11/perruque-luxe-bg.jpg') center/cover no-repeat;
  border-radius: 16px;
  padding: 80px 30px;
  text-align: center;
  margin-bottom: 60px;
  box-shadow: 0 10px 25px rgba(247, 192, 69, 0.3);
}

.page-id-3883 .luxury-header h1 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: #F7C045;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.page-id-3883 .luxury-header p {
  font-size: 18px;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.7;
  color: #FCFEF9;
}

/* ----- Grille des produits WooCommerce ----- */
.page-id-3883 .woocommerce ul.products li.product {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(247, 192, 69, 0.15);
  border-radius: 16px;
  padding: 0;
  padding-bottom:30px;
  text-align:center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(247,192,69,0.1);
  overflow: hidden;
  clear:both;
}

.page-id-3883 .woocommerce ul.products li.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(247,192,69,0.35);
}

/* ----- Image produit pleine largeur ----- */
.page-id-3883 .woocommerce ul.products li.product img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
  transition: transform 0.3s ease;
}

.page-id-3883 .woocommerce ul.products li.product:hover img {
  transform: scale(1.05);
}

/* ----- Titre et prix ----- */
.page-id-3883 .woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: #FCFEF9 !important;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin: 15px 0 5px;
  padding: 0 10px;
}

.page-id-3883 .woocommerce ul.products li.product .price {
  color: #F7C045 !important;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

/* ----- Bouton “Ajouter au panier” centré ----- */
.page-id-3883 .woocommerce ul.products li.product .button {
  background-color: #B77923 !important;
  color: #fff !important;
  border: none;
  border-radius: 6px;
  transition: 0.3s;
  font-weight: 600;
  display: inline-block;
  margin: 10px auto 30px;
  margin-bottom:20px;
  padding: 10px 20px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.page-id-3883 .woocommerce ul.products li.product .button:hover {
  background-color: #9a6120 !important;
}

/* ----- Masquer le nom de catégorie ----- */
.page-id-3883 .woocommerce ul.products li.product .woocommerce-loop-category__title,
.page-id-3883 .woocommerce ul.products li.product .posted_in {
  display: none !important;
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
  .page-id-3883 .luxury-header {
    padding: 50px 20px;
  }
  .page-id-3883 .luxury-header h1 {
    font-si


/* ================================ */
/* RESPONSIVE */
@media screen and (max-width: 900px) {
    .contact-content {
        flex-direction: column;
    }
}

@media screen and (max-width: 500px) {
    .contact-title {
        font-size: 32px;
    }
}
