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

body {
    font-family: 'Cairo', sans-serif;
    color: #1F2937;
    background-color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

header {
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    animation: fadeInDown 0.6s ease-out;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideInRight 0.7s ease-out;
}

.site-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1B5E3F 0%, #2D8659 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(27, 94, 63, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(27, 94, 63, 0.4);
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1B5E3F;
    letter-spacing: 0.5px;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #4B5563;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    animation: fadeInUp 0.8s ease-out backwards;
}

nav a:nth-child(1) { animation-delay: 0.1s; }
nav a:nth-child(2) { animation-delay: 0.2s; }
nav a:nth-child(3) { animation-delay: 0.3s; }
nav a:nth-child(4) { animation-delay: 0.4s; }
nav a:nth-child(5) { animation-delay: 0.5s; }

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #1B5E3F, #D4AF37);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #1B5E3F;
}

.hero {
    background: linear-gradient(135deg, #1B5E3F 0%, #2D8659 50%, #1B5E3F 100%);
    color: #FFFFFF;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out 0.4s backwards;
}

.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: #FFFFFF;
    color: #1B5E3F;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.features {
    padding: 4rem 2rem;
    background: #F8F9FA;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1B5E3F;
    animation: fadeInUp 0.8s ease-out;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: scaleIn 0.6s ease-out backwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(27, 94, 63, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1B5E3F 0%, #2D8659 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(27, 94, 63, 0.2);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(10deg);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1B5E3F;
}

.feature-card p {
    color: #6B7280;
    line-height: 1.6;
}

.categories {
    padding: 4rem 2rem;
    background: #FFFFFF;
}

.categories-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out backwards;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }

.category-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(27, 94, 63, 0.2);
}

.category-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #1B5E3F 0%, #2D8659 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 3rem;
    overflow: hidden;
    position: relative;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.category-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.category-card:hover .category-image::after {
    background: rgba(212, 175, 55, 0.2);
}

.bg-cat-cleaning { background-image: url('img/catigory.jpeg'); }
.bg-cat-freshener { background-image: url('img/freshener.jpg'); }
.bg-cat-laundry { background-image: url('img/home_cleaning.jpg'); }
.bg-cat-decoration { background-image: url('img/image10.webp'); }

.category-content {
    padding: 1.5rem;
}

.category-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1B5E3F;
}

.category-content p {
    color: #6B7280;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.category-link {
    color: #1B5E3F;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.category-link:hover {
    gap: 1rem;
    color: #D4AF37;
}

.best-sellers {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #F8F9FA 0%, #E8F5E9 100%);
}

.best-sellers .section-title {
    color: #1B5E3F;
}

.best-sellers-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
}

.products {
    padding: 4rem 2rem;
    background: #FFFFFF;
}

.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: scaleIn 0.5s ease-out backwards;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.3s; }
.product-card:nth-child(7) { animation-delay: 0.35s; }
.product-card:nth-child(8) { animation-delay: 0.4s; }

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(27, 94, 63, 0.15);
}

.product-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(27, 94, 63, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image::before {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #D4AF37;
    color: #1B5E3F;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    animation: pulse 2s ease-in-out infinite;
}

.product-info {
    padding: 1rem;
}

.product-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #1F2937;
    font-weight: 600;
}

.product-info p {
    font-size: 0.85rem;
    color: #6B7280;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.bg-bs-nivea { background-image: url('img/best-selling-products/nivea-1.jpg'); }
.bg-bs-image4 { background-image: url('img/best-selling-products/image-4.jpg'); }
.bg-bs-image5 { background-image: url('img/best-selling-products/image-5.jpg'); }
.bg-bs-image2 { background-image: url('img/best-selling-products/image-2.jpg'); }

.bg-prod-nivea { background-image: url('img/best-selling-products/nivea-1.jpg'); }
.bg-prod-image4 { background-image: url('img/best-selling-products/image-4.jpg'); }
.bg-prod-felce { background-image: url('img/best-selling-products/felce_azzurra.jpg'); }
.bg-prod-image2 { background-image: url('img/best-selling-products/image-2.jpg'); }
.bg-prod-chicco { background-image: url('img/best-selling-products/Chicco_baby_products.webp'); }
.bg-prod-chicco-moments { background-image: url('img/best-selling-products/chicco-baby-moments.jpg'); }
.bg-prod-wcnet { background-image: url('img/best-selling-products/wc-net.jpg'); }
.bg-prod-lorea { background-image: url('img/best-selling-products/lorea-paris.webp'); }

.about {
    padding: 4rem 2rem;
    background: #F8F9FA;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    animation: slideInLeft 0.8s ease-out;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1B5E3F;
}

.about-content p {
    font-size: 1rem;
    color: #4B5563;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #1B5E3F 0%, #2D8659 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    animation: slideInRight 0.8s ease-out;
    box-shadow: 0 10px 40px rgba(27, 94, 63, 0.2);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.bg-about { background-image: url('img/company.webp'); }

.contact {
    display: none;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1B5E3F 0%, #2D8659 100%);
    color: #FFFFFF;
    text-align: center;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.contact p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    animation: scaleIn 0.6s ease-out backwards;
}

.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }

.contact-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #D4AF37;
}

.contact-item p {
    margin: 0;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: #D4AF37;
    color: #1B5E3F;
    transform: translateY(-5px);
}

footer {
    background: #0F3D28;
    color: #FFFFFF;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #D4AF37;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #D4AF37;
    padding-right: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 250px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}
