* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B7355;
    --primary-dark: #6d5c46;
    --secondary-color: #333;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f8f8;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Palatino', 'Georgia', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

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

.logo a {
    text-decoration: none;
    color: var(--text-dark);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

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

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

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

.cart-btn {
    position: relative;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
    min-height: 44px;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

.btn-secondary {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-dark);
}

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

.btn-header {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-header:hover {
    background: var(--text-dark);
    color: var(--white);
}

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

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

.btn-small {
    padding: 8px 16px;
    font-size: 0.8rem;
    min-height: 36px;
}

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./images/hero.jpg') center/cover no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 30px;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0px);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
    text-align: center;
}

.hero-title .brand-name {
    display: block;
    font-size: 3.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.hero-title .brand-subtitle {
    display: block;
    font-size: 1.8rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--primary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 500;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--text-dark);
    border-bottom: 2px solid var(--text-dark);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(-10px);
    }
    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}

.main-content {
    margin-top: 0;
}

section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.about-content {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.about-content ul {
    text-align: left;
    margin: 30px 0;
    padding-left: 20px;
}

.about-content li {
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    padding-left: 0.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 280px;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.feature-item h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}

.feature-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.shop-preview {
    padding: 80px 0;
    background: var(--bg-light);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.shop-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.shop-card:hover {
    transform: translateY(-5px);
}

.shop-card-image {
    height: 200px;
    background: linear-gradient(135deg, #f8f4f0 0%, #e8e0d8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 3rem;
}

.shop-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.shop-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.3rem;
    line-height: 1.4;
    text-align: left;
}

.shop-card p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    text-align: left;
    flex-grow: 1;
}

.shop-card .price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 0;
    text-align: left;
}

.shop-mini-preview {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.random-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.random-product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.random-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.random-product-image {
    height: 200px;
    background: linear-gradient(135deg, #f8f4f0 0%, #e8e0d8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.random-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.random-product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1;
}

.random-product-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.random-product-category {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
}

.random-product-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.4;
    text-align: left;
}

.random-product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: left;
}

.random-product-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.random-product-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
    text-align: left;
}

.random-product-features li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.random-product-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-start;
}

.mini-preview-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    align-items: center;
}

.preview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.stat-item {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

.product-gallery {
    margin-top: 60px;
    position: relative;
}

.gallery-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 10;
}

.gallery-nav {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.gallery-nav:hover {
    background: var(--white);
    transform: scale(1.1);
}

.gallery-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-slide {
    display: none;
    transition: opacity 0.5s ease;
}

.gallery-slide.active {
    display: block;
}

.gallery-item {
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    color: var(--text-light);
    font-size: 16px;
    text-align: center;
    line-height: 1.6;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.gallery-dot.active {
    background: var(--primary-color);
}

.all-colors-btn-container {
    text-align: center;
    margin-top: 40px;
}

.btn-all-colors {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    padding: 15px 30px;
}

.btn-all-colors:hover {
    background: var(--text-dark);
    color: var(--white);
}

.catalog-cta {
    text-align: center;
}

.luxury-catalog-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 60px 40px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.luxury-catalog-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 1.4;
    text-align: center;
}

.divider-gold {
    width: 100px;
    height: 2px;
    background: gold;
    margin: 20px auto;
}

.luxury-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}

.btn-luxury-catalog {
    background: var(--white);
    color: var(--primary-color);
    padding: 15px 30px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-luxury-catalog:hover {
    background: #f0f0f0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.4;
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 20px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 0 20px 0;
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin: 40px 0;
}

.main-footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 20px;
    color: #f8f8f8;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    text-align: left;
}

.footer-section p {
    line-height: 1.6;
    text-align: left;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
    text-align: left;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    align-items: center;
    justify-content: flex-start;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 14px;
    line-height: 1.4;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 4px;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    line-height: 1;
    text-align: left;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-top: 2px;
    line-height: 1.2;
    text-align: left;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.recommended-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.recommended-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.recommended-actions {
    text-align: center;
}

.random-product-image .no-image,
.product-image .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f4f0 0%, #e8e0d8 100%);
    color: var(--primary-color);
    font-size: 1rem;
    text-align: center;
    padding: 1rem;
}

.random-product-image .no-image i,
.product-image .no-image i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.random-product-image .no-image p,
.product-image .no-image p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-light);
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.4;
    text-align: left;
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
    text-align: left;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: auto;
    text-align: left;
}

.product-actions {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image:hover .product-actions {
    opacity: 1;
}

.empty-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

.empty-products i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ddd;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
        padding: 1rem 0;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title .brand-name {
        font-size: 2.8rem;
    }
    
    .hero-title .brand-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-background {
        background: url('./images/hero.jpg') center/cover no-repeat;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-item {
        min-height: 250px;
        padding: 25px 15px;
    }
    
    .gallery-controls {
        padding: 0 10px;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
    }
    
    .gallery-item {
        height: 300px;
    }
    
    .luxury-catalog-box {
        padding: 40px 20px;
    }
    
    .luxury-catalog-box h3 {
        font-size: 22px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .shop-grid {
        grid-template-columns: 1fr;
    }
    
    .random-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .mini-preview-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .preview-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 15px 0;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .recommended-products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 10px 20px;
        font-size: 12px;
        min-height: 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title .brand-name {
        font-size: 2.2rem;
    }
    
    .hero-title .brand-subtitle {
        font-size: 1.2rem;
        padding-top: 0.8rem;
    }
    
    .random-products-grid {
        grid-template-columns: 1fr;
    }
    
    .preview-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-background {
        background: url('./images/hero.jpg') center/cover no-repeat;
    }
    
    .logo-container {
        gap: 10px;
    }
    
    .logo-image {
        width: 35px;
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-subtitle {
        font-size: 0.6rem;
    }
    
    .about-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: left;
    }
    
    .about-features {
        gap: 20px;
    }
    
    .feature-item {
        padding: 20px 15px;
        min-height: 220px;
    }
    
    .feature-item h3 {
        font-size: 1.2rem;
    }
    
    .hero-content {
        padding: 25px 15px;
        margin: 0 10px;
    }
    
    .recommended-products-grid {
        grid-template-columns: 1fr;
    }
}

h1, h2, h3, h4, h5, h6, p, span, a, li, button, input, textarea {
    line-height: 1.4;
}

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

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

.text-right {
    text-align: right;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-start {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }

.shop-card-image {
    height: 200px;
    background: linear-gradient(135deg, #f8f4f0 0%, #e8e0d8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    margin: 10px;
}

.shop-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Если изображение отсутствует, показываем иконку */
.shop-card-image:not(:has(img)) {
    color: var(--primary-color);
    font-size: 3rem;
}

/* Убираем старые стили корзины */
.cart-btn,
.cart-count,
.cart-sidebar,
.cart-header,
.cart-items,
.cart-footer,
.cart-total,
.btn-checkout,
.cart-close {
    display: none !important;
}

/* Обновляем header-actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .shop-card-image {
        height: 180px;
        margin: 8px;
    }
}

@media (max-width: 480px) {
    .shop-card-image {
        height: 150px;
        margin: 5px;
    }
}

/* Для динамической загрузки фона */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: background-image 0.5s ease;
}

/* Фолбэк если фон не загрузился */
.hero-background:not([style*="background-image"]) {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: row !important; /* Главное меню в ряд, а не колонку */
        justify-content: space-between !important;
        padding: 0.5rem 0 !important;
    }
    
    .logo-container {
        order: 1;
    }
    
    .menu-toggle {
        order: 2;
        display: flex !important; /* Убедитесь, что бургер виден */
        margin-left: auto;
    }
    
    .header-actions .btn-telegram {
        display: none; /* Скрыть Telegram кнопку на мобильном в шапке */
    }
    
    /* Мобильное меню - полноэкранное */
    .main-nav.active {
        display: block;
        position: fixed;
        top: 70px; /* Высота шапки */
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        z-index: 999;
        padding: 2rem;
        overflow-y: auto;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .main-nav.active ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .main-nav.active a {
        font-size: 1.2rem;
        padding: 0.8rem 0;
        display: block;
        width: 100%;
    }
    
    /* Анимация бургер-кнопки */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.2rem !important;
    }
    
    .logo-image {
        width: 30px !important;
        height: 30px !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 70vh !important;
        min-height: 500px !important;
        margin-top: 60px !important;
    }
    
    .hero-content {
        padding: 20px 15px !important;
        margin: 0 10px !important;
        backdrop-filter: blur(5px) !important;
        background: rgba(255, 255, 255, 0.85) !important;
    }
    
    .hero-title .brand-name {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-title .brand-subtitle {
        font-size: 1.1rem !important;
        line-height: 1.4 !important;
        margin-top: 0.5rem !important;
        padding-top: 0.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        width: 100% !important;
    }
    
    .hero-buttons .btn {
        width: 100% !important;
        margin-bottom: 10px !important;
        justify-content: center !important;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 60vh !important;
        min-height: 400px !important;
    }
    
    .hero-title .brand-name {
        font-size: 1.8rem !important;
    }
    
    .hero-title .brand-subtitle {
        font-size: 1rem !important;
    }
}

@media (max-width: 768px) {
    .shop-grid, 
    .random-products-grid,
    .recommended-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
        gap: 1.5rem !important;
    }
    
    .about-features {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .feature-item {
        min-height: auto !important;
        padding: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .shop-grid,
    .random-products-grid,
    .recommended-products-grid,
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .shop-card, 
    .random-product-card,
    .product-card {
        margin-bottom: 1rem;
    }
    
    .shop-card-image,
    .random-product-image,
    .product-image {
        height: 180px !important;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 40px 0 20px !important;
        margin-top: 40px !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section ul li {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-section h3, 
    .footer-section h4,
    .footer-section p {
        text-align: center !important;
    }
}

.featured-product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.featured-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.featured-product-card .product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #f5f5f5;
}

.featured-product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.featured-product-card .product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1;
}

.featured-product-card .product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.featured-product-card .product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.featured-product-card .product-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.featured-product-card .product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: auto;
    margin-bottom: 1rem;
}

.featured-product-card .product-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.featured-product-card .btn-outline {
    flex-grow: 1;
}

.featured-product-card .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f4f0 0%, #e8e0d8 100%);
    color: var(--primary-color);
}

.featured-product-card .image-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.loading-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.loading-products i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.loading-products p {
    font-size: 1.1rem;
}

.page-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.page-slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

/* Анимация для кнопок */
.btn-float-in {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-float-in.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Анимация при нажатии кнопок */
.btn-click-animation {
    animation: btnClick 0.3s ease;
}

@keyframes btnClick {
    0% { transform: scale(1); }
    50% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.logo-hover {
    transform: scale(1.05) rotate(-2deg);
    transition: transform 0.3s ease;
}

/* Анимация индикатора прокрутки */
.bounce-in {
    opacity: 0;
    transform: translateY(20px);
    animation: bounceIn 1s ease forwards;
    animation-delay: 1s;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px);
    }
    80% {
        transform: translateY(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Анимации при прокрутке */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Анимация карточек товаров */
.product-animate-in {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: productSlideIn 0.6s ease forwards;
}

@keyframes productSlideIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.card-pop {
    animation: cardPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes cardPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Анимация заголовков */
.title-underline {
    position: relative;
}

.title-underline::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    animation: titleUnderline 0.8s ease forwards;
    animation-delay: 0.3s;
}

@keyframes titleUnderline {
    to {
        width: 100px;
    }
}

/* Анимация мобильного меню */
.menu-slide-in {
    animation: menuSlideIn 0.3s ease;
}

.menu-slide-out {
    animation: menuSlideOut 0.3s ease;
}

@keyframes menuSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes menuSlideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Анимация фона */
.bg-fade-in {
    animation: bgFadeIn 1.5s ease;
}

@keyframes bgFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Анимация ссылок при клике */
.link-click-animation {
    animation: linkClick 0.3s ease;
}

@keyframes linkClick {
    0% { transform: scale(1); }
    50% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

/* Анимация FAQ */
.faq-expand {
    animation: faqExpand 0.3s ease;
}

@keyframes faqExpand {
    from {
        max-height: 0;
        opacity: 0;
    }
    to {
        max-height: 500px;
        opacity: 1;
    }
}

/* Плавное появление всего сайта */
body {
    animation: siteFadeIn 0.8s ease;
}

@keyframes siteFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Медиа-запросы для анимаций */
@media (prefers-reduced-motion: reduce) {
    .page-fade-in,
    .page-slide-up,
    .btn-float-in,
    .scroll-animate,
    .product-animate-in,
    .card-pop,
    .title-underline::after,
    .menu-slide-in,
    .menu-slide-out,
    .bg-fade-in,
    .link-click-animation,
    .faq-expand,
    body,
    .btn-click-animation,
    .bounce-in {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

.faq-checkbox {
    display: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.4;
    border-bottom: 1px solid var(--border-color);
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    color: var(--primary-color);
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-toggle .fa-plus {
    display: block;
}

.faq-toggle .fa-minus {
    display: none;
}

.faq-checkbox:checked + .faq-question .fa-plus {
    display: none;
}

.faq-checkbox:checked + .faq-question .fa-minus {
    display: block;
}

.faq-checkbox:checked + .faq-question .faq-toggle {
    transform: rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-checkbox:checked ~ .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 0 20px 0;
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

/* Для мобильных устройств */
@media (max-width: 768px) {
    .faq-question {
        font-size: 16px;
        padding: 15px 0;
    }
}

/* НОВЫЕ СТИЛИ ДЛЯ МОБИЛЬНОГО МЕНЮ (Добавлены в конец) */

@media (max-width: 768px) {
    /* Скрыть бургер-кнопку */
    .menu-toggle {
        display: none !important;
    }
    
    /* Показать навигацию всегда */
    .main-nav {
        display: block !important;
        width: 100%;
        order: 3; /* Поместить меню под логотипом и кнопками */
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid var(--border-color);
    }
    
    .main-nav ul {
        display: flex !important;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin: 0;
        padding: 0;
        width: 100%;
        overflow-x: auto; /* Горизонтальная прокрутка если не помещается */
        -webkit-overflow-scrolling: touch;
        padding-bottom: 5px;
    }
    
    .main-nav li {
        flex-shrink: 0; /* Не сжимать элементы */
    }
    
    .main-nav a {
        padding: 8px 12px;
        font-size: 14px;
        white-space: nowrap;
    }
    
    /* Адаптация шапки для мобильного меню */
    .header-content {
        flex-direction: column;
        align-items: stretch;
        padding: 0.8rem 0;
    }
    
    .logo-container {
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .header-actions {
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .header-actions .btn-telegram {
        display: inline-flex !important; /* Показать кнопку Telegram в мобильном меню */
    }
    
    /* Улучшения для мобильного меню */
    /* Убедиться, что меню всегда видно и прокручивается горизонтально */
    .main-nav::-webkit-scrollbar {
        height: 4px;
    }
    
    .main-nav::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 2px;
    }
    
    .main-nav::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 2px;
    }
    
    /* Подсветка активной ссылки */
    .main-nav a.active {
        background: var(--primary-color);
        color: white !important;
        border-radius: 5px;
    }
    
    .main-nav a.active::after {
        display: none; /* Скрыть подчеркивание для активной ссылки */
    }
}

@media (max-width: 480px) {
    .main-nav ul {
        gap: 10px;
        justify-content: space-around;
    }
    
    .main-nav a {
        font-size: 13px;
        padding: 6px 8px;
    }
    
    /* Уменьшение отступов для очень маленьких экранов */
    .main-nav {
        margin-top: 10px;
        padding-top: 10px;
    }
}

/* Для очень маленьких экранов - уменьшить шапку */
@media (max-width: 360px) {
    .main-nav a {
        font-size: 12px;
        padding: 5px 6px;
    }
    
    .header-actions .btn-telegram {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .logo-text {
        font-size: 1.2rem !important;
    }
}