/* IMPORTADORA CHENG - Products Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cheng-primary: #2563eb;
    --cheng-primary-dark: #1d4ed8;
    --cheng-secondary: #7c3aed;
    --cheng-accent: #06b6d4;
    --cheng-success: #10b981;
    --cheng-warning: #f59e0b;
    --cheng-error: #ef4444;
    --cheng-gray-50: #f9fafb;
    --cheng-gray-100: #f3f4f6;
    --cheng-gray-200: #e5e7eb;
    --cheng-gray-300: #d1d5db;
    --cheng-gray-400: #9ca3af;
    --cheng-gray-500: #6b7280;
    --cheng-gray-600: #4b5563;
    --cheng-gray-700: #374151;
    --cheng-gray-800: #1f2937;
    --cheng-gray-900: #111827;
    --cheng-white: #ffffff;
    --cheng-black: #000000;
    --cheng-gradient-primary: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --cheng-gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --cheng-gradient-dark: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    --cheng-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --cheng-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --cheng-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --cheng-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --cheng-shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--cheng-gray-800);
    background-color: var(--cheng-white);
    overflow-x: hidden;
}

.cheng-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Cookies Banner */
.cheng-cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--cheng-gradient-primary);
    color: var(--cheng-white);
    padding: 16px 24px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cheng-cookies-banner.show {
    transform: translateY(0);
}

.cheng-cookies-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cheng-cookies-accept {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--cheng-white);
    padding: 8px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.cheng-cookies-accept:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

/* Header & Navigation */
.cheng-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.cheng-header.cheng-header-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--cheng-shadow-lg);
}

.cheng-nav {
    padding: 16px 0;
}

.cheng-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.company-logo {
    display: flex;
    align-items: center;

    img {
        margin-right: 10px;
        width: 40px;
    }

    span {
        font-weight: 600;
        font-size: 1.2rem;
    }
}

.cheng-nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.cheng-nav-menu a {
    text-decoration: none;
    color: var(--cheng-gray-700);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.cheng-nav-menu a:hover,
.cheng-nav-menu a.cheng-active {
    color: var(--cheng-primary);
}

.cheng-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cheng-gradient-primary);
    transition: width 0.3s ease;
}

.cheng-nav-menu a:hover::after,
.cheng-nav-menu a.cheng-active::after {
    width: 100%;
}

.cheng-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.cheng-mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--cheng-gray-700);
    transition: all 0.3s ease;
}

/* Breadcrumb */
.cheng-breadcrumb {
    background: var(--cheng-gray-50);
    padding: 16px 0;
    margin-top: 92px;
    border-bottom: 1px solid var(--cheng-gray-200);
}

.cheng-breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.cheng-breadcrumb-nav a {
    color: var(--cheng-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cheng-breadcrumb-nav a:hover {
    color: var(--cheng-primary-dark);
}

.cheng-breadcrumb-separator {
    color: var(--cheng-gray-400);
}

.cheng-breadcrumb-current {
    color: var(--cheng-gray-600);
    font-weight: 500;
}

/* Hero Section */
.cheng-hero-products {
    padding: 80px 0;
    text-align: center;
    background: var(--cheng-gradient-primary);
    color: var(--cheng-white);
    margin-bottom: 80px;
}

.cheng-hero-products-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cheng-hero-products-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

/* Section Headers */
.cheng-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.cheng-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cheng-gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cheng-section-subtitle {
    font-size: 1.125rem;
    color: var(--cheng-gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Product Categories */
.cheng-product-categories {
    padding: 80px 0;
    background: var(--cheng-gray-50);
}

.cheng-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.cheng-category-card {
    background: var(--cheng-white);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--cheng-shadow);
    border: 1px solid var(--cheng-gray-100);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cheng-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--cheng-gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.cheng-category-card:hover::before {
    transform: scaleX(1);
}

.cheng-category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--cheng-shadow-xl);
}

.cheng-category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--cheng-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cheng-category-card:hover .cheng-category-icon {
    background: var(--cheng-gradient-primary);
    transform: scale(1.1);
}

.cheng-category-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cheng-gray-900);
    margin-bottom: 16px;
}

.cheng-category-card p {
    color: var(--cheng-gray-600);
    margin-bottom: 24px;
    line-height: 1.6;
}

.cheng-category-link {
    display: inline-block;
    background: var(--cheng-gradient-primary);
    color: var(--cheng-white);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cheng-category-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--cheng-shadow-lg);
}

/* Featured Products */
.cheng-featured-products {
    padding: 80px 0;
}

.cheng-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.cheng-product-card {
    background: var(--cheng-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--cheng-shadow);
    border: 1px solid var(--cheng-gray-100);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cheng-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--cheng-shadow-xl);
}

.cheng-product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cheng-product-card:hover img {
    transform: scale(1.05);
}

.cheng-product-info {
    padding: 24px;
}

.cheng-product-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cheng-gray-900);
    margin-bottom: 12px;
}

.cheng-product-info p {
    color: var(--cheng-gray-600);
    margin-bottom: 16px;
    line-height: 1.6;
}

.cheng-product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cheng-product-category {
    background: var(--cheng-primary);
    color: var(--cheng-white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.cheng-product-rating {
    color: var(--cheng-warning);
    font-size: 1rem;
}

/* Product Details */
.cheng-product-details {
    padding: 80px 0;
    background: var(--cheng-gray-50);
}

.cheng-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.cheng-detail-item {
    background: var(--cheng-white);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--cheng-shadow);
    border: 1px solid var(--cheng-gray-100);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cheng-detail-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--cheng-shadow-lg);
}

.cheng-detail-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--cheng-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cheng-detail-item:hover .cheng-detail-icon {
    background: var(--cheng-gradient-primary);
    transform: scale(1.1);
}

.cheng-detail-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cheng-gray-900);
    margin-bottom: 16px;
}

.cheng-detail-item p {
    color: var(--cheng-gray-600);
    line-height: 1.6;
}

/* Pricing Info */
.cheng-pricing-info {
    padding: 80px 0;
}

.cheng-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.cheng-pricing-card {
    background: var(--cheng-white);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--cheng-shadow);
    border: 1px solid var(--cheng-gray-100);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cheng-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--cheng-shadow-xl);
}

.cheng-pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cheng-gray-900);
    margin-bottom: 24px;
}

.cheng-pricing-features ul {
    list-style: none;
    margin-bottom: 32px;
}

.cheng-pricing-features li {
    color: var(--cheng-gray-600);
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
}

.cheng-pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cheng-success);
    font-weight: bold;
}

/* Buttons */
.cheng-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.cheng-btn-primary {
    background: var(--cheng-gradient-primary);
    color: var(--cheng-white);
}

.cheng-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--cheng-shadow-lg);
}

.cheng-btn-outline {
    background: transparent;
    color: var(--cheng-primary);
    border-color: var(--cheng-primary);
}

.cheng-btn-outline:hover {
    background: var(--cheng-primary);
    color: var(--cheng-white);
    transform: translateY(-2px);
}

/* Ordering Process */
.cheng-ordering-process {
    padding: 80px 0;
    background: var(--cheng-gray-50);
}

.cheng-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.cheng-step {
    background: var(--cheng-white);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--cheng-shadow);
    border: 1px solid var(--cheng-gray-100);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.cheng-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--cheng-shadow-lg);
}

.cheng-step-number {
    width: 60px;
    height: 60px;
    background: var(--cheng-gradient-primary);
    color: var(--cheng-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.cheng-step:hover .cheng-step-number {
    transform: scale(1.1);
}

.cheng-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cheng-gray-900);
    margin-bottom: 16px;
}

.cheng-step p {
    color: var(--cheng-gray-600);
    line-height: 1.6;
}

/* Footer */
.cheng-footer {
    background: var(--cheng-gray-900);
    color: var(--cheng-white);
    padding: 80px 0 32px;
}

.cheng-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.cheng-footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--cheng-white);
}

.cheng-footer-section p {
    color: var(--cheng-gray-400);
    margin-bottom: 12px;
}

.cheng-footer-section ul {
    list-style: none;
}

.cheng-footer-section ul li {
    margin-bottom: 12px;
}

.cheng-footer-section ul li a {
    color: var(--cheng-gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cheng-footer-section ul li a:hover {
    color: var(--cheng-primary);
}

.cheng-footer-bottom {
    border-top: 1px solid var(--cheng-gray-800);
    padding-top: 32px;
    text-align: center;
    color: var(--cheng-gray-500);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cheng-nav-menu {
        display: none;
    }
    
    .cheng-mobile-menu-toggle {
        display: flex;
    }
    
    .cheng-hero-products-title {
        font-size: 2.5rem;
    }
    
    .cheng-section-title {
        font-size: 2rem;
    }
    
    .cheng-categories-grid,
    .cheng-featured-grid,
    .cheng-details-grid,
    .cheng-pricing-grid,
    .cheng-process-steps {
        grid-template-columns: 1fr;
    }
    
    .cheng-cookies-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .cheng-footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cheng-container {
        padding: 0 16px;
    }
    
    .cheng-hero-products-title {
        font-size: 2rem;
    }
    
    .cheng-section-title {
        font-size: 1.8rem;
    }
    
    .cheng-category-card,
    .cheng-product-card,
    .cheng-detail-item,
    .cheng-pricing-card,
    .cheng-step {
        padding: 24px 20px;
    }
} 