/* Lidl Shop Main Styling */

/* Reset en basis styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    padding-top: 120px; /* Space voor fixed header (main header + navigation) */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(rgba(12, 90, 166, 0.7), rgba(25, 118, 210, 0.7)), url('https://i.imgur.com/qdPz46d.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 60px 0;
    margin: 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 400px;
}

.hero-text {
    max-width: 800px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.feature-icon {
    font-size: 24px;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.7));
}

.cta-button {
    display: inline-block;
    background: #ffeb3b;
    color: #333;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 235, 59, 0.3);
}

.cta-button:hover {
    background: #fdd835;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 235, 59, 0.4);
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Section titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #0c5aa6;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ffeb3b;
    border-radius: 2px;
}

/* Promotions Section */
.promotions-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.promotions-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
}

.promo-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.promo-card:hover {
    transform: translateY(-5px);
}

.promo-large {
    grid-row: span 2;
}

.promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 25px 25px;
}

.promo-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.promo-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.promo-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.promo-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff6b35;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(12, 90, 166, 0.1), transparent);
    transition: left 0.5s ease;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(12, 90, 166, 0.2);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #0c5aa6;
}

.category-card p {
    color: #666;
    margin-bottom: 15px;
}

.category-arrow {
    color: #0c5aa6;
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.category-card:hover .category-arrow {
    transform: translateX(5px);
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background: #f8f9fa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-image.placeholder {
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    font-size: 48px;
    color: #ccc;
}

.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff6b35;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.product-info {
    padding: 25px;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.3;
}

.product-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.product-price {
    margin-bottom: 20px;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'LidlFontPricePublicB', Arial, sans-serif;
    color: #dc2626;
}

.old-price {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

.add-to-cart-btn {
    width: 100%;
    background: #0c5aa6;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart-btn:hover {
    background: #094a8a;
    transform: translateY(-1px);
}

.cart-icon {
    font-size: 16px;
}

.no-products {
    text-align: center;
    color: #666;
    font-size: 18px;
    padding: 60px 20px;
}

.no-products a {
    color: #0c5aa6;
    text-decoration: none;
    font-weight: 600;
}

.no-products a:hover {
    text-decoration: underline;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #0c5aa6 0%, #1976d2 100%);
    color: white;
    padding: 60px 0;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 16px;
    outline: none;
}

.newsletter-form button {
    background: #ffeb3b;
    color: #333;
    border: none;
    padding: 15px 25px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #fdd835;
}

/* Header element override to prevent conflicts */
.top-bar * {
    box-sizing: border-box;
    color: white !important;
}

/* Reset text colors for main content */
.page-content * {
    color: inherit !important;
}

.page-content h1,
.page-content h2, 
.page-content h3,
.page-content h4,
.page-content p,
.page-content label,
.page-content span,
.page-content div {
    color: #333 !important;
}

.page-content a {
    color: #0c5aa6 !important;
}

.page-content input,
.page-content textarea,
.page-content select {
    color: #333 !important;
}

/* Page Content Styles */
.page-content {
    padding-top: 30px;
    min-height: calc(100vh - 120px);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #0c5aa6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #094a8a;
}

.breadcrumb .separator {
    color: #999;
}

.breadcrumb .current {
    color: #333;
    font-weight: 600;
}

.page-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.page-header h1 i {
    color: #0c5aa6;
}

.page-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Cart Page Styles */
.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 30px;
    width: 100%;
    max-width: 100%;
}

.cart-main {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto;
    gap: 20px;
    align-items: center;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fafafa;
    transition: box-shadow 0.3s ease;
}

.cart-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.item-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
}

.item-details h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.item-category {
    color: #666;
    font-size: 14px;
    margin: 0 0 10px 0;
}

.item-price .price {
    font-size: 16px;
    font-weight: 700;
    font-family: 'LidlFontPricePublicB', Arial, sans-serif;
    color: #dc2626;
}

.item-price .original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.qty-btn {
    background: #f5f5f5;
    border: none;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.qty-btn:hover {
    background: #e0e0e0;
}

.item-quantity input {
    border: none;
    width: 50px;
    text-align: center;
    padding: 8px;
    font-size: 16px;
}

.item-total .total-price {
    font-size: 18px;
    font-weight: 700;
    color: #0c5aa6;
}

.remove-btn {
    background: #ff4444;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background: #cc0000;
    transform: scale(1.1);
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.empty-cart-icon {
    font-size: 80px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-cart h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.empty-cart p {
    font-size: 16px;
    margin-bottom: 30px;
}

.cart-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cart-summary {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid #ffeb3b;
}

.cart-summary h3 {
    margin: 0 0 20px 0;
    font-size: 20px;
    color: #333;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 16px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 700;
    color: #0c5aa6;
    margin-top: 15px;
}

.promo-code {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.promo-code input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.btn {
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: #0c5aa6;
    color: white !important;
    border: 2px solid #0c5aa6;
}

.btn-primary:hover:not(:disabled) {
    background: #094a8a;
    color: white !important;
    transform: translateY(-2px);
}

.btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.btn-secondary {
    background: #ffeb3b;
    color: #333;
}

.btn-secondary:hover {
    background: #fdd835;
}

.btn-outline {
    background: white;
    color: #0c5aa6;
    border: 2px solid #0c5aa6;
}

.btn-outline:hover {
    background: #0c5aa6;
    color: white;
}

.btn-large {
    padding: 18px 30px;
    font-size: 18px;
}

.delivery-info,
.payment-methods {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.delivery-info h4,
.payment-methods h4 {
    margin: 0 0 12px 0;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.delivery-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.delivery-info li {
    padding: 6px 0;
    color: #555;
    font-size: 14px;
    line-height: 1.4;
}

.delivery-info li i {
    color: #4caf50;
    margin-right: 8px;
    font-size: 12px;
    width: 14px;
    text-align: center;
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 24px;
}

.payment-icons i {
    color: #666;
    transition: color 0.3s ease;
}

.payment-icons i:hover {
    color: #0c5aa6;
}

.discount-row {
    color: #4caf50;
    font-weight: 600;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #ffeb3b;
}

.contact-card:hover .contact-icon {
    background: linear-gradient(135deg, #fdd835, #f9a825);
    box-shadow: 0 6px 20px rgba(255, 235, 59, 0.4);
    transform: scale(1.05);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffeb3b, #fdd835);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 235, 59, 0.3);
    transition: all 0.3s ease;
}

.contact-icon i {
    font-size: 24px;
    color: #333;
    text-shadow: none;
}

.contact-card h3 {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 600;
    color: #333 !important;
}

.contact-details p {
    margin: 8px 0;
    color: #666 !important;
    line-height: 1.6;
}

.contact-details strong {
    color: #333 !important;
}

.contact-details a {
    color: #0c5aa6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #094a8a;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0c5aa6;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #094a8a;
    transform: translateX(5px);
}

.contact-form-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #ffeb3b;
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
    color: #333 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.form-header p {
    color: #666 !important;
    font-size: 16px;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0c5aa6;
    box-shadow: 0 0 0 3px rgba(12, 90, 166, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #0c5aa6;
    border-color: #0c5aa6;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.form-actions {
    text-align: center;
    margin-top: 20px;
}

.message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.additional-info {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.info-card h3 {
    margin: 0 0 20px 0;
    font-size: 18px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.info-card h3 i {
    color: #0c5aa6;
}

.hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.day-hours {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.day-hours:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: #333;
}

.hours-time {
    color: #0c5aa6;
    font-weight: 600;
}

.payment-methods-contact .payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 28px;
}

.payment-logos {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 20px 0;
    align-items: center;
}

.payment-logo {
    height: 32px;
    max-width: 100px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(10%);
}

.payment-logo:hover {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.payment-methods-contact p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
}

.security-item i {
    color: #4caf50;
    width: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        text-align: center;
        min-height: 350px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-features {
        justify-content: center;
        gap: 20px;
    }
    
    .promotions-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .promo-large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .page-content {
        padding-top: 20px;
    }
    
    .page-header h1 {
        font-size: 2rem;
        gap: 10px;
    }
    
    .breadcrumb {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-section {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-header h2 {
        font-size: 24px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .payment-logos {
        flex-direction: column;
        gap: 15px;
    }
    
    .payment-logo {
        height: 28px;
        max-width: 80px;
    }
    
    .cart-container {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        overflow-x: hidden;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
        padding: 15px;
    }
    
    .item-image img {
        width: 80px;
        height: 80px;
    }
    
    .item-quantity,
    .item-total,
    .item-actions {
        grid-column: 1 / -1;
        justify-self: start;
        margin-top: 10px;
    }
    
    .item-quantity {
        width: fit-content;
    }
    
    .cart-sidebar {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .cart-main,
    .cart-summary,
    .delivery-info,
    .payment-methods {
        padding: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .delivery-info h4,
    .payment-methods h4 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .summary-row {
        font-size: 14px;
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .cart-summary h3 {
        font-size: 16px;
        word-wrap: break-word;
    }
    
    .delivery-info li {
        padding: 4px 0;
        font-size: 13px;
    }
    
    .hero-banner {
        padding: 40px 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .promotions-section,
    .categories-section,
    .featured-products {
        padding: 50px 0;
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-large {
        grid-column: span 1;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .category-card {
        padding: 25px 20px;
    }
}

/* Animaties */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card,
.category-card,
.promo-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Category Page Styling */
.breadcrumb-section {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: #0c5aa6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #094a8a;
}

.breadcrumb-separator {
    color: #666;
    font-size: 12px;
}

.breadcrumb .current {
    color: #333;
    font-weight: 600;
}

.category-header {
    background: linear-gradient(135deg, #0c5aa6 0%, #1976d2 100%);
    color: white;
    padding: 40px 0;
}

.category-info {
    text-align: center;
}

.category-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.category-description {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.category-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.product-count {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
}

.filters-section {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.filters-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sort-dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-dropdown label {
    font-weight: 600;
    color: #333;
}

.sort-dropdown select {
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: white;
    font-size: 14px;
    cursor: pointer;
}

.view-toggle {
    display: flex;
    gap: 5px;
}

.view-btn {
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:first-child {
    border-radius: 6px 0 0 6px;
}

.view-btn:last-child {
    border-radius: 0 6px 6px 0;
}

.view-btn.active {
    background: #0c5aa6;
    color: white;
    border-color: #0c5aa6;
}

.view-btn:not(.active):hover {
    background: #f5f5f5;
}

.category-products {
    padding: 40px 0;
    min-height: 400px;
}

.products-grid.list-view {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.products-grid.list-view .product-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
}

.products-grid.list-view .product-image {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
}

.products-grid.list-view .product-info {
    flex: 1;
    padding: 0;
}

.product-variants {
    margin: 10px 0;
}

.variants-label {
    font-size: 12px;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

.variant-tag {
    display: inline-block;
    background: #f0f0f0;
    color: #333;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.no-products-category {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    text-align: center;
}

.no-products-content {
    max-width: 400px;
}

.no-products-icon {
    font-size: 64px;
    color: #ccc;
    margin-bottom: 20px;
}

.no-products-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.no-products-content p {
    color: #666;
    margin-bottom: 25px;
}

.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0c5aa6;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.back-to-home:hover {
    background: #094a8a;
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.gallery-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
}

.gallery-modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gallery-modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #333;
}

.gallery-modal-body {
    padding: 20px;
}

.gallery-main {
    position: relative;
    margin-bottom: 20px;
    text-align: center;
}

.gallery-main-image {
    max-width: 500px;
    max-height: 400px;
    object-fit: contain;
    border-radius: 8px;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.gallery-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.thumbnail-container {
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.thumbnail-container.active {
    border-color: #0c5aa6;
}

.gallery-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    display: block;
}

.main-label {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #0c5aa6;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .category-title {
        font-size: 2rem;
    }
    
    .filters-bar {
        flex-direction: column;
        gap: 15px;
    }
    
    .products-grid.list-view .product-card {
        flex-direction: column;
        text-align: center;
    }
    
    .products-grid.list-view .product-image {
        width: 100%;
        height: 200px;
    }
    
    .gallery-modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .gallery-main-image {
        max-width: 300px;
        max-height: 300px;
    }
    
    .gallery-btn {
        padding: 10px;
        font-size: 14px;
    }
}

/* Print styling */
@media print {
    .hero-banner,
    .newsletter-section {
        background: white !important;
        color: black !important;
    }
    
    .lidl-header,
    .mobile-menu {
        display: none !important;
    }
}
