/* Products Page Styles */

/* Main Products Section */
.products-section {
    background-color: white;
    padding: 4rem 0;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.products-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.products-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    font-family: Georgia, serif;
    font-weight: 300;
}

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

.product-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

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

.product-info {
    padding: 1.5rem;
}

.product-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d5a2d;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.product-link:hover {
    transform: translateY(-5px);
}

/* Product Details Section */
.product-details {
    background-color: white;
    padding: 4rem 0;
    border-top: 1px solid #e2e8f0;
}

.product-details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.product-details-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.product-details-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    font-family: Georgia, serif;
    font-weight: 300;
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.product-detail-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

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

.product-detail-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-content {
    padding: 3rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-detail-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 1rem;
}

.product-detail-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.ver-mas-btn {
    background-color: #2d5a2d;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.ver-mas-btn:hover {
    background-color: #1a3d1a;
}

/* New Products Section */
.new-products {
    background-color: white;
    padding: 4rem 0;
    border-top: 1px solid #e2e8f0;
}

.new-products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.new-products-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.new-products-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    font-family: Georgia, serif;
    font-weight: 300;
}

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

.new-product-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.new-product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.new-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-product-info {
    padding: 1.5rem;
}

.new-product-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.new-product-date {
    color: #718096;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.new-product-description {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-title,
    .new-products-title,
    .product-details-title {
        font-size: 2.2rem;
    }
    
    .products-subtitle,
    .new-products-subtitle,
    .product-details-subtitle {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .new-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .product-detail-card {
        min-height: 350px;
    }
    
    .product-detail-content {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .products-section,
    .product-details,
    .new-products {
        padding: 3rem 0;
    }
    
    .products-title,
    .new-products-title,
    .product-details-title {
        font-size: 2rem;
    }
    
    .products-subtitle,
    .new-products-subtitle,
    .product-details-subtitle {
        font-size: 0.95rem;
    }
    
    .products-container,
    .product-details-container,
    .new-products-container {
        padding: 0 1.5rem;
    }
    
    .products-grid,
    .new-products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-image {
        height: 220px;
    }
    
    .product-info {
        padding: 1.25rem;
    }
    
    .product-detail-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .product-detail-image {
        height: 250px;
    }
    
    .product-detail-content {
        padding: 2rem;
    }
    
    .product-detail-title {
        font-size: 1.3rem;
    }
    
    .product-detail-text {
        font-size: 0.95rem;
    }
    
    .new-product-image {
        height: 180px;
    }
    
    .new-product-info {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .products-section,
    .product-details,
    .new-products {
        padding: 2.5rem 0;
    }
    
    .products-title,
    .new-products-title,
    .product-details-title {
        font-size: 1.75rem;
    }
    
    .products-subtitle,
    .new-products-subtitle,
    .product-details-subtitle {
        font-size: 0.9rem;
    }
    
    .products-container,
    .product-details-container,
    .new-products-container {
        padding: 0 1rem;
    }
    
    .products-grid,
    .new-products-grid {
        gap: 1rem;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-name {
        font-size: 1rem;
    }
    
    .product-price {
        font-size: 1.1rem;
    }
    
    .product-detail-card {
        gap: 0;
    }
    
    .product-detail-image {
        height: 220px;
    }
    
    .product-detail-content {
        padding: 1.5rem;
    }
    
    .product-detail-title {
        font-size: 1.2rem;
    }
    
    .product-detail-text {
        font-size: 0.9rem;
    }
    
    .ver-mas-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .new-product-image {
        height: 160px;
    }
    
    .new-product-info {
        padding: 1rem;
    }
    
    .new-product-name {
        font-size: 1rem;
    }
    
    .new-product-date {
        font-size: 0.8rem;
    }
    
    .new-product-description {
        font-size: 0.85rem;
    }
} 