/* Variables avec les couleurs de votre logo */
:root {
    --blue-light: #00a2d8;
    --blue: #0ca3d8;
    --gold: #d6a230;
    --red: #d62f2d;
    --text-dark: #333333;
    --text-light: #666666;
    --background-light: #f8f9fa;
    --border-color: #e0e0e0;
    --white: #ffffff;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--blue-light), var(--blue));
    color: #ffffff;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 2px solid var(--gold);
}

.top-links span, .top-links a {
    color: #ffffff;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s;
}

.top-links a:hover {
    color: var(--gold);
    text-decoration: none;
}

/* Main Header */
.main-header {
    background:#ffffff;
    border-bottom: 3px solid var(--blue-light);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark) !important;
}

.logo-img {
    height: 50px;
    width: auto;
    margin-right: 12px;
    border-radius: 5px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-main {
    font-size: 22px;
    font-weight: bold;
    color: var(--blue);
    letter-spacing: 1px;
}

.brand-sub {
    font-size: 14px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Search Form */
.search-form {
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
}

.search-form .input-group {
    border: 2px solid var(--blue-light);
    border-radius: 25px;
    overflow: hidden;
    background: var(--white);
    transition: all 0.3s;
}

.search-form .input-group:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px #00a2d8;
}

.search-form .form-control {
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    background: transparent;
}

.search-form .form-control:focus {
    box-shadow: none;
    border: none;
}

.btn-search {
    background: var(--blue);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    transition: background 0.3s;
}

.btn-search:hover {
    background: var(--blue-light);
}

/* User Menu */
.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 8px;
    padding: 8px 12px !important;
    border-radius: 5px;
    transition: all 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--blue) !important;
    background: #00a2d8;
}

.cart-link {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px solid var(--white);
}

/* Main Navigation */
.main-nav {
    background: var(--white);
    border-bottom: 2px solid #00a2d8;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    color: #00a2d8;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: #00a2d8;
    border-bottom-color: var(--gold);
    background: #00a2d8;
}

.new-link {
    color: var(--blue-light) !important;
}

.sale-link {
    color: var(--red) !important;
    font-weight: bold;
}

.new-badge, .sale-badge {
    background: var(--gold);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
    margin-left: 5px;
    font-weight: bold;
}

.sale-badge {
    background: var(--red);
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background:#ffffff;
    border: 2px solid var(--blue-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    min-width: 600px;
    z-index: 1000;
    padding: 25px;
    border-radius: 0 0 10px 10px;
    border-top: 3px solid var(--gold);
}

.nav-item:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-content {
    display: flex;
    gap: 30px;
}

.dropdown-column {
    flex: 1;
}

.dropdown-column h6 {
    color: var(--blue);
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 8px;
}

.dropdown-column a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    text-decoration: none;
    padding: 8px 0;
    font-size: 14px;
    transition: all 0.3s;
    border-radius: 3px;
    padding-left: 5px;
}

.dropdown-column a:hover {
    color:#00a2d8;
    background: #d6a230;
    padding-left: 10px;
}

.dropdown-column a i {
    color: var(--gold);
    width: 16px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 162, 216, 0.9), rgba(12, 163, 216, 0.8)), url('https://www.shutterstock.com/image-photo/making-choice-woman-chooses-clothes-600nw-2538514561.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gold);
    border: 2px solid var(--gold);
    padding: 15px 35px;
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px #00a2d8;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    padding: 15px 35px;
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--blue);
    transform: translateY(-3px);
}

/* Features */
.features {
    padding: 80px 0;
    background: var(--background-light);
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-img {
    width: 225px;
    height: 225px;
    background: linear-gradient(135deg, var(--blue-light), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color:#ffffff;
    
}

.feature-item h4 {
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--blue);
}

.feature-item p {
    color: var(--text-light);
    margin: 0;
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--blue);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.see-all {
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.see-all:hover {
    color: var(--blue);
    text-decoration: none;
}

/* Product Cards */
.product-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--blue-light);
}

.product-card.sale {
    border-color: var(--red);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.sale-badge {
    background: var(--red);
    color: var(--white);
}

.new-badge {
    background: var(--blue);
    color: var(--white);
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: var(--text-dark);
}

.action-btn:hover {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.product-price {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-price {
    font-size: 20px;
    font-weight: bold;
    color: var(--blue);
}

.old-price {
    font-size: 16px;
    color: var(--text-light);
    text-decoration: line-through;
}

.add-to-cart {
    width: 100%;
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.add-to-cart:hover {
    background: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px #d62f2d;
}

/* Categories Banner */
.categories-banner {
    padding: 60px 0;
    background: var(--background-light);
}

.category-banner {
    display: block;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    text-decoration: none;
    transition: transform 0.3s;
}

.category-banner:hover {
    transform: translateY(-10px);
}

.category-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.category-banner:hover img {
    transform: scale(1.1);
}

.banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.banner-content h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.banner-content span {
    color: var(--gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, #00a2d8, var(--blue));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.newsletter-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.newsletter-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .input-group {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px #00a2d8;
}

.newsletter-form input {
    flex: 1;
    padding: 20px 25px;
    border: none;
    outline: none;
    font-size: 16px;
}

.newsletter-form button {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 20px 40px;
    font-weight: bold;
    cursor: pointer;
    transition: background .3s0;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.newsletter-form button:hover {
    background: #d62f2d;
}

/* Footer */
.main-footer {
    background:#00a2d8;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo .logo-img {
    height: 40px;
    margin-right: 10px;
}

.main-footer p {
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.main-footer h5 {
    color:#d6a230;
    margin-bottom: 20px;
    font-weight: bold;
}

.main-footer ul {
    list-style: none;
    padding: 0;
}

.main-footer ul li {
    margin-bottom: 10px;
}

.main-footer ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.main-footer ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid #ffffff;
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-brand {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-img {
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .nav-menu {
        flex-direction: column;
    }
    
    .dropdown-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .dropdown-menu {
        min-width: 100%;
        position: static;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .search-form {
        margin: 15px 0;
        max-width: 100%;
    }
    
    .feature-item {
        margin-bottom: 30px;
    }
}

