Description
.product-description-section {
max-width: 900px;
margin: 0 auto;
padding: 25px;
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.7;
color: #333;
background: #ffffff;
}
.hero-banner {
background: linear-gradient(135deg, #2c3e50, #34495e);
color: white;
padding: 25px;
border-radius: 15px;
text-align: center;
margin-bottom: 30px;
position: relative;
overflow: hidden;
box-shadow: 0 10px 30px rgba(44, 62, 80, 0.3);
}
.hero-banner::before {
content:  »;
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
animation: shimmer 3s infinite;
}
@keyframes shimmer {
0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}
.gift-tag {
position: absolute;
top: -8px;
right: 20px;
background: #e74c3c;
color: white;
padding: 8px 20px;
border-radius: 50px;
font-size: 13px;
font-weight: bold;
transform: rotate(12deg);
box-shadow: 0 4px 10px rgba(0,0,0,0.2);
animation: bounce 2s infinite;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(12deg); }
40% { transform: translateY(-10px) rotate(12deg); }
60% { transform: translateY(-5px) rotate(12deg); }
}
.product-title {
font-size: 36px;
font-weight: 300;
color: #2c3e50;
margin-bottom: 20px;
text-align: center;
text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
.product-subtitle {
font-size: 18px;
color: #666;
text-align: center;
margin-bottom: 35px;
font-style: italic;
font-weight: 300;
}
.main-description {
font-size: 17px;
color: #555;
margin: 35px 0;
line-height: 1.8;
text-align: justify;
}
.highlight-box {
background: linear-gradient(135deg, #fdf2e9, #fad7a0);
border-radius: 15px;
padding: 30px;
margin: 35px 0;
border-left: 5px solid #f39c12;
box-shadow: 0 5px 20px rgba(243, 156, 18, 0.1);
}
.highlight-box h4 {
color: #d68910;
margin-bottom: 15px;
font-size: 20px;
font-weight: 600;
}
.features-premium {
background: linear-gradient(135deg, #f8f9fa, #e9ecef);
border-radius: 15px;
padding: 35px;
margin: 35px 0;
box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.features-premium h3 {
color: #2c3e50;
margin-bottom: 25px;
font-size: 24px;
text-align: center;
font-weight: 300;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
list-style: none;
padding: 0;
margin: 25px 0;
}
.feature-item {
display: flex;
align-items: flex-start;
gap: 15px;
padding: 20px;
background: white;
border-radius: 12px;
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
transition: transform 0.3s ease;
}
.feature-item:hover {
transform: translateY(-3px);
}
.feature-icon {
width: 45px;
height: 45px;
background: linear-gradient(135deg, #2c3e50, #34495e);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 18px;
font-weight: bold;
flex-shrink: 0;
box-shadow: 0 4px 10px rgba(44, 62, 80, 0.3);
}
.care-section {
background: #f8f9fa;
border-radius: 15px;
padding: 30px;
margin: 30px 0;
border: 1px solid #dee2e6;
}
.care-section h4 {
color: #495057;
margin-bottom: 20px;
font-size: 20px;
}
.care-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 15px;
margin: 20px 0;
}
.care-item {
display: flex;
align-items: center;
gap: 12px;
padding: 12px;
background: white;
border-radius: 8px;
border-left: 4px solid #6c757d;
}
.care-icon {
font-size: 20px;
color: #6c757d;
}
.guarantee-section {
background: linear-gradient(135deg, #e74c3c, #c0392b);
color: white;
padding: 35px;
border-radius: 15px;
text-align: center;
margin: 35px 0;
box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}
.guarantee-section h3 {
font-size: 24px;
margin-bottom: 15px;
font-weight: 300;
}
.guarantee-features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin-top: 25px;
}
.guarantee-item {
background: rgba(255,255,255,0.2);
padding: 15px;
border-radius: 10px;
backdrop-filter: blur(10px);
}
.size-guide {
background: #f8f9fa;
padding: 25px;
border-radius: 12px;
margin: 25px 0;
text-align: center;
border: 2px dashed #dee2e6;
}
.size-guide h4 {
color: #495057;
margin-bottom: 15px;
}
.size-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
background: white;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.size-table th,
.size-table td {
padding: 12px;
text-align: center;
border-bottom: 1px solid #dee2e6;
}
.size-table th {
background: #2c3e50;
color: white;
font-weight: 600;
}
.size-table tr:hover {
background: #f8f9fa;
}
@media (max-width: 768px) {
.product-title {
font-size: 28px;
}
.features-grid {
grid-template-columns: 1fr;
}
.product-description-section {
padding: 20px;
}
.guarantee-features {
grid-template-columns: 1fr;
}
}
Robe de Princesse Tulle Ă Pois Noirs
L’Ă©lĂ©gance intemporelle pour les petites princesses modernes
Transformez votre petite fille en vĂ©ritable princesse ! Cette magnifique robe en tulle Ă pois noirs combine l’Ă©lĂ©gance classique avec une touche de modernitĂ©. Parfaite pour les occasions spĂ©ciales, mariages, fĂŞtes d’anniversaire ou simplement pour faire briller les yeux de votre enfant.
Un design qui fait rêver : Les manches bouffantes en tulle transparent à pois créent un effet romantique et sophistiqué, tandis que la jupe voluminouse avec plusieurs couches de tulle offre ce mouvement gracieux que toutes les petites filles adorent.
✨ DÉTAILS RAFFINÉS : Chaque robe est confectionnĂ©e avec soin, du corsage ajustĂ© aux finitions dĂ©licates. Les pois noirs sur tulle transparent apportent une touche d’Ă©lĂ©gance parisienne qui ne passera pas inaperçue !
🎠Style Vintage Chic
Inspirée des robes de bal des années 50, cette création marie parfaitement le charme rétro et le confort moderne. Votre petite princesse pourra danser, jouer et briller toute la journée en toute liberté.
Caractéristiques Premium
Tissu doux et résistant, confortable pour la peau délicate des enfants
Design romantique avec tulle transparent à pois pour un look sophistiqué
Plusieurs couches de tulle pour un effet princesse garanti
Zip invisible et finitions soignées pour un habillage facile
Coutures renforcées et bordures parfaitement finies
Parfaite pour toutes les occasions spéciales et événements
đź§Ľ Guide d’Entretien
📏 Guide des Tailles
Choisissez la taille appropriée pour un confort optimal et une belle silhouette
| Taille | Âge | Tour de Poitrine | Tour de Taille | Longueur |
|---|---|---|---|---|
| 3-4 ans | 3-4 ans | 56-58 cm | 52-54 cm | 65 cm |
| 4-5 ans | 4-5 ans | 58-60 cm | 54-56 cm | 70 cm |
| 5-6 ans | 5-6 ans | 60-62 cm | 56-58 cm | 75 cm |
| 6-7 ans | 6-7 ans | 62-64 cm | 58-60 cm | 80 cm |
| 7-8 ans | 7-8 ans | 64-66 cm | 60-62 cm | 85 cm |
🛡️ Vos Garanties Satisfaction
Commandez en toute confiance avec nos garanties exclusives
Satisfait ou remboursé
Gratuite et rapide
si taille incorrecte
Votre satisfaction est notre priorité. Si la robe ne correspond pas à vos attentes, nous vous remboursons intégralement !



Avis
Il n’y a pas encore d’avis.