:root {
    --primary-color: #d87b2a;
    --secondary-color: #2ca3ad;
    --light-gray: #f4f4f4;
    --dark-gray: #333;
    --white: #fff;
    --danger: #dc3545;
    --success: #28a745;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light-gray);
    line-height: 1.6;
    color: #444;
}

/* Utilitaires */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn:hover {
    background-color: #c06a20;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: #239099;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 14px;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Top Bar Contact Info */
.top-bar-contact {
    display: flex;
    gap: 20px;
}

.top-bar-contact a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.top-bar-contact a:hover {
    opacity: 0.8;
}

.top-bar-contact i {
    margin-right: 5px;
}


/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-bar {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
}

.main-header {
    padding: 15px 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.logo span {
    color: var(--secondary-color);
}

.search-bar {
    flex-grow: 1;
    margin: 0 40px;
    position: relative;
}

.search-bar form {
    width: 100%;
}

.search-bar input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    outline: none;
}

.search-bar button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
}

.header-actions {
    display: flex;
    gap: 25px;
}

.action-btn {
    color: var(--dark-gray);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.action-btn i {
    font-size: 22px;
    color: var(--primary-color);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--secondary-color);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Navigation */
nav {
    background-color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    transition: background-color 0.3s;
}

.nav-menu a:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, rgba(44, 163, 173, 0.8), rgba(216, 123, 42, 0.8)), url('../img/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Breadcrumb */
.breadcrumb-nav {
    margin: 20px 0;
}

.breadcrumb {
    display: flex;
    list-style: none;
    padding: 0;
    background-color: white;
    border-radius: 5px;
    padding: 10px 15px;
}

.breadcrumb-item {
    position: relative;
    padding-right: 20px;
    margin-right: 15px;
}

.breadcrumb-item::after {
    content: '/';
    position: absolute;
    right: 0;
    top: 0;
    color: #ccc;
}

.breadcrumb-item:last-child {
    padding-right: 0;
    margin-right: 0;
}

.breadcrumb-item:last-child::after {
    display: none;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #777;
}

/* Product Categories */
.categories {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    color: var(--dark-gray);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 20%;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background-color: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-img {
    height: 200px;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-img img {
    max-width: 60%;
    max-height: 60%;
}

.category-info {
    padding: 20px;
    text-align: center;
}

.category-info h3 {
    margin-bottom: 10px;
    color: var(--dark-gray);
}

/* Featured Products */
.featured-products {
    padding: 60px 0;
    background-color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img {
    height: 200px;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-img .discount {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: bold;
}

.product-img img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    margin-bottom: 10px;
    color: var(--dark-gray);
    font-size: 18px;
}

.product-info h3 a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.product-info h3 a:hover {
    color: var(--primary-color);
}

.product-info p {
    color: #777;
    margin-bottom: 15px;
    font-size: 14px;
}

.product-category {
    display: inline-block;
    background-color: #f0f0f0;
    color: #555;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    margin-bottom: 5px;
}

.price {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    margin-top: auto;
}

.current-price {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
}

.old-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

.product-actions {
    display: flex;
    justify-content: space-between;
}

.add-to-cart {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.add-to-cart:hover {
    background-color: #c06a20;
}

.wishlist {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    border: none;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    transition: background-color 0.3s, color 0.3s;
}

.wishlist:hover {
    background-color: #ffeded;
    color: #ff6b6b;
}

/* Why Choose Us */
.features {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    border-radius: 5px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.feature-card p {
    color: #777;
}

/* Category Page */
.category-banner {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.category-info {
    color: white;
    max-width: 800px;
}

.category-info h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.category-info p {
    font-size: 16px;
}

.category-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.category-sidebar {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.sidebar-block {
    margin-bottom: 25px;
}

.sidebar-block:last-child {
    margin-bottom: 0;
}

.sidebar-block h3 {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list li a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.category-list li a:hover, .category-list li.active a {
    color: var(--primary-color);
}

.price-filter {
    margin-top: 15px;
}

.price-slider {
    width: 100%;
    margin-bottom: 10px;
    cursor: pointer;
}

.price-range {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
}

.filter-btn {
    width: 100%;
    padding: 8px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.filter-btn:hover {
    background-color: #c06a20;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-option {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.filter-option input {
    margin-right: 8px;
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.products-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.products-sort select {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.no-products {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.pagination ul {
    display: flex;
    list-style: none;
    gap: 10px;
}

.pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 5px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s;
}

.pagination li.active a {
    background-color: var(--primary-color);
    color: white;
}

.pagination li a:hover {
    background-color: #f0f0f0;
}

.pagination li.active a:hover {
    background-color: var(--primary-color);
}

.pagination li.disabled a {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Product Page */
.product-details {
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    padding: 30px;
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.product-gallery {
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-image {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.main-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border: 2px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s;
}

.thumbnail img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.thumbnail.active {
    border-color: var(--primary-color);
}

.product-summary {
    padding: 20px 0;
}

.product-summary h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    color: #FFD700;
    margin-right: 10px;
}

.review-count {
    color: #777;
}

.product-price {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.product-old-price {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

.availability {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.in-stock {
    color: #4CAF50;
    margin-left: 5px;
}

.out-of-stock {
    color: #F44336;
    margin-left: 5px;
}

.product-description {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #555;
}

.specifications {
    margin-bottom: 30px;
}

.specifications h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--dark-gray);
}

.spec-list {
    list-style: none;
}

.spec-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
}

.spec-name {
    width: 40%;
    font-weight: bold;
    color: #555;
}

.quantity-selector {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.quantity-label {
    margin-right: 20px;
    font-weight: bold;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.quantity-btn:hover {
    background-color: #f0f0f0;
}

.quantity-input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.product-buttons {
    display: flex;
    gap: 15px;
}

.add-to-cart-btn {
    flex-grow: 1;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.3s;
}

.add-to-cart-btn:hover {
    background-color: #c06a20;
}

.add-to-cart-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.wishlist-btn, .share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f5f5f5;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #777;
    transition: background-color 0.3s, color 0.3s;
}

.wishlist-btn:hover {
    background-color: #ffeded;
    color: #ff6b6b;
}

.share-btn:hover {
    background-color: #e6f7ff;
    color: #1890ff;
}

.product-tabs {
    margin-top: 60px;
}

.tabs-nav {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 15px 30px;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    color: #777;
    transition: color 0.3s;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
    font-weight: bold;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s;
}

.tab-content.active {
    display: block;
}

.related-products {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

/* Search Page */
.search-header {
    margin-bottom: 30px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.search-header h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.search-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

.search-filters {
    background-color: var(--white);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    align-self: start;
}

.filter-block {
    margin-bottom: 25px;
}

.filter-block h3 {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.category-filter {
    list-style: none;
}

.category-filter li {
    margin-bottom: 10px;
}

.category-filter a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.category-filter a:hover {
    color: var(--primary-color);
}

.no-results {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.no-results ul {
    list-style: inside;
    margin-top: 15px;
    text-align: left;
    display: inline-block;
}

.no-results li {
    margin-bottom: 5px;
}

/* Styles supplémentaires pour la page de contact */

.contact-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 0;
    background-color: var(--light-gray);
    border-radius: 5px;
}

.contact-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.contact-header p {
    color: #666;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    margin-bottom: 60px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background-color: var(--white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-block {
    display: flex;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(216, 123, 42, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.info-content p, .info-content a {
    color: #777;
    text-decoration: none;
    line-height: 1.6;
}

.info-content a:hover {
    color: var(--primary-color);
}

.company-details {
    margin-top: 30px;
    margin-bottom: 30px;
}

.company-details h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.company-details ul {
    list-style: none;
    padding: 0;
}

.company-details li {
    margin-bottom: 10px;
    color: #777;
}

.social-links h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.contact-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark-gray);
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group button {
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.form-group button:hover {
    background-color: #c06a20;
    transform: translateY(-2px);
}

.map-section {
    margin-top: 60px;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--dark-gray);
}

.map-container {
    height: 400px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.map-placeholder {
    height: 100%;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #777;
    text-align: center;
    padding: 20px;
}

/* Alerte de succès et d'erreur */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    position: relative;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .info-block {
        flex-direction: column;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .map-container {
        height: 300px;
    }
}

/* About Page */
.about-header {
    margin-bottom: 60px;
}

.about-banner {
    background: linear-gradient(to right, rgba(44, 163, 173, 0.8), rgba(216, 123, 42, 0.8)), url('../img/about/about-banner.jpg') no-repeat center center;
    background-size: cover;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    border-radius: 5px;
    padding: 20px;
}

.about-banner h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.about-story {
    margin-bottom: 60px;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.story-image {
    border-radius: 5px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-text p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.about-mission {
    margin-bottom: 60px;
    background-color: #f9f9f9;
    padding: 60px 0;
}

.mission-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.mission-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(216, 123, 42, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.mission-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.about-team {
    margin-bottom: 60px;
}

.team-description {
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.team-description p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    padding: 20px 20px 5px;
    font-size: 20px;
}

.member-position {
    color: var(--primary-color);
    font-weight: bold;
    padding: 0 20px 10px;
    margin: 0;
}

.member-bio {
    padding: 0 20px 20px;
    margin: 0;
    color: #777;
    font-size: 14px;
}

.about-partners {
    margin-bottom: 60px;
}

.partners-description {
    text-align: center;
    margin-bottom: 30px;
}

.partners-logo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.partner-logo {
    background-color: var(--white);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px;
}

.partner-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.about-testimonials {
    margin-bottom: 60px;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    padding: 30px;
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    font-size: 60px;
    color: rgba(216, 123, 42, 0.2);
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-content p {
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    color: #777;
    margin-bottom: 5px;
}

.rating {
    color: #FFD700;
}

.about-cta {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
    border-radius: 5px;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-container p {
    margin-bottom: 30px;
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Account Page */
.account-header {
    margin-bottom: 30px;
    text-align: center;
}

.account-header h1 {
    font-size: 32px;
}

.account-content {
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 60px;
}

.auth-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
}

.auth-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.auth-tab {
    padding: 15px 30px;
    cursor: pointer;
    color: #777;
    font-weight: 500;
    transition: all 0.3s;
}

.auth-tab.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.auth-pane {
    display: none;
}

.auth-pane.active {
    display: block;
    animation: fadeIn 0.5s;
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me input {
    width: auto !important;
    margin-right: 8px;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
}

.terms-checkbox input {
    width: auto !important;
    margin-right: 8px;
    margin-top: 5px;
}

.terms-checkbox a {
    color: var(--primary-color);
    text-decoration: none;
}

.terms-checkbox a:hover {
    text-decoration: underline;
}

.form-hint {
    font-size: 12px;
    color: #777;
    margin-top: 5px;
}

.account-dashboard {
    display: grid;
    grid-template-columns: 250px 1fr;
}

.account-sidebar {
    background-color: #f9f9f9;
    padding: 30px 20px;
    border-radius: 5px 0 0 5px;
}

.user-info {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.user-avatar {
    width: 100px;
    height: 100px;
    background-color: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 40px;
    color: #aaa;
}

.user-info h3 {
    margin-bottom: 5px;
}

.user-info p {
    color: #777;
    font-size: 14px;
}

.account-menu {
    list-style: none;
}

.account-menu li {
    margin-bottom: 10px;
}

.account-menu a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #555;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.account-menu a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.account-menu a:hover, .account-menu li.active a {
    background-color: rgba(216, 123, 42, 0.1);
    color: var(--primary-color);
}

.logout-btn {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 15px;
    background: none;
    border: none;
    color: #555;
    font-size: 16px;
    text-align: left;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.logout-btn i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.logout-btn:hover {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--danger);
}

.account-content {
    padding: 30px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s;
}

.tab-pane h2 {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.dashboard-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.summary-card {
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    align-items: center;
}

.summary-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(216, 123, 42, 0.1);
    color: var(--primary-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
}

.summary-info h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.summary-info p {
    color: #777;
    font-size: 14px;
    margin: 0;
}

.recent-orders {
    margin-top: 30px;
}

.recent-orders h3 {
    margin-bottom: 20px;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table th, .orders-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.orders-table th {
    font-weight: 500;
    color: #555;
    background-color: #f9f9f9;
}

.order-status {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
}

.order-status.livré {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.order-status.en-cours-de-livraison {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.view-all {
    text-align: right;
    margin-top: 20px;
}

.view-all-link {
    color: var(--primary-color);
    text-decoration: none;
}

.view-all-link:hover {
    text-decoration: underline;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.close:hover {
    color: black;
}

.order-details {
    margin-top: 20px;
}

.order-info {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.items-table {
    width: 100%;
    border-collapse: collapse;
}

.items-table th, .items-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.items-table th {
    font-weight: 500;
    color: #555;
    background-color: #f9f9f9;
}

/* Checkout Page */
.checkout-header {
    margin-bottom: 30px;
    text-align: center;
}

.checkout-header h1 {
    font-size: 32px;
}

.checkout-content {
    margin-bottom: 60px;
}

.checkout-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.checkout-details {
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 30px;
}

.checkout-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.checkout-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.checkout-section h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

.shipping-options, .payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.shipping-option, .payment-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
    cursor: pointer;
    transition: border-color 0.3s;
}

.shipping-option:hover, .payment-option:hover {
    border-color: var(--primary-color);
}

.shipping-option input, .payment-option input {
    margin-right: 10px;
}

.option-name {
    flex-grow: 1;
}

.option-price {
    font-weight: bold;
}

.payment-details {
    margin-top: 15px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.payment-details h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.payment-details p {
    margin-bottom: 5px;
}

.order-summary {
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 30px;
    align-self: start;
}

.order-summary h2 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.cart-items {
    margin-bottom: 30px;
    max-height: 300px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.item-image {
    width: 80px;
    height: 80px;
    margin-right: 15px;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.item-details {
    flex-grow: 1;
}

.item-details h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.item-details p {
    color: #777;
    font-size: 14px;
    margin: 0;
}

.item-price {
    font-weight: 500;
}

.item-total {
    font-weight: bold;
    min-width: 100px;
    text-align: right;
}

.totals {
    margin-bottom: 30px;
}

.totals-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.totals-row.total {
    font-weight: bold;
    font-size: 18px;
    border-bottom: none;
    padding-top: 15px;
}

.terms-checkbox {
    margin-bottom: 20px;
}

.place-order-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.place-order-btn:hover {
    background-color: #c06a20;
}

.back-to-cart {
    text-align: center;
    margin-top: 20px;
}

.back-to-cart a {
    color: #777;
    text-decoration: none;
    display: inline-block;
}

.back-to-cart a:hover {
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

.footer-column p, .footer-column address {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #bbb;
    font-style: normal;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-links {
    list-style: none;
}

.contact-links li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-links i {
    width: 30px;
    color: var(--primary-color);
    font-size: 18px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background-color 0.3s;
}

.social-link:hover {
    background-color: var(--primary-color);
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.copyright {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #bbb;
    font-size: 14px;
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .product-container {
        grid-template-columns: 1fr;
    }
    
    .category-layout {
        grid-template-columns: 1fr;
    }
    
    .search-content {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .account-dashboard {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .search-bar {
        margin: 20px 0;
        width: 100%;
    }
    
    .nav-menu {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.language-switcher a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    padding: 0 5px;
    transition: opacity 0.3s;
}

.language-switcher a:hover {
    opacity: 0.8;
}

.language-switcher a.active {
    font-weight: bold;
}

.language-switcher .separator {
    color: rgba(255,255,255,0.5);
    margin: 0 2px;
}