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, #667eea, #764ba2);
color: white;
padding: 25px;
border-radius: 15px;
text-align: center;
margin-bottom: 30px;
position: relative;
overflow: hidden;
box-shadow: 0 10px 30px rgba(102, 126, 234, 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.2), 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: #ff6b6b;
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, #f093fb, #f5576c);
border-radius: 15px;
padding: 30px;
margin: 35px 0;
color: white;
box-shadow: 0 5px 20px rgba(240, 147, 251, 0.3);
}
.highlight-box h4 {
color: white;
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, #667eea, #764ba2);
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(102, 126, 234, 0.3);
}
.size-guide-section {
background: linear-gradient(135deg, #4facfe, #00f2fe);
color: white;
border-radius: 15px;
padding: 30px;
margin: 30px 0;
position: relative;
}
.size-guide-section h4 {
color: white;
margin-bottom: 20px;
font-size: 20px;
text-align: center;
}
.size-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
background: rgba(255,255,255,0.1);
border-radius: 10px;
overflow: hidden;
}
.size-table th,
.size-table td {
padding: 12px;
text-align: center;
border: 1px solid rgba(255,255,255,0.2);
}
.size-table th {
background: rgba(255,255,255,0.2);
font-weight: 600;
}
.size-table tr:nth-child(even) {
background: rgba(255,255,255,0.05);
}
.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 #667eea;
}
.care-icon {
font-size: 20px;
color: #667eea;
}
.guarantee-section {
background: linear-gradient(135deg, #ff6b6b, #ee5a52);
color: white;
padding: 35px;
border-radius: 15px;
text-align: center;
margin: 35px 0;
box-shadow: 0 10px 30px rgba(255, 107, 107, 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);
}
@media (max-width: 768px) {
.product-title {
font-size: 28px;
}
.features-grid {
grid-template-columns: 1fr;
}
.product-description-section {
padding: 20px;
}
.size-table {
font-size: 14px;
}
}
Ensemble Enfant Collection Élégance
La tenue 2 pièces qui fait craquer toutes les petites princesses
Offrez à votre princesse la tenue de ses rêves ! Notre ensemble premium a été spécialement conçu pour les petites filles qui méritent ce qu’il y a de mieux. Blouse délicate à col claudine avec volants et jupe assortie pour un look à la fois chic et confortable.
Rejoignez plus de 1000 mamans au Maroc qui ont déjà adopté notre collection ! De Casablanca à Marrakech, d’Agadir à Tanger, vos petites filles brillent dans nos tenues pour toutes les occasions spéciales.
🔥 OFFRE LIMITÉE : Seulement 199 DH au lieu de 299 DH + livraison express gratuite dans tout le royaume ! Stock limité, ne manquez pas cette opportunité.
👗 Élégance et Confort : L’Alliance Parfaite
Notre ensemble combine style raffiné et confort optimal. Tissu 100% coton premium, finitions soignées et coupe pensée pour la liberté de mouvement. Testée et approuvée par des mamans exigeantes !
✨ Caractéristiques Premium
Blouse à col claudine avec volants délicats et boutons nacrés pour un look sophistiqué
Tissu 100% coton doux, respirant et résistant aux lavages répétés
Coupe parfaite pour bouger librement, coutures plates anti-irritation
Teintures haute qualité qui gardent leur éclat lavage après lavage
Seulement 3 tailles pour couvrir 2-8 ans, coupe généreuse qui grandit avec l’enfant
Lavage machine 30°C, séchage rapide, repassage minimal requis
📏 Guide des Tailles – 3 Tailles Seulement !
Coupe généreuse et évolutive – Votre enfant pourra porter sa tenue plus longtemps !
| Taille | Âge | Tour de poitrine | Longueur blouse | Longueur jupe |
|---|---|---|---|---|
| S | 2-4 ans | 52-58 cm | 32-36 cm | 22-26 cm |
| M | 4-6 ans | 56-62 cm | 34-38 cm | 24-28 cm |
| L | 6-8 ans | 60-66 cm | 36-42 cm | 26-32 cm |
🧼 Guide d’Entretien
🛡️ Vos Garanties Totales
Commandez en toute confiance avec nos garanties exclusives
Satisfait ou 100% remboursé
Gratuite partout au Maroc
Gratuit si taille incorrecte
À la réception disponible
Si vous n’êtes pas 100% satisfaite, nous reprenons l’ensemble et vous remboursons intégralement. C’est notre promesse !




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