/* v.1.0.3 ==================================================================
   HEADER
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 246, 240, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(160, 103, 48, 0.1);
    transition: all 0.4s ease;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--wood-700);
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--wood-400), var(--wood-600));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--wood-400);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--wood-600);
}

.nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-btn {
    position: relative;
    background: none;
    border: 2px solid var(--wood-200);
    border-radius: 12px;
    padding: 10px 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--wood-600);
    font-family: inherit;
    transition: all 0.3s ease;
}

.cart-btn:hover {
    border-color: var(--wood-400);
    background: var(--wood-50);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--wood-500);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--cream);
}

.cart-badge.bump {
    animation: bump 0.3s ease;
}

@keyframes bump {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px;
    color: var(--wood-700);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--wood-50) 0%, var(--cream) 40%, var(--wood-100) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(196, 136, 77, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 120px 32px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196, 136, 77, 0.12);
    color: var(--wood-600);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--wood-900);
    margin-bottom: 24px;
}

.hero h1 em {
    font-style: italic;
    color: var(--wood-500);
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--wood-400), var(--wood-600));
    color: white;
    border: none;
    padding: 16px 36px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(160, 103, 48, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(160, 103, 48, 0.35);
}

.btn-secondary {
    background: white;
    color: var(--wood-700);
    border: 2px solid var(--wood-200);
    padding: 16px 36px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    border-color: var(--wood-400);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    animation: heroFloat 8s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(0.5deg); }
}

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--gold-400), var(--wood-500));
    z-index: -1;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--wood-200);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--wood-600);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section {
    padding: 100px 32px;
}

.section-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--wood-500);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--wood-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   PHILOSOPHY
   ========================================================================== */
.philosophy {
    background: var(--wood-900);
    color: white;
    position: relative;
    overflow: hidden;
}

.philosophy::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.philosophy-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
}

.philosophy-text h2 em {
    font-style: italic;
    color: var(--gold-400);
}

.philosophy-text p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-bottom: 16px;
    line-height: 1.8;
}

.philosophy-quote {
    margin-top: 32px;
    padding: 24px 28px;
    border-left: 3px solid var(--gold-400);
    background: rgba(255,255,255,0.05);
    border-radius: 0 12px 12px 0;
}

.philosophy-quote p {
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 8px;
}

.philosophy-quote cite {
    font-style: normal;
    font-size: 0.85rem;
    color: var(--gold-400);
}

.philosophy-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.value-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.value-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 8px;
}

.value-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

/* ==========================================================================
   GALLERY / PRODUCTS
   ========================================================================== */
.gallery {
    background: var(--cream);
}

.gallery-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.gallery-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--wood-200);
    border-radius: 10px;
    background: white;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    border-color: var(--wood-400);
    color: var(--wood-600);
    background: var(--wood-50);
}

.gallery-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
    background: var(--wood-200);
    border-radius: 14px;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.toggle-switch.active {
    background: var(--wood-500);
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.toggle-switch.active::after {
    transform: translateX(24px);
}

.toggle-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

/* Карточка товара — единая высота */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(160, 103, 48, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-card.sold .product-image {
    filter: grayscale(60%) brightness(0.75) saturate(0.4);
    transition: filter 0.5s ease, transform 0.6s ease;
}

.product-card.sold {
    opacity: 0.55;
}

.product-card.sold:hover {
    opacity: 0.75;
}

.sold-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-card.sold .sold-overlay {
    opacity: 1;
}

.sold-stamp {
    background: rgba(26, 20, 16, 0.85);
    color: white;
    padding: 10px 28px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    transform: rotate(-8deg);
    border: 2px solid rgba(255,255,255,0.2);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.product-badge.exclusive {
    background: linear-gradient(135deg, var(--gold-400), var(--wood-500));
    color: white;
}

.product-badge.new {
    background: linear-gradient(135deg, #34d399, #059669);
    color: white;
}

/* Избранное — SVG иконка */
.product-wishlist {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.95);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: #999;
    padding: 0;
}

.product-wishlist:hover {
    transform: scale(1.15);
    background: white;
    color: #666;
}

.product-wishlist.active {
    background: #ffe4e6;
    color: #e11d48;
}

.product-wishlist.active:hover {
    background: #fecdd3;
}

.product-wishlist svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.2s;
}

.product-wishlist.active svg {
    fill: #e11d48;
    stroke: #e11d48;
}

/* Информация о товаре */
.product-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.75rem;
    color: var(--wood-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--wood-900);
    margin-bottom: 8px;
    cursor: pointer;
    transition: color 0.2s;
}

.product-name:hover {
    color: var(--wood-500);
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

/* Характеристики — цвет для ВСЕХ элементов включая цифры */
.product-details {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
}

.product-details *,
.product-detail,
.product-detail * {
    color: var(--text-light) !important;
}

.product-detail {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Подвал карточки — прижат к низу */
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--wood-100);
    margin-top: auto;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--wood-700);
}

.product-price-sold {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-unit {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, var(--wood-400), var(--wood-600));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.add-to-cart-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(160, 103, 48, 0.3);
}

.add-to-cart-btn:disabled {
    background: var(--wood-200);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.add-to-cart-btn.added {
    background: var(--wood-800);
}

/* ==========================================================================
   ORDER SECTION
   ========================================================================== */
.order-section {
    background: linear-gradient(135deg, var(--wood-50) 0%, var(--cream) 100%);
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.order-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--wood-900);
    margin-bottom: 20px;
    line-height: 1.3;
}

.order-info p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 16px;
    line-height: 1.8;
}

.order-steps {
    margin-top: 32px;
}

.order-step {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, var(--wood-400), var(--wood-600));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-content h4 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--wood-800);
    margin-bottom: 4px;
}

.step-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.order-form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--wood-900);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--wood-700);
    margin-bottom: 8px;
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--wood-200);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text);
    background: var(--wood-50);
    transition: all 0.3s ease;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: var(--wood-400);
    background: white;
    box-shadow: 0 0 0 4px rgba(196, 136, 77, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--wood-400), var(--wood-600));
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(160, 103, 48, 0.25);
    margin-top: 8px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(160, 103, 48, 0.35);
}

/* ==========================================================================
   CART SIDEBAR
   ========================================================================== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 20, 16, 0.5);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -480px;
    width: 460px;
    max-width: 100vw;
    height: 100vh;
    background: white;
    z-index: 201;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 24px 28px;
    border-bottom: 1px solid var(--wood-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--wood-800);
}

.cart-close {
    background: var(--wood-100);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s;
}

.cart-close:hover {
    background: var(--wood-200);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 28px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.cart-empty-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--wood-100);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.cart-item-image {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    object-fit: cover;
    background: var(--wood-100);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--wood-800);
}

.cart-item-price {
    font-size: 0.9rem;
    color: var(--wood-600);
    font-weight: 700;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid var(--wood-200);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.2s;
    color: var(--wood-600);
}

.qty-btn:hover {
    border-color: var(--wood-400);
    background: var(--wood-50);
}

.qty-value {
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 24px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 4px;
    transition: color 0.2s;
    align-self: flex-start;
}

.cart-item-remove:hover {
    color: #ef4444;
}

.cart-footer {
    padding: 24px 28px;
    border-top: 1px solid var(--wood-100);
    background: var(--wood-50);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--wood-900);
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--wood-400), var(--wood-700));
    color: white;
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(160, 103, 48, 0.3);
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(160, 103, 48, 0.4);
}

/* ==========================================================================
   PRODUCT MODAL
   ========================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 20, 16, 0.7);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: white;
    border-radius: 24px;
    max-width: 860px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.modal-overlay.open .modal {
    transform: scale(1) translateY(0);
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-image {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 24px 0 0 24px;
}

.modal-details {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.3rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s;
    z-index: 10;
}

.modal-close:hover {
    transform: scale(1.1);
}

.modal-category {
    font-size: 0.8rem;
    color: var(--wood-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.modal-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--wood-900);
    margin-bottom: 8px;
}

.modal-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.modal-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: var(--wood-50);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.modal-price-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.modal-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--wood-700);
}

.modal-price-old {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.modal-qty {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.modal-qty-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}

.modal-qty-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--wood-50);
    padding: 6px 12px;
    border-radius: 12px;
}

.modal-qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--wood-200);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.2s;
}

.modal-qty-btn:hover {
    border-color: var(--wood-400);
    color: var(--wood-600);
}

.modal-qty-value {
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 32px;
    text-align: center;
}

.modal-add-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--wood-400), var(--wood-600));
    color: white;
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(160, 103, 48, 0.3);
    margin-top: auto;
}

.modal-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(160, 103, 48, 0.4);
}

.modal-add-btn:disabled {
    background: var(--wood-200);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--wood-900);
    color: white;
    padding: 80px 32px 32px;
}

.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--wood-400), var(--wood-600));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.footer-logo-text {
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-desc {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-heading {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold-400);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
}

/* ==========================================================================
   TOAST
   ========================================================================== */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--wood-800);
    color: white;
    padding: 16px 24px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    z-index: 400;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-xl);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    font-size: 1.3rem;
}

/* ==========================================================================
   SCROLL ANIMATIONS
   ========================================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-image {
        max-width: 400px;
    }
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .order-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .modal-content {
        grid-template-columns: 1fr;
    }
    .modal-image {
        min-height: 250px;
        border-radius: 24px 24px 0 0;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero h1 {
        font-size: 2.4rem;
    }
    .section {
        padding: 60px 20px;
    }
    .section-title {
        font-size: 2rem;
    }
    .products-grid {
        grid-template-columns: 1fr;
/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--wood-900);
    color: white;
    padding: 20px 32px;
    z-index: 500;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transition: transform 0.4s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
    pointer-events: none;
}

.cookie-banner-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.cookie-text a {
    color: var(--gold-400);
    text-decoration: underline;
}

.cookie-btn {
    background: linear-gradient(135deg, var(--wood-400), var(--wood-600));
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(160, 103, 48, 0.3);
}

@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }
    .cookie-btn {
        width: 100%;
    }
}
		