/* ===================================
   МЕБЕЛЬПРО - ОСНОВНЫЕ СТИЛИ
   =================================== */

/* CSS Variables */
:root {
    /* Цвета */
    --primary: #8B6F47;
    --primary-dark: #6B5437;
    --secondary: #2C5F2D;
    --accent: #D4A574;
    
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-600: #4B5563;
    --gray-900: #111827;
    --black: #000000;
    
    --success: #10B981;
    --error: #EF4444;
    
    /* Градиенты */
    --gradient-primary: linear-gradient(135deg, #8B6F47 0%, #6B5437 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    
    /* Типографика */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    --container-max: 1200px;
    
    /* Borders */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn--primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn--outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn--white {
    background: var(--white);
    color: var(--primary);
}

.btn--white:hover {
    background: var(--primary);
    color: var(--white);
}

.btn--large {
    padding: 1rem 2rem;
    font-size: var(--text-lg);
}

.btn--block {
    width: 100%;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-title {
    font-size: var(--text-4xl);
    color: var(--gray-900);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--gray-600);
}

/* ===================================
   HEADER
   =================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.header__logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary);
}

.header__nav {
    display: flex;
    gap: 1rem;
}

.nav-link {
    color: var(--gray-900);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header__phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
}

.header__burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    padding: 0.5rem;
}

.header__burger span {
    width: 24px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.mobile-menu.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu__nav a {
    padding: 1rem;
    border-radius: var(--border-radius-md);
    transition: background 0.3s ease;
}

.mobile-menu__nav a:hover {
    background: var(--gray-100);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-3xl) 0;
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
}

.hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.hero__title {
    font-size: var(--text-5xl);
    margin-bottom: var(--spacing-md);
}

.text-accent {
    color: var(--accent);
}

.hero__subtitle {
    font-size: var(--text-xl);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
}

/* Hero Form */
.hero__form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    max-width: 500px;
    margin: 0 auto var(--spacing-2xl);
}

.hero__form h3 {
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
}

.hero__form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero__form input,
.hero__form select {
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-md);
    font-size: var(--text-base);
}

.hero__form input:focus,
.hero__form select:focus {
    outline: none;
    border-color: var(--primary);
}

/* Trust Elements */
.hero__trust {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: var(--spacing-2xl);
}

.trust-item {
    text-align: center;
}

.trust-item__number {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--accent);
}

.trust-item__label {
    font-size: var(--text-sm);
    opacity: 0.9;
}

/* Scroll Down */
.hero__scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: var(--text-sm);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ===================================
   CATEGORIES SECTION
   =================================== */

.categories {
    padding: var(--spacing-3xl) 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.category-card--featured {
    min-height: 400px;
}

.category-card:not(.category-card--featured) {
    min-height: 300px;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.category-card__overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
}

.category-card__content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.category-card__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-card__title {
    font-size: var(--text-2xl);
    margin-bottom: 0.5rem;
}

.category-card__description {
    font-size: var(--text-sm);
    opacity: 0.9;
    margin-bottom: 1rem;
}

.category-card__price {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent);
}

.category-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
    font-size: var(--text-sm);
    font-weight: 600;
    z-index: 3;
}

/* ===================================
   PRODUCTS SECTION
   =================================== */

.products-section {
    padding: var(--spacing-3xl) 0;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-sm);
    margin-bottom: var(--spacing-md);
    color: var(--gray-600);
}

.breadcrumbs a {
    color: var(--primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-2xl);
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.product-card__image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--success);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
    font-size: var(--text-xs);
    font-weight: 600;
}

.product-card__content {
    padding: 1.5rem;
}

.product-card__title {
    font-size: var(--text-lg);
    margin-bottom: 1rem;
}

.product-card__price {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--primary);
    margin: 1rem 0;
}

/* ===================================
   ADVANTAGES SECTION
   =================================== */

.advantages {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.advantage-card__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.advantage-card h3 {
    font-size: var(--text-lg);
    margin-bottom: 0.5rem;
}

.advantage-card p {
    color: var(--gray-600);
    font-size: var(--text-sm);
}

/* ===================================
   HOW IT WORKS SECTION
   =================================== */

.how-it-works {
    padding: var(--spacing-3xl) 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: var(--spacing-2xl);
}

.step {
    position: relative;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.step__number {
    position: absolute;
    top: -1rem;
    left: 2rem;
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-lg);
}

.step__content {
    margin-top: 1rem;
}

.step__content h3 {
    font-size: var(--text-xl);
    margin-bottom: 0.5rem;
}

.step__content p {
    color: var(--gray-600);
}

/* CTA Block */
.cta-block {
    text-align: center;
    padding: 3rem;
    background: var(--gray-50);
    border-radius: var(--border-radius-lg);
    margin-top: var(--spacing-2xl);
}

.cta-block h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--spacing-md);
}
.need-consultation {
    /* margin-bottom: 128px; */
}

.need-consultation__wrapper {
    /* padding: 0 64px; */
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
}

.need-consultation__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F8F8F8;
    border-radius: 24px;
    padding: 40px 48px;
    position: relative;
}

.need-consultation__content {
    max-width: 520px;
}

.need-consultation__title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
}

.need-consultation__desc {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.5;
    color: #333;
}

.need-consultation__cta .btn--large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.need-consultation__confidential {
    margin-top: 16px;
    font-size: 14px;
    color: #757575;
    max-width: 420px;
}

.need-consultation__confidential a {
    color: inherit;
    text-decoration: underline;
}

.need-consultation__image {
    max-width: 380px;
    height: auto;
    flex-shrink: 0;
    border-radius: 20px;
    object-fit: cover;
}


/* ===================================
   REVIEWS SECTION
   =================================== */

.reviews {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.reviews-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.rating-stars {
    color: #FFC107;
    font-size: var(--text-2xl);
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
}

.review-card__header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-card__avatar {
    width: 50px;
    height: 50px;
    background: var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
}

.review-card__info h4 {
    margin-bottom: 0.25rem;
}

.review-card__meta {
    font-size: var(--text-sm);
    color: var(--gray-600);
    display: flex;
    gap: 0.5rem;
}

.review-card__rating {
    color: #FFC107;
    margin-top: 0.25rem;
}

.review-card__content {
    margin: 1rem 0;
    color: var(--gray-600);
}

.review-card__date {
    font-size: var(--text-xs);
    color: var(--gray-600);
    margin-top: 1rem;
}

/* ===================================
   CONTACTS SECTION
   =================================== */

.contacts {
    padding: var(--spacing-3xl) 0;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contacts-form {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
}

.contacts-form h3 {
    margin-bottom: 1rem;
}

.contacts-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.contacts-form input,
.contacts-form select,
.contacts-form textarea {
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-md);
    font-family: inherit;
}

.contacts-form input:focus,
.contacts-form select:focus,
.contacts-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-note {
    font-size: var(--text-xs);
    color: var(--gray-600);
    text-align: center;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-block {
    display: flex;
    gap: 1rem;
}

.contact-block__icon {
    font-size: 2rem;
}

.contact-block__content h4 {
    margin-bottom: 0.5rem;
}

.contact-block__content a {
    color: var(--primary);
    font-weight: 600;
}

.messenger-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.messenger-btn {
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--border-radius-md);
    font-size: var(--text-sm);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: var(--spacing-xl);
}

.footer-logo {
    font-family: var(--font-primary);
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column a {
    color: var(--gray-300);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--gray-600);
}

.footer-copyright {
    color: var(--gray-300);
    font-size: var(--text-sm);
}

/* ===================================
   FLOATING ELEMENTS
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: var(--text-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* Уведомления */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-xl);
    z-index: 10001;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification.success {
    border-left: 4px solid var(--success);
}
/* ===================================
   PORTFOLIO SECTION
   =================================== */
.portfolio-section {padding: 80px 0; background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%); overflow: hidden;}
.portfolio-row {display: flex; gap: 20px; margin-bottom: 20px; animation-timing-function: linear; animation-iteration-count: infinite; will-change: transform;}
.portfolio-row-left {animation: slideLeft 130s linear infinite;}
.portfolio-row-right {animation: slideRight 130s linear infinite;}
@keyframes slideLeft {from {transform: translateX(0);} to {transform: translateX(-50%);}}
@keyframes slideRight {from {transform: translateX(-50%);} to {transform: translateX(0);}}
.portfolio-item {min-width: 320px; height: 240px; border-radius: 12px; overflow: hidden; cursor: pointer; position: relative; transition: transform 0.3s ease; flex-shrink: 0;}
.portfolio-item:hover {transform: scale(1.05);}
.portfolio-item img {width: 100%; height: 100%; object-fit: cover;}
.portfolio-overlay {position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent); padding: 20px; opacity: 0; transition: opacity 0.3s ease;}
.portfolio-item:hover .portfolio-overlay {opacity: 1;}
.portfolio-overlay h4 {color: white; margin: 0; font-size: 16px; font-weight: 600;}
.portfolio-popup {display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.95); z-index: 10000; align-items: center; justify-content: center; padding: 20px;}
.portfolio-popup.active {display: flex;}
.portfolio-popup .popup-content {position: relative; max-width: 90%; max-height: 90%; background: white; border-radius: 12px; padding: 20px; text-align: center;}
.portfolio-popup img {max-width: 100%; max-height: 70vh; border-radius: 8px; object-fit: contain;}
.portfolio-popup h3 {margin-top: 15px; color: var(--text-dark); font-size: 20px;}
.popup-close {position: absolute; top: 20px; right: 20px; background: white; border: none; width: 40px; height: 40px; border-radius: 50%; font-size: 28px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text-dark); transition: all 0.3s ease; z-index: 10001;}
.popup-close:hover {background: var(--primary-color); color: white; transform: rotate(90deg);}

/* ===================================
   NEW ADVANTAGES
   =================================== */
.advantages-new {padding: 80px 0; background: linear-gradient(180deg, #ffffff 0%, #f9f5f1 100%);}
.stat-cards {display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 50px;}
.stat-card {background: white; padding: 30px; border-radius: 16px; text-align: center; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); transition: all 0.3s ease; border: 2px solid transparent;}
.stat-card:hover {transform: translateY(-5px); box-shadow: 0 8px 30px rgba(139, 90, 56, 0.15); border-color: var(--primary-color);}
.stat-number {font-size: 48px; font-weight: 800; color: var(--primary-color); margin-bottom: 10px; line-height: 1;}
.stat-label {font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 5px;}
.stat-desc {font-size: 13px; color: var(--text-secondary);}
.feature-line {width: 100%; height: 2px; background: linear-gradient(to right, transparent, var(--primary-color), transparent); margin: 50px 0;}
.feature-cards {display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;}
.feature-card {background: white; padding: 30px; border-radius: 12px; text-align: center; transition: all 0.3s ease; border: 1px solid #e8e8e8; display: flex; align-items: center; text-align: center; flex-direction: column;}
.feature-card:hover {transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); border-color: var(--primary-color);}
.feature-icon {width: 64px; height: 64px; background-image: url("../icons/icons.png"); background-repeat: no-repeat; background-size: 192px 128px; margin-bottom: 12px}
.feature-card h3 {font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px;}
.feature-card p {font-size: 15px; color: var(--text-secondary); line-height: 1.6; margin: 0;}

.icon-factory   { background-position:   0     0; }
.icon-fabrics   { background-position: -64px   0; }
.icon-size      { background-position: -128px  0; }
.icon-delivery  { background-position:   0   -64px; }
.icon-price     { background-position: -64px -64px; }
.icon-warranty  { background-position: -128px -64px; }

/* ===================================
   HOMEPAGE PRODUCTS
   =================================== */
.homepage-products {padding: 80px 0; background: white;}
.homepage-products .products-grid {display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 40px;}
.loading-placeholder {grid-column: 1 / -1; text-align: center; padding: 60px 20px; color: var(--text-secondary); font-size: 16px;}
.section-footer {text-align: center; margin-top: 40px;}
.product-card__characteristics {list-style: none; padding: 0; margin: 15px 0; font-size: 14px; color: var(--text-secondary);}
.product-card__characteristics li {margin-bottom: 8px; padding-left: 20px; position: relative;}
.product-card__characteristics li:before {content: "✓"; position: absolute; left: 0; color: var(--primary-color); font-weight: bold;}
.product-card__badge--discount {background: #e74c3c; color: white; padding: 8px 12px; border-radius: 6px; font-size: 14px; font-weight: 700;}
.price-new {font-size: 24px; font-weight: 700; color: var(--primary-color);}
.price-old {font-size: 18px; color: var(--text-secondary); text-decoration: line-through; margin-left: 10px;}
.no-products {grid-column: 1 / -1; text-align: center; padding: 40px; color: var(--text-secondary); font-size: 16px;}






