body {
    background: #fbfdf9;
    color: #102017;
    font-family: 'Segoe UI', sans-serif;
}

.custom-navbar {
    background: rgba(233, 249, 239, 0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(17, 70, 44, 0.12);
    padding: 16px 0;
}

.logo-text {
    color: #11462c !important;
    font-size: 26px;
    font-weight: 800;
}

.nav-link {
    color: #102017 !important;
    margin: 0 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

    .nav-link:hover,
    .nav-icon:hover {
        color: #1b5a38 !important;
    }

.nav-icon {
    color: #102017;
    font-size: 18px;
    cursor: pointer;
}

.hero-section {
    min-height: 78vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 34px 34px;
    box-shadow: 0 24px 60px rgba(17, 70, 44, 0.16);
    background: linear-gradient( 90deg, rgba(233, 249, 239, 0.92) 0%, rgba(233, 249, 239, 0.72) 45%, rgba(233, 249, 239, 0.22) 100% ), url('/images/fashion-banner.jpg');
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    text-align: left;
}

    .hero-content h1 {
        color: #102017;
        font-size: clamp(44px, 6vw, 72px);
        font-weight: 800;
        line-height: 1;
    }

    .hero-content p {
        max-width: 430px;
        margin-top: 22px;
        margin-bottom: 30px;
        color: #395044;
        font-size: 17px;
        line-height: 1.7;
    }

.shop-btn,
.product-btn,
.search-btn {
    background: #11462c;
    color: white;
    border: 1px solid #11462c;
    border-radius: 0;
    padding: 13px 28px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
}

    .shop-btn:hover,
    .product-btn:hover,
    .search-btn:hover {
        background: #1b5a38;
        color: white;
    }

.product-card,
.filter-box,
.crud-panel,
.crud-form,
.crud-card,
.details-content,
.empty-state {
    background: white;
    border: 1px solid rgba(17, 70, 44, 0.14);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(17, 70, 44, 0.1);
}

.product-card {
    overflow: hidden;
    transition: 0.35s ease;
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 26px 65px rgba(17, 70, 44, 0.18);
    }

.product-image-wrapper {
    overflow: hidden;
    background: #e9f9ef;
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.06);
}

.product-info {
    padding: 20px;
}

.product-title {
    color: #102017;
    font-size: 20px;
    font-weight: 800;
}

.product-price,
.product-category,
.section-kicker {
    color: #1b5a38;
    font-weight: 800;
}

.product-price {
    font-size: 18px;
    margin: 10px 0;
}

.product-category,
.section-kicker {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.crud-section {
    padding-top: 80px;
    padding-bottom: 50px;
}

.crud-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 35px;
}

    .crud-header h1,
    .crud-form h1,
    .details-content h1 {
        color: #102017;
        font-size: clamp(34px, 4vw, 48px);
        font-weight: 800;
    }

.crud-form {
    max-width: 760px;
    margin: 0 auto;
    padding: 32px;
}

.crud-card {
    height: 100%;
    padding: 24px;
}

.form-control,
.form-select,
.search-input {
    background: white;
    border: 1px solid rgba(17, 70, 44, 0.18);
    border-radius: 0;
    color: #102017;
    padding: 13px 14px;
}

    .form-control:focus,
    .form-select:focus,
    .search-input:focus {
        background: white;
        border-color: #1b5a38;
        box-shadow: 0 0 0 0.2rem rgba(27, 90, 56, 0.12);
        color: #102017;
    }

.filter-box {
    padding: 25px;
}

.empty-state {
    padding: 70px 20px;
    text-align: center;
}

.details-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    gap: 35px;
    align-items: center;
}

.details-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(17, 70, 44, 0.16);
}

.details-content {
    padding: 32px;
}

.footer-section {
    background: #11462c;
    color: white;
    padding: 60px 0;
}

.footer-logo {
    color: #c9f4d9;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.72);
}

.social-icons i {
    margin: 15px;
    font-size: 20px;
    cursor: pointer;
}

    .social-icons i:hover {
        color: #c9f4d9;
    }

.copyright {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.55);
}
.details-btn {
    display: inline-block;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: #11462c;
    border: 1px solid #11462c;
    background: transparent;
    transition: 0.3s ease;
}

    .details-btn:hover {
        background: #11462c;
        color: white;
    }

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 90px 0;
        border-radius: 0 0 24px 24px;
    }

    .hero-content h1 {
        font-size: 46px;
    }

    .crud-header,
    .details-layout {
        display: block;
    }

        .crud-header .shop-btn {
            display: inline-block;
            margin-top: 18px;
        }

    .details-content {
        margin-top: 20px;
    }
}

