* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif; /* Or a more specific font from the image */
    background-color: #f0f2f5; /* Light grey background */
    color: #333;
}
.hero-section{
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

/* HEADER BASE */
header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    width: 100%;
}
.logoDf {
    height: 40px;
    width: auto;
    border-radius: 10px;
}

.logoDf-text h5 {
    margin-left: 10px;
    font-size: 1.1rem;
    color: #333;
}

/* MENU */
nav {
    display: flex;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #991ebe;
}

/* Partner Stores Section */
.partner-stores-section {
    max-width: 1200px;
    margin: 60px auto; /* Margin above and below */
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
}

.section-title {
    font-size: 2em;
    margin-bottom: 40px;
    color: #333;
    font-weight: 600;
}

.partner-logos-grid {
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(190px, 3fr)
    ); /* Responsive grid for logos */
    gap: 50px; /* Space between logos */
    justify-content: center; /* Center logos if they don't fill the row */
    align-items: center; /* Align logos vertically */
}

.partner-logo {
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    display: flex; /* For centering the image */
    justify-content: center;
    align-items: center;
    background-color: #fcfcfc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 100px; /* Ensure a minimum height for all logo boxes */
}

.partner-logo:hover {
    transform: translateY(-3px); /* Slight lift on hover */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Stronger shadow on hover */
}
.partner-log {
    width: 1200px;
    background-color: #222;
}
.partner-logo img {
    max-width: 80%; /* Ensure logos fit within their container */
    max-height: 70px; /* Limit height to prevent large logos */
    height: auto;
}

.partner-logo:hover img {
    filter: grayscale(0%); /* Full color on hover */
    opacity: 1; /* Fully opaque on hover */
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .promotion-overlay {
        margin-left: 5%;
        max-width: 90%;
        text-align: center;
        margin-right: 5%; /* For centering on smaller screens */
    }
    .special-promotion-section {
        padding: 60px 0;
    }
    .promotion-title {
        font-size: 2em;
    }
    .promotion-text {
        font-size: 1em;
    }

    .partner-stores-section {
        margin: 40px auto;
        padding: 30px 15px;
    }
    .section-title {
        font-size: 1.7em;
        margin-bottom: 30px;
    }
    .partner-logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }
    .partner-logo {
        min-height: 80px;
    }
    .partner-logo img {
        max-height: 60px;
    }
}

@media (max-width: 768px) {
    .special-promotion-section {
        padding: 50px 0;
    }
    .promotion-overlay {
        margin: 0 auto; /* Center text box */
        padding: 15px;
    }
    .promotion-title {
        font-size: 1.8em;
    }
    .promotion-text {
        font-size: 0.9em;
    }

    .partner-logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
    }
    .partner-logo {
        min-height: 70px;
    }
    .partner-logo img {
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .special-promotion-section {
        min-height: 300px;
        padding: 40px 0;
    }
    .promotion-title {
        font-size: 1.5em;
    }
    .promotion-text {
        font-size: 0.85em;
    }
    .btn-offers {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .section-title {
        font-size: 1.5em;
        margin-bottom: 25px;
    }
    .partner-logos-grid {
        grid-template-columns: repeat(
            2,
            1fr
        ); /* 2 columns on very small screens */
        gap: 10px;
    }
    .partner-logo {
        min-height: 60px;
    }

    .partner-log {
        min-height: 60px;
        background-color: #222;
    }
    .partner-logo img {
        max-height: 40px;
    }
}
.new-arrivals-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    border-radius: 8px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.section-header h2 {
    font-size: 1.8em;
    font-weight: 600;
    color: #333;
}

.view-all {
    text-decoration: none;
    color: #007bff;
    font-weight: 500;
    font-size: 1em;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: #0056b3;
}

.view-all .arrow-right {
    margin-left: 5px;
    font-weight: bold;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(
        auto-fill,
        minmax(250px, 1fr)
    ); /* Responsive grid */
    gap: 25px;
    justify-content: center;
}





/* Footer Styling */
.site-footer {
    background-color: #222; /* Dark background as in image */
    color: #bbb; /* Light grey text */
    padding: 50px 20px 20px;
    font-size: 0.95em;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(200px, 1fr)
    ); /* Responsive columns */
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #444; /* Separator line */
}

.footer-column {
    padding: 10px 0;
}

.footer-logo {
    font-weight: bold;
    font-size: 1.6em;
    color: #fff; /* White logo text */
    margin-bottom: 15px;
}

.about-us p {
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: #bbb;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #fff; /* White on hover */
}

.footer-column h3 {
    font-size: 1.2em;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #fff;
}

.contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact p .fas {
    margin-right: 10px;
    color: #ffaa00; /* Orange icon color */
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.85em;
    color: #888;
}