/* Color Scheme Variables */

:root {
    --primary-color: #36c0f2;
    --primary-light: #5ee8ff;
    --primary-dark: #0084b6;
    --secondary-color: #131946;
    --accent-color: #313764;
    --success-color: #13a047;
    --warning-color: #fba411;
    --error-color: #fd5252;
    --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-modern {
    background: var(--text-primary);
    color: white;
    padding: 4rem 0 0;
    margin-top: 5rem;
}

.footer-modern-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-card p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-card a {
    display: block;
    color: white;
    text-decoration: none;
    opacity: 0.7;
    margin-bottom: 0.75rem;
    transition: opacity 0.3s ease;
}

.footer-card a:hover {
    opacity: 1;
}

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

.btn-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.footer-modern-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    text-align: center;
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .footer-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-modern-grid {
        grid-template-columns: 1fr;
    }
}

/* Card Styles */

.card-minimal {
    background: var(--bg-primary);
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.card-minimal:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.minimal-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.minimal-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    background: var(--bg-secondary);
}

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

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

.minimal-content {
    padding: 1.25rem;
}

.minimal-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.minimal-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
}

.minimal-add {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.minimal-add:hover {
    transform: scale(1.1) rotate(90deg);
    background: var(--primary-dark);
}

/* Button Styles */

/* Base button styles */
.btn {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    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-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover, .btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-primary:active, .btn-gradient:active {
    transform: translateY(0);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.add-to-cart, .product-btn, .cart-button {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover, .product-btn:hover, .cart-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* 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: #36c0f2;
    --primary-light: #5ee8ff;
    --primary-dark: #0084b6;
    --secondary-color: #131946;
    --accent-color: #313764;
    --success-color: #13a047;
    --warning-color: #fba411;
    --error-color: #fd5252;
    --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-modern {
    background: var(--text-primary);
    color: white;
    padding: 4rem 0 0;
    margin-top: 5rem;
}

.footer-modern-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-card p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-card a {
    display: block;
    color: white;
    text-decoration: none;
    opacity: 0.7;
    margin-bottom: 0.75rem;
    transition: opacity 0.3s ease;
}

.footer-card a:hover {
    opacity: 1;
}

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

.btn-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.footer-modern-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    text-align: center;
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .footer-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-modern-grid {
        grid-template-columns: 1fr;
    }
}

/* Card Styles */

.card-minimal {
    background: var(--bg-primary);
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.card-minimal:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.minimal-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.minimal-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    background: var(--bg-secondary);
}

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

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

.minimal-content {
    padding: 1.25rem;
}

.minimal-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.minimal-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
}

.minimal-add {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.minimal-add:hover {
    transform: scale(1.1) rotate(90deg);
    background: var(--primary-dark);
}

/* Button Styles */

/* Base button styles */
.btn {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    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-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover, .btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-primary:active, .btn-gradient:active {
    transform: translateY(0);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.add-to-cart, .product-btn, .cart-button {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover, .product-btn:hover, .cart-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* 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 */

/* Modern Layout Styles */
.item-modern {
    min-height: 100vh;
}

.modern-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px 0;
}

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

.image-showcase {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

.product-details {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modern-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    width: fit-content;
}

.modern-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.modern-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.modern-rating .stars {
    color: #fbbf24;
    font-size: 20px;
}

.modern-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.price-main {
    font-size: 36px;
    font-weight: 700;
}

.modern-description {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 30px;
}

.modern-cta {
    margin-bottom: 30px;
}

.cta-primary {
    width: 100%;
    padding: 18px;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modern-details {
    padding: 60px 0;
}

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

.detail-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.detail-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.detail-card p {
    color: #666;
    line-height: 1.8;
}

@media (max-width: 968px) {
    .modern-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}