:root {
    --primary-color: #ee731b;
    --dark-color: #040303;
    --accent-color: #f9d72d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Header */
.header {
    background-color: var(--dark-color);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header__top {
    background-color: #1a1a1a;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.header__logo img {
    height: 50px;
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav__link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav__link:hover,
.nav__link--active {
    color: var(--primary-color);
}

.header__search {
    position: relative;
    width: 300px;
}

.header__search input {
    width: 100%;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 25px;
    background-color: #2a2a2a;
    color: white;
}

.header__search input::placeholder {
    color: #999;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a1a1a 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://picsum.photos/800/600?random=bg') center/cover;
    opacity: 0.2;
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero__subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #ddd;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background-color: #d65e0f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(238, 115, 27, 0.4);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
}

.about__text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.about__features {
    margin-top: 2rem;
}

.feature__item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature__icon {
    color: var(--primary-color);
    font-size: 2rem;
    width: 50px;
}

/* Categories */
.categories {
    padding: 80px 0;
}

.category__card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    cursor: pointer;
}

.category__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(238, 115, 27, 0.2);
}

.category__icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category__title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

/* Products */
.products {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.product__card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.product__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product__image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product__content {
    padding: 1.5rem;
}

.product__category {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0.5rem 0;
    color: var(--dark-color);
}

.product__description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.product__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-order {
    background-color: var(--primary-color);
    color: white;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-order:hover {
    background-color: #d65e0f;
    transform: scale(1.05);
}

/* Partners */
.partners {
    padding: 80px 0;
}

.partner__logo {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
    filter: grayscale(100%);
}

.partner__logo:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.partner__logo img {
    max-width: 100%;
    max-height: 80px;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer__section {
    margin-bottom: 2rem;
}

.footer__title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer__list {
    list-style: none;
    padding: 0;
}

.footer__link {
    color: #ddd;
    text-decoration: none;
    display: block;
    padding: 0.3rem 0;
    transition: color 0.3s;
}

.footer__link:hover {
    color: var(--primary-color);
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.social__link {
    width: 40px;
    height: 40px;
    background-color: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}

.social__link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer__bottom {
    border-top: 1px solid #2a2a2a;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: #999;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 991px) {
    .nav__list {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .header__search {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }
}