Votre panier est actuellement vide !
Ensemble 2 pièces col V
/* Reset and Box Sizing */ *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: ‘Inter’, sans-serif; line-height: 1.6; color: #333; /* Text color */ background-color: white; /* Changed to white */ } .container { max-width: 1200px; margin: 0 auto; padding: 20px; } .hero { text-align: center; padding: 40px 20px; […]
Description
/* Reset and Box Sizing */
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: ‘Inter’, sans-serif;
line-height: 1.6;
color: #333; /* Text color */
background-color: white; /* Changed to white */
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.hero {
text-align: center;
padding: 40px 20px;
background-color: white; /* White background */
border-radius: 10px;
margin-bottom: 30px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.hero h1 {
font-size: 2.5em;
color: #333; /* Dark text */
margin-bottom: 15px;
}
.hero .tagline {
font-size: 1.2em;
font-weight: bold;
color: #555; /* Dark gray text */
margin-bottom: 20px;
}
.hero .cta-button {
background-color: #333; /* Dark button */
color: white; /* White text */
padding: 15px 25px;
border-radius: 5px;
font-weight: 600;
text-transform: uppercase;
transition: all 0.3s ease-in-out;
display: inline-block;
text-decoration: none;
margin-top: 20px;
}
.hero .cta-button:hover {
background-color: #555; /* Medium gray on hover */
box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.product-details {
display: flex;
flex-direction: column;
gap: 30px;
padding: 30px 20px;
background-color: white; /* White background */
border-radius: 10px;
margin-bottom: 30px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.main-image {
border-radius: 10px;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
}
.main-image img {
display: block;
width: 100%;
height: auto;
transition: transform 0.3s ease-in-out;
}
.main-image img:hover {
transform: scale(1.05); /* Image zoom on hover */
}
.product-info {
display: flex;
flex-direction: column;
gap: 20px;
}
.product-info h2 {
font-size: 2em;
color: #333; /* Dark text for header */
margin-bottom: 15px;
}
.product-info .features {
list-style: none;
padding-left: 0;
font-size: 1.1em;
}
.product-info .features li {
margin-bottom: 12px;
display: flex;
align-items: center;
}
.product-info .features li::before {
content: ‘✔️’; /* Checkmark symbol */
margin-right: 10px;
color: #333; /* Dark color for the checkmark */
font-size: 1.2em;
}
.product-details-info {
background-color: white; /* Changed to white */
padding: 30px 20px;
border-radius: 10px;
margin-bottom: 30px;
}
.product-details-info h2 {
text-align: center;
font-size: 1.8em;
color: #333; /* Dark text */
margin-bottom: 20px;
}
.product-details-info .details-list {
list-style: none;
padding-left: 0;
max-width: 700px;
margin: 0 auto;
font-size: 1.1em;
line-height: 1.8;
color: #333; /* Dark text */
}
.product-details-info .details-list li {
margin-bottom: 12px;
display: flex;
align-items: flex-start;
}
.product-details-info .details-list li strong {
margin-right: 10px;
color: #333; /* Dark text */
font-weight: 600; /* Bold text */
}
.size-guide {
padding: 30px 20px;
background: white; /* White background */
border-radius: 10px;
margin-bottom: 30px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.size-guide h2 {
text-align: center;
font-size: 1.8em;
color: #333; /* Dark text */
margin-bottom: 20px;
}
.size-guide .table-responsive {
overflow-x: auto;
margin-bottom: 20px;
}
.size-guide table.size-table {
width: 100%;
max-width: 800px;
margin: 0 auto;
border-collapse: collapse;
font-size: 1em;
background-color: white; /* White background */
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
overflow: hidden;
}
.size-guide table.size-table thead tr {
background-color: white; /* Changed to white */
}
.size-guide table.size-table th,
.size-guide table.size-table td {
padding: 15px;
border: 1px solid #ddd; /* Light border */
text-align: center;
color: #333; /* Dark text */
}
.size-guide table.size-table th {
font-weight: 600; /* Bold header text */
color: #333; /* Dark text */
}
.size-guide table.size-table tbody tr:nth-child(even) {
background-color: white; /* Changed to white */
}
.size-guide .size-note {
text-align: center;
font-size: 0.9em;
margin-top: 15px;
color: #777; /* Medium gray for notes */
}
.notes {
background: white; /* Changed to white */
padding: 30px 20px;
text-align: center;
border-radius: 10px;
margin-bottom: 30px;
}
.notes h3 {
font-size: 1.5em;
color: #333; /* Dark text */
margin-bottom: 15px;
}
.notes .notes-list {
list-style: none;
padding-left: 0;
display: inline-block;
text-align: left;
line-height: 1.8;
font-size: 1.1em;
color: #333; /* Dark text */
}
.notes .notes-list li {
margin-bottom: 10px;
color: #333; /* Dark text */
}
/* Mobile Styles */
@media (max-width: 767px) {
.product-details {
flex-direction: column; /* Stack elements on small screens */
}
.product-info {
padding-left: 0; /* Reset padding */
}
.size-guide table.size-table {
display: block;
overflow-x: auto; /* Allow horizontal scrolling */
white-space: nowrap;
}
.size-guide th,
.size-guide td {
padding: 12px 10px; /* Adjust padding for mobile */
}
.product-images {
display: flex;
flex-wrap: wrap;
gap: 15px;
justify-content: center; /* Center images */
}
.product-images img {
max-width: 45%;
height: auto;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
margin-bottom: 15px; /* Image spacing */
}
}
Ensemble 2 Pièces Décontracté – Haut et Pantalon
Style Élégant et Confortable à Portée de Main
Aperçu du Produit
Découvrez l’ensemble 2 pièces décontracté, votre nouveau choix préféré pour allier élégance et confort. Conçu pour les femmes modernes, cet ensemble polyvalent vous assure une allure chic tout en étant à l’aise dans votre peau. Il est parfait pour toutes les occasions, que ce soit une réunion de travail ou une sortie décontractée.
🌟 Design élégant et décontracté
🌿 Tissu ultra confortable
🎨 Disponible en plusieurs couleurs tendance
🔄 Convient à toutes les occasions
Information sur le Produit

- Type de Style : Chic et Décontracté
- Longueur de la Jupe : Jupe Longue
- Éléments Populaires : Avec Poche
- Nom du Tissu : Fait d’un tissu de haute qualité qui est doux pour la peau et ne provoque pas d’allergies.
- Style : Décontracté
- Artisanat : Finition Froissée
Avec une gamme de tailles allant de S à 5XL, cet ensemble est conçu pour s’adapter à toutes les morphologies. Faites l’expérience d’un confort inégalé Avec un tissu de haute qualité qui est doux pour la peau et ne provoque pas d’allergies, offrant une texture douce et agréable à porter. Son design moderne et tendance vous permettra de vous démarquer, peu importe l’occasion !
Guide des Tailles
| Taille | Buste (cm) | Taille (cm) | Hanches (cm) | Longueur Haut (cm) | Longueur Pantalon (cm) |
|---|---|---|---|---|---|
| S | 84 | 64 | 90 | 60 | 92 |
| M | 88 | 68 | 94 | 61 | 93 |
| L | 92 | 72 | 98 | 62 | 94 |
| XL | 96 | 76 | 102 | 63 | 95 |
| XXL | 100 | 80 | 106 | 64 | 96 |
| 3XL | 104 | 84 | 110 | 65 | 97 |
| 4XL | 108 | 88 | 114 | 66 | 98 |
| 5XL | 112 | 92 | 118 | 67 | 99 |
Informations complémentaires
| Couleur | Blanc, Bleu, Bleu Clair, Gris, Jaune, Noir, Orange, Vert, Violet |
|---|---|
| Taille |









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