* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e2f;
    background-color: #f9faf5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Навигация */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.95);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a7c59;
}

.brand-icon {
    font-size: 1.8rem;
    margin-right: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2c3e2f;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: #4a7c59;
}

/* Hero секция */
.hero {
    min-height: 85vh;
    background: linear-gradient(135deg, #e8f3e8 0%, #d4e8d4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "🐕🐈🐾";
    font-size: 200px;
    opacity: 0.1;
    position: absolute;
    bottom: -50px;
    right: -50px;
}

.hero-content {
    max-width: 700px;
    background: rgba(255,255,255,0.9);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c5e2e;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a6e4b;
}

.cta-button {
    background: #4a7c59;
    color: white;
    border: none;
    padding: 14px 36px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.cta-button:hover {
    background: #3a6347;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74,124,89,0.3);
}

/* Категории */
.categories-section {
    padding: 60px 0 40px;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.category-card {
    text-align: center;
    padding: 1.5rem;
    background: #f9faf5;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-5px);
    background: #e8f3e8;
    border-color: #4a7c59;
}

.category-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.category-card h3 {
    font-size: 1rem;
    color: #2c3e2f;
}

/* Товары */
.products-section {
    padding: 60px 0;
    background: #f9faf5;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5e2e;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f5f5f0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #2c5e2e;
    font-weight: 600;
}

.product-description {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #4a7c59;
    margin-bottom: 1rem;
}

.add-to-cart-btn {
    width: 100%;
    background: #4a7c59;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
}

.add-to-cart-btn:hover {
    background: #3a6347;
    transform: scale(1.02);
}

/* О магазине */
.about-section {
    background: linear-gradient(135deg, #e8f3e8, #d4e8d4);
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1rem;
    color: #2c3e2f;
    line-height: 1.7;
}

.features-list {
    list-style: none;
    margin-top: 1rem;
}

.features-list li {
    margin-bottom: 0.8rem;
    color: #3a6347;
    font-weight: 500;
}

.about-stats {
    display: grid;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4a7c59;
}

.stat-label {
    color: #666;
    margin-top: 0.5rem;
}

/* Преимущества */
.advantages-section {
    padding: 80px 0;
    background: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-card {
    text-align: center;
    padding: 2rem;
    background: #f9faf5;
    border-radius: 16px;
    transition: all 0.3s;
}

.advantage-card:hover {
    transform: translateY(-5px);
    background: #e8f3e8;
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.advantage-card h3 {
    margin-bottom: 0.5rem;
    color: #2c5e2e;
}

.advantage-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Футер */
.footer {
    background: #2c3e2f;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title, .footer-subtitle {
    margin-bottom: 1rem;
    color: #d4e8d4;
}

.social-links a {
    display: inline-block;
    margin-right: 1rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #d4e8d4;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Корзина */
.cart-floating-btn {
    position: fixed;
    right: 30px;
    top: 30%;
    transform: translateY(-50%);
    background: #4a7c59;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s;
    z-index: 1000;
    font-size: 1.5rem;
}

.cart-floating-btn:hover {
    background: #3a6347;
    transform: translateY(-50%) scale(1.05);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e67e22;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
    justify-content: center;
    align-items: center;
}

.cart-modal.active {
    display: flex;
}

.cart-modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: #4a7c59;
    font-weight: bold;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quantity-btn {
    background: #f0f0f0;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.quantity-btn:hover {
    background: #e0e0e0;
}

.remove-item {
    background: none;
    border: none;
    color: #e67e22;
    cursor: pointer;
    font-size: 1.2rem;
}

.cart-total {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: right;
    color: #4a7c59;
}

.cart-buttons {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.5rem;
}

.clear-cart-btn, .checkout-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
}

.clear-cart-btn {
    background: #f0f0f0;
    color: #666;
}

.checkout-btn {
    background: #4a