:root {
    --main-color: #ff6b4a;
    --secondary-color: #4a4a4a;
    --bg-light: #fff9f5;
    --text-dark: #333;
    --text-light: #666;
    --white: #fff;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}
body {
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--main-color), #ff8c5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    transition: transform 0.3s;
}
.logo:hover {
    transform: scale(1.05);
}
.main-nav {
    flex-grow: 1;
    margin-left: 40px;
}
.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}
.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 5px;
    transition: var(--transition);
}
.nav-link:hover,
.nav-link.active {
    color: var(--main-color);
    background: rgba(255,107,74,0.1);
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}
.burger-line {
    width: 100%;
    height: 3px;
    background: var(--main-color);
    border-radius: 3px;
    transition: var(--transition);
}
.burger-btn.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}
.burger-btn.active .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-btn.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}
.btn-primary {
    background: var(--main-color);
    color: white;
    box-shadow: 0 4px 15px rgba(255,107,74,0.3);
}
.btn-primary:hover {
    background: #ff8c5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,74,0.4);
}
.btn-secondary {
    background: transparent;
    color: var(--main-color);
    border: 2px solid var(--main-color);
}
.btn-secondary:hover {
    background: var(--main-color);
    color: white;
}
.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}
.section-title {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--main-color);
    margin: 10px auto 0;
}
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light), #ffe4d9);
    text-align: center;
}
.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 30px;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}
.about-image {
    text-align: center;
}

.profile-photo {
    width: 300px;  
    height: 300px;         
    border-radius: 50%;   
    object-fit: cover;    
    border: 5px solid var(--main-color);
    box-shadow: var(--shadow);
}
.about-name {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.about-role {
    font-size: 1.3rem;
    color: var(--main-color);
    margin-bottom: 20px;
}
.about-bio p {
    margin-bottom: 15px;
    color: var(--text-light);
}
.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}
.feature-icon {
    font-size: 1.5rem;
}
.products-grid,
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    padding-bottom: 20px;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.product-image {
    height: 250px;
    overflow: hidden;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.product-card:hover .product-image img {
    transform: scale(1.1);
}
.product-card h3 {
    padding: 20px 15px 10px;
    font-size: 1.3rem;
}
.product-price {
    color: var(--main-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.text-center {
    text-align: center;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.review-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--main-color);
}
.review-rating {
    color: #ffc107;
    font-size: 1.2rem;
}
.review-text {
    font-style: italic;
    color: var(--text-light);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}
.benefit-item {
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
}
.benefit-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}
.benefit-item h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}
.benefit-item p {
    color: var(--text-light);
}
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 0 20px;
    margin-top: 60px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo {
    width: 40px;
    height: 40px;
    background: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.footer-col h4 {
    margin-bottom: 15px;
    color: var(--main-color);
}
.footer-col ul {
    list-style: none;
}
.footer-col li {
    margin-bottom: 10px;
}
.footer-col a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-col a:hover {
    color: var(--main-color);
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}
@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        box-shadow: var(--shadow);
        margin: 0;
    }
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
    }
    .nav-list {
        flex-direction: column;
        gap: 15px;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .hero-buttons .btn {
        width: 100%;
    }
    .section-title {
        font-size: 1.8rem;
    }
}