/* Color scheme variables */
:root {
    --primary-color: #FF6B00; /* Orange */
    --secondary-color: #FFFFFF; /* White */
    --accent-color: #000000; /* Black */
    --background-color: #FAFAFA;
    --text-color: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

header {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--secondary-color);
}

.logo {
    height: 90px;
    margin-right: 1rem;
}

h1 {
    font-size: 2rem;
    font-weight: bold;
}

.top-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.language-selector {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.language-selector a {
    color: var(--secondary-color);
    text-decoration: none;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.language-selector a.active {
    font-weight: bold;
    text-decoration: underline;
}

.language-selector a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

nav ul {
    display: flex;
    list-style: none;
}

nav li {
    margin-left: 1.5rem;
}

nav a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

nav a.active {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--secondary-color);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Collection type menu (Prêt-à-Chausser) */
.collection-type-top,
.collection-type-nav {
    text-align: center;
    margin: 1.5rem 0;
}

.collection-type-menu {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.collection-type-menu a,
.shoe-style-menu a,
.shoe-style-menu button {
    display: inline-block;
    padding: 0.5rem 0.9rem;
    background: white;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid #eee;
    font-weight: 600;
    transition: background-color 0.18s, transform 0.12s;
}

.collection-type-menu a:hover,
.shoe-style-menu a:hover,
.shoe-style-menu button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.06);
}

.collection-type-menu a.active,
.shoe-style-menu a.active,
.shoe-style-menu button.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.collection-type-menu a.coming-soon,
.shoe-style-menu a.coming-soon,
.shoe-style-menu button.coming-soon {
    opacity: 0.6;
}

/* Slogan Bubble */
.slogan-bubble {
    display: flex;
    justify-content: center;
    margin: -10px auto 15px;
    position: relative;
    z-index: 2;
}

.slogan-image {
    max-width: 130px;
    max-height: 130px;
    width: auto;
    height: auto;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.slogan-image:hover {
    transform: translateY(-5px) scale(1.05);
}

/* Promo Comparison Section */
.promo-comparison {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.promo-comparison h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.promo-comparison p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
}

.comparison-table {
    overflow-x: auto;
    margin: 0 auto;
    max-width: 800px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    margin: 0 auto;
}

.comparison-table th, 
.comparison-table td {
    padding: 12px 15px;
    text-align: center;
    border: 1px solid #eee;
}

.comparison-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

.comparison-table tr:nth-child(even) {
    background-color: #f8f8f8;
}

.comparison-table tr:nth-child(odd) {
    background-color: #ffffff;
}

.comparison-table tr.highlight {
    background-color: #fff8f1;
    font-weight: 600;
    color: var(--primary-color);
}

.comparison-table tr.highlight td {
    border-bottom: 2px solid var(--primary-color);
}

@media (max-width: 768px) {
    .comparison-table th, 
    .comparison-table td {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    .promo-comparison h3 {
        font-size: 1.5rem;
    }
    
    .promo-comparison p {
        font-size: 1rem;
    }
}

/* Home page categories */
.home-categories {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.home-categories h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.category-card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.category-card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.view-more {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.view-more:hover {
    background-color: #E05600;
}

/* Clients Section */
.clients-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.clients-section h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.clients-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Athletes Section */
.athletes-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.athletes-section h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.athletes-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.featured-athlete {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.featured-athlete-image {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--primary-color);
}

.featured-athlete-info {
    flex: 1;
    min-width: 300px;
}

.featured-athlete-info h4 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.athlete-description {
    font-weight: bold;
    margin-bottom: 1rem;
}

.athlete-join {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem auto 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
}

.athlete-join p {
    margin-bottom: 0.8rem;
}

.athlete-join .view-more {
    margin-top: 0.8rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.client-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.client-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 1rem;
    cursor: pointer;
}

.client-card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.client-card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-section h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    background-color: #f9f9f9;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.faq-toggle {
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s, padding 0.5s;
}

.faq-item.active .faq-answer {
    padding: 1.2rem;
    max-height: 500px;
}

/* Contact Section */
.contact-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-section h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.contact-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    min-width: 20px;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}

.contact-form {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.form-group.half {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 200px;
}

.form-group input[type="email"],
.form-group input[type="text"],
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background-color: #fff;
}

.form-group input[type="email"]:focus,
.form-group input[type="text"]:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    margin-right: 1.5rem;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 0.5rem;
    width: 1.2rem;
    height: 1.2rem;
    accent-color: var(--primary-color);
}

.form-status {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
}

.form-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-group button.view-more {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 2rem auto 0;
    padding: 1rem;
    font-size: 1.1rem;
    text-align: center;
    cursor: pointer;
    border: none;
}

/* Shoe detail page */
.shoe-type-nav {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.shoe-type-nav h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.shoe-type-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.shoe-type-menu a {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid #eee;
}

.shoe-type-menu a:hover {
    background-color: #f0f0f0;
}

.shoe-type-menu a.active {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.featured-shoe {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.shoe-info {
    flex: 1;
    padding-right: 2rem;
}

.shoe-info h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.shoe-info p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    white-space: pre-line;
}

/* Order button styles */
.order-section {
    margin-top: 30px;
    margin-bottom: 20px;
}

.order-button {
    display: inline-block;
    background-color: #FF6B00;
    color: white;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(255, 107, 0, 0.2);
    text-align: center;
}

.order-button:hover {
    background-color: #E55000;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(255, 107, 0, 0.3);
}

.order-info {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
    max-width: 350px;
}

.view-details {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.view-details:hover {
    background-color: #E05600;
}

.shoe-preview {
    flex: 1;
    display: flex;
    justify-content: center;
}

.shoe-preview img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    cursor: pointer;
}

.gallery {
    padding: 2rem;
    background-color: var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.gallery h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.thumbnail {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}

.thumbnail:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.thumbnail img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* Lightbox styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 80%;
}

.lightbox-img {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 3px solid white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
    transform: translateY(-50%);
}

.lightbox-nav button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.lightbox-nav button:hover {
    background: rgba(255, 255, 255, 0.4);
}

.home-categories .category-card img {
    cursor: pointer;
}

/* Footer */
footer {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 2rem 1.5rem;
    margin-top: 3rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo .logo {
    height: 70px;
    margin-right: 0.5rem;
}

.footer-logo h2 {
    font-size: 1.5rem;
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.footer-nav li {
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.footer-nav a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

footer p {
    text-align: center;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
    
    .featured-shoe {
        flex-direction: column-reverse;
    }
    
    .shoe-info {
        padding-right: 0;
        margin-top: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
        position: relative;
    }
    
    .logo-container {
        margin-bottom: 0;
        z-index: 101;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo-container h1 {
        font-size: 1.8rem;
    }
    
    .logo {
        height: 60px;
        margin-right: 0.8rem;
    }
    
    .top-nav {
        display: none;
        align-items: center;
        width: 100%;
        padding-top: 1rem;
    }
    
    .top-nav.show {
        display: flex;
        flex-direction: column;
    }
    
    .language-selector {
        margin-bottom: 1rem;
        width: 100%;
        text-align: center;
    }
    
    nav ul {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    
    nav li {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
    }
    
    nav a {
        display: block;
        padding: 0.8rem;
        width: 100%;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .thumbnails {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-nav ul {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-nav li {
        margin: 0.5rem 0;
    }
    
    /* Mobile menu button */
    .mobile-menu-btn {
        display: block;
        position: relative;
        z-index: 102;
    }
    
    /* Contact form layout */
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-group.half {
        width: 100%;
    }
    
    /* Featured shoe display */
    .featured-shoe {
        flex-direction: column-reverse;
        padding: 1.5rem;
    }
    
    .shoe-info {
        padding-right: 0;
        text-align: center;
        margin-top: 1.5rem;
    }
    
    .shoe-preview img {
        max-height: 200px;
    }
}

@media (max-width: 576px) {
    main {
        padding: 1rem;
    }
    
    .hero {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    /* Better spacing for mobile */
    section {
        margin-bottom: 1.5rem;
    }
    
    .promo-comparison, .home-categories, .clients-section, 
    .faq-section, .contact-section {
        padding: 1.5rem 1rem;
    }
    
    /* Improve small screen grid layouts */
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Better navigation on small screens */
    .shoe-type-menu {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .shoe-type-menu a {
        width: 100%;
        text-align: center;
        padding: 0.8rem;
    }
    
    /* Improved mobile menu */
    .mobile-menu-btn {
        display: block;
        position: relative;
        right: 0;
        top: 0;
        z-index: 102;
    }
    
    .mobile-menu-btn span {
        width: 22px;
        height: 2px;
        margin: 4px 0;
    }
    
    /* Header styles when menu is open */
    header.menu-open {
        flex-direction: column;
        padding-bottom: 1rem;
    }
    
    /* Better form styling on mobile */
    .form-group label {
        font-size: 0.95rem;
    }
    
    .contact-form {
        padding: 1.2rem;
    }
    
    /* Optimize image galleries for small screens */
    .thumbnails {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.8rem;
    }
    
    .thumbnail img {
        height: 120px;
    }
    
    /* Better organization of checkbox groups */
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    /* Better lightbox controls for mobile */
    .lightbox-nav {
        bottom: -60px;
        top: auto;
    }
    
    .lightbox-nav button {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-content {
        max-width: 95%;
    }
    
    /* Better footer for mobile */
    footer {
        padding: 1.5rem 1rem;
        text-align: center;
    }
    
    .footer-nav li {
        margin: 0.4rem 0;
    }
    
    /* FAQ improvements for mobile */
    .faq-question h4 {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .faq-answer {
        font-size: 0.95rem;
    }
}/* Ajout des styles pour le champ de fichiers */
.form-group input[type="file"] {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background-color: #fff;
    margin-bottom: 0.5rem;
}

.form-group input[type="file"]:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.1);
}

.file-info {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.3rem;
}

/* Styles existants... */