/* Color Scheme Variables */

:root {
    --primary-color: #731004;
    --primary-light: #9b382c;
    --primary-dark: #370000;
    --secondary-color: #8914ed;
    --accent-color: #a732ff;
    --success-color: #09963d;
    --warning-color: #ffb01d;
    --error-color: #db3030;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --border-color: #e5e7eb;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--bg-primary);
}

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

.feature-card {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: var(--bg-primary);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white !important;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

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

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Header Styles */

.header-minimal {
    background: white;
    padding: 1.5rem 0;
    border-bottom: 2px solid var(--border-color);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-minimal {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.nav-minimal {
    display: flex;
    gap: 2.5rem;
}

.nav-minimal a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.phone-minimal {
    color: var(--text-secondary);
    font-weight: 500;
}

.cart-minimal {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.cart-minimal:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Styles */

.hero-parallax {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: var(--bg-primary);
}

.parallax-layer {
    position: absolute;
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
}

.layer-1 {
    background: linear-gradient(45deg, var(--primary-color), transparent);
    opacity: 0.05;
    animation: drift 20s infinite;
}

.layer-2 {
    background: linear-gradient(-45deg, var(--secondary-color), transparent);
    opacity: 0.05;
    animation: drift 25s infinite reverse;
}

.layer-3 {
    background: radial-gradient(circle at center, var(--accent-color), transparent);
    opacity: 0.03;
    animation: drift 30s infinite;
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(1deg); }
    66% { transform: translate(-20px, 20px) rotate(-1deg); }
}

.hero-parallax-content {
    position: relative;
    z-index: 1;
    padding: 6rem 0;
}

.hero-parallax-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-parallax-box {
    max-width: 700px;
}

.hero-parallax-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.line-1 {
    display: block;
    color: var(--text-primary);
}

.line-2 {
    display: block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-parallax-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-parallax-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    color: var(--success-color);
    font-weight: 600;
}

.hero-parallax-buttons {
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    .hero-parallax-title {
        font-size: 2.5rem;
    }
    
    .hero-parallax-features {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Footer Styles */

.footer-minimal {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    margin-top: 5rem;
}

.footer-minimal-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-minimal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-minimal-left {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.footer-minimal-center a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.footer-minimal-center span {
    color: var(--border-color);
}

.footer-minimal-right {
    color: var(--text-secondary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .footer-minimal-container {
        flex-direction: column;
        text-align: center;
    }
}

/* Card Styles */

.card-badge {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.card-badge:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.badge-wrapper {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}

.discount-badge {
    background: var(--error-color);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
}

.new-badge {
    background: var(--success-color);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
}

a.card-badge-image,
.card-badge-image {
    display: block;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--bg-secondary);
    text-decoration: none;
}

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

.card-badge:hover .card-badge-image img {
    transform: scale(1.08);
}

.card-badge-content {
    padding: 1.5rem;
}

.product-category {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0.5rem 0;
    color: var(--text-primary);
}

.product-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: var(--primary-color);
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.current-price {
    color: var(--error-color);
    font-size: 1.5rem;
    font-weight: 800;
}

.add-button {
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* Button Styles */

/* Base button styles */
.btn {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    border-radius: 8px;
}

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

.btn-primary:hover, .btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

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

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

.add-to-cart, .product-btn, .cart-button {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover, .product-btn:hover, .cart-button:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-outline.btn-white {
    border-color: white;
    color: white;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
}/* Color Scheme Variables */

:root {
    --primary-color: #731004;
    --primary-light: #9b382c;
    --primary-dark: #370000;
    --secondary-color: #8914ed;
    --accent-color: #a732ff;
    --success-color: #09963d;
    --warning-color: #ffb01d;
    --error-color: #db3030;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --border-color: #e5e7eb;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--bg-primary);
}

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

.feature-card {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: var(--bg-primary);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white !important;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

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

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Header Styles */

.header-minimal {
    background: white;
    padding: 1.5rem 0;
    border-bottom: 2px solid var(--border-color);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-minimal {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.nav-minimal {
    display: flex;
    gap: 2.5rem;
}

.nav-minimal a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.phone-minimal {
    color: var(--text-secondary);
    font-weight: 500;
}

.cart-minimal {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.cart-minimal:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Styles */

.hero-parallax {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: var(--bg-primary);
}

.parallax-layer {
    position: absolute;
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
}

.layer-1 {
    background: linear-gradient(45deg, var(--primary-color), transparent);
    opacity: 0.05;
    animation: drift 20s infinite;
}

.layer-2 {
    background: linear-gradient(-45deg, var(--secondary-color), transparent);
    opacity: 0.05;
    animation: drift 25s infinite reverse;
}

.layer-3 {
    background: radial-gradient(circle at center, var(--accent-color), transparent);
    opacity: 0.03;
    animation: drift 30s infinite;
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(1deg); }
    66% { transform: translate(-20px, 20px) rotate(-1deg); }
}

.hero-parallax-content {
    position: relative;
    z-index: 1;
    padding: 6rem 0;
}

.hero-parallax-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-parallax-box {
    max-width: 700px;
}

.hero-parallax-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.line-1 {
    display: block;
    color: var(--text-primary);
}

.line-2 {
    display: block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-parallax-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-parallax-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    color: var(--success-color);
    font-weight: 600;
}

.hero-parallax-buttons {
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    .hero-parallax-title {
        font-size: 2.5rem;
    }
    
    .hero-parallax-features {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Footer Styles */

.footer-minimal {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    margin-top: 5rem;
}

.footer-minimal-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-minimal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-minimal-left {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.footer-minimal-center a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.footer-minimal-center span {
    color: var(--border-color);
}

.footer-minimal-right {
    color: var(--text-secondary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .footer-minimal-container {
        flex-direction: column;
        text-align: center;
    }
}

/* Card Styles */

.card-badge {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.card-badge:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.badge-wrapper {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}

.discount-badge {
    background: var(--error-color);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
}

.new-badge {
    background: var(--success-color);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
}

a.card-badge-image,
.card-badge-image {
    display: block;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--bg-secondary);
    text-decoration: none;
}

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

.card-badge:hover .card-badge-image img {
    transform: scale(1.08);
}

.card-badge-content {
    padding: 1.5rem;
}

.product-category {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0.5rem 0;
    color: var(--text-primary);
}

.product-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: var(--primary-color);
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.current-price {
    color: var(--error-color);
    font-size: 1.5rem;
    font-weight: 800;
}

.add-button {
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* Button Styles */

/* Base button styles */
.btn {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    border-radius: 8px;
}

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

.btn-primary:hover, .btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

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

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

.add-to-cart, .product-btn, .cart-button {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover, .product-btn:hover, .cart-button:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-outline.btn-white {
    border-color: white;
    color: white;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
}

/* Item Page Styles */

/* Gallery Layout Styles */
.item-gallery {
    padding: 40px 0;
    background: #f8f9fa;
}

.item-gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0 20px;
}

.gallery-section {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.main-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.info-section {
    padding: 20px 0;
}

.item-gallery .item-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.item-gallery .item-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.item-gallery .stars {
    color: #fbbf24;
    font-size: 18px;
}

.item-gallery .price-block {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.item-gallery .current-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.item-gallery .item-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.item-gallery .action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.item-gallery .btn-add-cart,
.item-gallery .btn-favorite {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.item-gallery .btn-add-cart {
    flex: 1;
    background: var(--primary-color);
    color: white;
}

.item-gallery .btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.item-gallery .btn-favorite {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

@media (max-width: 768px) {
    .item-gallery-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}