/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1e1e1e;
    line-height: 1.5;
    background: #fff;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
    font-weight: 300;
    letter-spacing: -0.02em;
}

.page-title {
    font-size: 3rem;
    font-weight: 300;
    margin: 4rem 0 2rem;
}

/* ========== BREADCRUMB ========== */
.breadcrumb-nav {
    background: #f9f9f9;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: inline;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #666;
    padding: 0 0.5rem;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #000;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #000;
    font-weight: 500;
}

.section-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

/* ========== HEADER - ОБНОВЛЕННАЯ ВЕРСИЯ ========== */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: background 0.3s ease;
}

.site-header:hover {
    background: rgba(0, 0, 0, 0.55);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: relative;
}

/* Логотип слева - белый */
.logo {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-decoration: none;
    color: white;
    flex-shrink: 0;
    transition: color 0.2s, text-shadow 0.2s;
    white-space: nowrap;
    margin-right: 3rem;
}

.logo:hover {
    color: #f0f0f0;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

/* Основное меню по центру */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-item {
    position: static;
}

.menu-item > a {
    text-decoration: none;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, color 0.2s, text-shadow 0.2s;
    display: inline-block;
}

.menu-item > a:hover,
.menu-item > a.active {
    border-bottom-color: white;
    color: white;
    text-shadow: 0 0 8px rgba(255,255,255,0.5);
}

/* ========== MEGAMENU - УЛУЧШЕННАЯ ВЕРСИЯ ========== */
.has-megamenu {
    position: static;
}

/* Создаем невидимый мост для плавного перехода */
.megamenu-bridge {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
    pointer-events: none;
    z-index: 999;
}

.has-megamenu:hover .megamenu-bridge {
    pointer-events: auto;
}

.megamenu {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 2rem;
    z-index: 1000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    gap: 2rem;
    justify-content: center;
    pointer-events: none;
}

/* Показываем мегаменю при наведении на пункт меню */
.has-megamenu:hover .megamenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Добавляем невидимую область сверху мегаменю для соединения с меню */
.megamenu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
    pointer-events: auto;
}

/* При наведении на мегаменю оно остается видимым */
.megamenu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.megamenu-column {
    flex: 0 1 200px;
}

.megamenu-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.5rem;
}

.megamenu-column ul {
    list-style: none;
    padding: 0;
}

.megamenu-column li {
    margin-bottom: 0.5rem;
}

.megamenu-column a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s, transform 0.2s;
    border-bottom: none !important;
    text-transform: none;
    font-weight: 400;
    display: inline-block;
}

.megamenu-column a:hover {
    color: white;
    transform: translateX(5px);
}

.megamenu-featured {
    flex: 0 1 250px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.megamenu-featured img {
    width: 100%;
    height: auto;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.megamenu-featured img:hover {
    transform: scale(1.05);
}

.megamenu-featured a {
    color: white;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
    text-transform: none;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.megamenu-featured a:hover {
    border-bottom-color: white;
}

/* Правая часть с иконками - белые */
.header-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.header-icons button {
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    transition: color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.header-icons button:hover {
    color: #f0f0f0;
    transform: scale(1.15);
}

.icon-language {
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 4px 12px !important;
}

.icon-language:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

/* Бургер-меню полностью скрыто на десктопе */
.menu-toggle {
    display: none !important;
}

/* ========== HERO ========== */
.hero-image {
    height: 80vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.hero-content {
    width: 100%;
    padding-bottom: 4rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

.hero-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: white;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    border-radius: 30px;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.hero-btn:hover {
    background: #000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ========== PRODUCT GRID ========== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.product-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin-bottom: 1rem;
    transition: opacity 0.2s, box-shadow 0.3s;
    border-radius: 8px;
}

.product-card:hover img {
    opacity: 0.95;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-card h3 {
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.price {
    color: #666;
}

/* ========== COLLECTIONS GRID ========== */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.collection-item {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
}

.collection-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-item:hover img {
    transform: scale(1.05);
}

.collection-item span {
    display: inline-block;
    margin-top: 1rem;
    font-size: 1.3rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.collection-item:hover span {
    border-bottom-color: #000;
}

/* ========== CATALOG PAGE ========== */
.catalog-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.filters {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-group h3 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.filter-group ul {
    list-style: none;
}

.filter-group li {
    margin-bottom: 0.5rem;
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
    transition: color 0.2s;
}

.filter-group label:hover {
    color: #000;
}

.filter-group input[type="checkbox"] {
    accent-color: #000;
}

.filter-btn {
    width: 100%;
    padding: 0.8rem;
    background: #000;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s, transform 0.2s;
    border-radius: 6px;
}

.filter-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

/* ========== PRODUCT PAGE ========== */
.product-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 4rem auto;
}

.product-gallery {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.main-image {
    border-radius: 12px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.main-image:hover img {
    transform: scale(1.02);
}

.thumbnails {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s, transform 0.2s;
    border-radius: 6px;
}

.thumbnails img:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.product-info {
    padding: 2rem 0;
}

.product-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.product-category {
    color: #999;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.8rem;
    margin: 1.5rem 0;
}

.product-description {
    margin-bottom: 2rem;
    color: #555;
}

.product-specs h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-specs ul {
    list-style: none;
    margin-bottom: 2rem;
}

.product-specs li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.product-specs li strong {
    width: 120px;
    display: inline-block;
    color: #000;
    font-weight: 500;
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    border-radius: 6px;
}

.btn-primary {
    background: #000;
    color: white;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-secondary {
    background: transparent;
    border: 1px solid #000;
    color: #000;
}

.btn-secondary:hover {
    background: #000;
    color: white;
    transform: translateY(-2px);
}

/* ========== ABOUT PAGE ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 4rem 0;
}

.about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-text p {
    color: #555;
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.values {
    margin: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.value h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.value p {
    color: #666;
}

/* ========== CONTACTS PAGE ========== */
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 4rem 0;
}

.contacts-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contacts-info p {
    color: #555;
    margin-bottom: 0.8rem;
}

.contacts-form input,
.contacts-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    font-family: inherit;
    border-radius: 6px;
    transition: border-color 0.2s;
}

.contacts-form input:focus,
.contacts-form textarea:focus {
    outline: none;
    border-color: #000;
}

.contacts-form button {
    width: 100%;
}

.map {
    margin: 4rem 0;
}

.map iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 12px;
}

/* ========== FOOTER ========== */
.site-footer {
    background: #f8f8f8;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo .logo {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: inline-block;
    color: #000;
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
    border-bottom: 1px solid #ccc;
}

.newsletter-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.5rem 0;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.newsletter-form button:hover {
    transform: translateX(5px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    text-decoration: none;
    color: #555;
    font-size: 0.9rem;
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
}

.footer-col a:hover {
    color: #000;
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    font-size: 0.85rem;
    color: #777;
}

.social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social a {
    color: #777;
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
}

.social a:hover {
    color: #000;
    background: #e0e0e0;
    transform: translateY(-3px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    .hero-title {
        font-size: 3rem;
    }
    .collections-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .megamenu {
        flex-wrap: wrap;
        padding: 1.5rem;
    }
    .megamenu-column {
        flex: 1 1 150px;
    }
    .megamenu-featured {
        flex: 1 1 200px;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 70px;
    }
    
    /* На мобильных показываем адаптивное меню */
    .main-nav {
        display: none;
    }
    
    .main-nav.active {
        display: block;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        padding: 1rem 0;
        backdrop-filter: blur(10px);
        z-index: 99;
    }
    
    .main-nav.active .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    /* Скрываем мегаменю на мобильных */
    .megamenu,
    .has-megamenu:hover .megamenu,
    .megamenu:hover,
    .has-megamenu .megamenu:hover {
        display: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    
    .logo {
        font-size: 1.2rem;
        margin-right: 1rem;
    }
    
    .header-icons {
        gap: 1rem;
    }
    
    .catalog-layout {
        grid-template-columns: 1fr;
    }
    
    .filters {
        position: static;
        order: 2;
    }
    
    .product-page {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-gallery {
        position: static;
    }
    
    .about-grid,
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .footer-links {
        grid-template-columns: 1fr;
    }
    .megamenu-column {
        flex: 1 1 100%;
    }
    .header-icons .icon-search,
    .header-icons .icon-favorites {
        display: none;
    }
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    color: #333;
    padding: 2rem;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.12);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid #e0e0e0;
    display: none;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    justify-content: space-between;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    margin: 0 0 0.8rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.5px;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    white-space: nowrap;
}

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 3px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
}

.btn-essential {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.btn-essential:hover {
    background: #efefef;
}

.btn-accept {
    background: #000;
    color: white;
}

.btn-accept:hover {
    background: #222;
}

.btn-info {
    background: transparent;
    color: #333;
    border: 1px solid #333;
}

.btn-info:hover {
    background: #000;
    color: white;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .cookie-buttons {
        justify-content: center;
    }
}

/* ========== ANIMATIONS ========== */
.product-item, .interior-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.product-item.animate-in, .interior-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.btn {
    transition: all 0.3s ease;
}

.btn-hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .product-item, .interior-item {
        transform: translateY(20px);
    }
}

/* ========== REVIEWS ========== */
.reviews-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.reviews-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.average-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.rating-stars {
    color: #ffd700;
    font-size: 1.2rem;
}

.rating-value {
    font-weight: 600;
    font-size: 1.1rem;
}

.reviews-count {
    color: #666;
}

.reviews-list {
    margin-bottom: 3rem;
}

.review-item {
    padding: 1.5rem;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.review-header strong {
    font-weight: 500;
}

.review-rating {
    color: #ffd700;
}

.review-date {
    color: #666;
    font-size: 0.9rem;
}

.review-comment {
    color: #333;
    line-height: 1.5;
}

.add-review {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

.add-review h3 {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ========== ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ========== */
/* Стили для выделения активного пункта меню */
.menu-item.active > a {
    border-bottom-color: white;
    color: white;
    text-shadow: 0 0 8px rgba(255,255,255,0.5);
}

/* Стили для плавного появления */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Стили для карточек товаров */
.product-card {
    position: relative;
    overflow: hidden;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.02));
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::after {
    opacity: 1;
}

/* Стили для кнопок */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.btn:active::after {
    width: 200px;
    height: 200px;
}

/* Стили для футера */
.footer-col a {
    position: relative;
}

.footer-col a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #000;
    transition: width 0.2s ease;
}

.footer-col a:hover::before {
    width: 100%;
}
