/* Reset en basis stijlen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #00A651;
    --primary-green-dark: #008A44;
    --primary-green-light: #00C261;
    --accent-orange: #FF6B35;
    --accent-orange-light: #FF8A5C;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --gray: #6C757D;
    --dark-gray: #343A40;
    --black: #000000;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    scroll-behavior: smooth;
}

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

/* Header stijlen zijn verplaatst naar header.css */

/* Navigation stijlen zijn verplaatst naar header.css */

/* Hero Section - Desktop Only */
.hero {
    position: relative;
    min-height: 70vh;
    max-height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(0, 166, 81, 0.8) 0%, 
        rgba(0, 138, 68, 0.7) 50%,
        rgba(0, 166, 81, 0.8) 100%
    );
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: left;
}

.hero-content {
    color: var(--white);
    max-width: 500px;
    margin: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-btn {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    border: 2px solid transparent;
}

.hero-btn:hover {
    background: var(--white);
    color: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: var(--light-gray);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-text h2 {
    font-size: 42px;
    color: var(--primary-green);
    margin-bottom: 25px;
    line-height: 1.2;
}

.why-choose-text p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.feature-item i {
    color: var(--accent-orange);
    font-size: 28px;
    margin-top: 5px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-item p {
    color: var(--gray);
    margin: 0;
    font-size: 16px;
}

.why-choose-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.why-choose-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.why-choose-image:hover img {
    transform: scale(1.05);
}

/* Mobile responsive for Why Choose Us */
@media (max-width: 768px) {
    .why-choose-us {
        padding: 40px 0;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-choose-text h2 {
        font-size: 28px;
        text-align: center;
    }
    
    .why-choose-text p {
        font-size: 16px;
        text-align: center;
    }
    
    .why-choose-image img {
        height: 300px;
    }
    
    .feature-item {
        flex-direction: row;
        text-align: left;
        gap: 15px;
        padding: 15px;
    }
    
    .feature-item i {
        margin-top: 5px;
        font-size: 24px;
        flex-shrink: 0;
    }
    
    .feature-item h4 {
        font-size: 18px;
    }
    
    .feature-item p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .why-choose-us {
        padding: 30px 0;
    }
    
    .why-choose-text h2 {
        font-size: 24px;
    }
    
    .why-choose-text p {
        font-size: 15px;
    }
    
    .why-choose-image img {
        height: 250px;
    }
    
    .feature-item {
        padding: 12px;
        gap: 12px;
        flex-direction: row;
        text-align: left;
    }
    
    .feature-item i {
        font-size: 20px;
        margin-top: 3px;
        flex-shrink: 0;
    }
    
    .feature-item h4 {
        font-size: 16px;
    }
    
    .feature-item p {
        font-size: 13px;
    }
}

/* Newsletter Benefits */
.newsletter-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.benefit i {
    color: var(--accent-orange);
    font-size: 24px;
    flex-shrink: 0;
}

.benefit span {
    color: var(--white);
    font-size: 16px;
}

@media (max-width: 768px) {
    .newsletter-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit {
        justify-content: center;
        text-align: center;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
}

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

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

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--dark-gray);
}

/* Categories Section */
.categories {
    padding: 50px 0;
    background: var(--light-gray);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.category-image {
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-card h3 {
    padding: 20px 20px 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-gray);
}

.category-card p {
    padding: 0 20px 20px;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 16px;
}

/* Featured Products */
.featured-products {
    padding: 50px 0;
}

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

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

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

.product-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: #f8f9fa;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.03);
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.product-rating .stars {
    display: flex;
    gap: 2px;
}

.product-rating .stars i {
    color: #ffc107;
    font-size: 14px;
}

.review-count {
    font-size: 14px;
    color: var(--gray);
    text-decoration: underline;
}

.delivery-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 12px;
    background: #e8f5e8;
    border-radius: 6px;
    font-size: 14px;
    color: var(--primary-green);
}

.delivery-info i {
    color: var(--primary-green);
    font-size: 16px;
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.price-old {
    font-size: 16px;
    color: var(--gray);
    text-decoration: line-through;
}

.price-current {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-gray);
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.view-now-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--accent-orange);
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    width: 100%;
}

.view-now-btn:hover {
    background: var(--accent-orange-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.product-actions button {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--white);
    color: var(--dark-gray);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.product-actions button:hover {
    background: var(--primary-green);
    color: var(--white);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.product-price {
    margin-bottom: 10px;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-green);
}

.old-price {
    font-size: 14px;
    color: var(--gray);
    text-decoration: line-through;
    margin-left: 10px;
}

.product-rating {
    margin-bottom: 15px;
    color: var(--accent-orange);
}

.product-rating span {
    color: var(--gray);
    margin-left: 5px;
}

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--white);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.newsletter-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.2;
}

.newsletter-text p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    align-items: stretch;
}

.newsletter-input {
    flex: 1;
    padding: 18px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    background: var(--white);
    color: var(--dark-gray);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-input::placeholder {
    color: var(--gray);
}

.newsletter-btn {
    padding: 18px 32px;
    background: var(--accent-orange);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.newsletter-btn:hover {
    background: var(--accent-orange-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

@media (max-width: 768px) {
    .newsletter {
        padding: 50px 0;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .newsletter-text h2 {
        font-size: 28px;
    }
    
    .newsletter-text p {
        font-size: 16px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-input,
    .newsletter-btn {
        padding: 16px 20px;
    }
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Maakt het logo wit */
    display: block;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ADB5BD;
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #495057;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ADB5BD;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Header stijlen zijn verplaatst naar header.css */
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-image {
        height: 240px;
    }
    
    .product-title {
        font-size: 15px;
    }
    
    .delivery-info {
        font-size: 13px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .footer-logo {
        text-align: left;
    }
    
    .footer-logo-image {
        margin: 0;
    }
}

 @media (max-width: 480px) {
     .container {
         padding: 0 10px;
     }
     
     /* Header stijlen zijn verplaatst naar header.css */
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-title {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .delivery-info {
        font-size: 11px;
        padding: 4px 6px;
        margin-bottom: 8px;
    }
    
    .product-actions {
        gap: 6px;
        margin-top: 8px;
    }
    
    .view-now-btn {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .product-pricing {
        margin-bottom: 8px;
    }
    
    .price-current {
        font-size: 16px;
    }
    
    .price-old {
        font-size: 12px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-logo {
        text-align: left;
    }
    
    .footer-logo-image {
        margin: 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-card,
.product-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus states for accessibility */
.btn:focus,
.search-bar input:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

/* Breadcrumb Styles */
.breadcrumb {
    background: var(--light-gray);
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb-nav a {
    color: var(--primary-green);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

.breadcrumb-nav i {
    color: var(--gray);
    font-size: 12px;
}

.breadcrumb-nav span {
    color: var(--dark-gray);
    font-weight: 500;
}

/* Products Page Styles */
.products-section {
    padding: 30px 0 80px;
}

.products-header {
    text-align: center;
    margin-bottom: 40px;
}

.products-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.products-header p {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.products-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

/* Filters Sidebar */
.filters-sidebar {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: fit-content;
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.filter-list {
    list-style: none;
}

.filter-list li {
    margin-bottom: 10px;
}

.filter-list label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--dark-gray);
    transition: var(--transition);
}

.filter-list label:hover {
    color: var(--primary-green);
}

.filter-list input[type="checkbox"] {
    accent-color: var(--primary-green);
}

.price-range {
    margin-top: 15px;
}

.price-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e9ecef;
    outline: none;
    accent-color: var(--primary-green);
}

.price-values {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 12px;
    color: var(--gray);
}

/* Products Main Content */
.products-main {
    background: var(--white);
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.results-count {
    font-size: 14px;
    color: var(--gray);
}

.sort-options select {
    padding: 8px 15px;
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius);
    background: var(--white);
    font-size: 14px;
    color: var(--dark-gray);
    cursor: pointer;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-link {
    display: inline-block;
    padding: 10px 15px;
    background: var(--white);
    color: var(--dark-gray);
    text-decoration: none;
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.page-link:hover {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.page-link.active {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.page-link.disabled {
    background: var(--light-gray);
    color: var(--gray);
    cursor: not-allowed;
}

.page-link.disabled:hover {
    background: var(--light-gray);
    color: var(--gray);
    border-color: #e9ecef;
}

/* Mobile Responsive for Products Page */
@media (max-width: 768px) {
    .products-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .filters-sidebar {
        order: 2;
        padding: 20px;
    }
    
    .products-main {
        order: 1;
    }
    
    .products-toolbar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .page-link {
        padding: 8px 12px;
        font-size: 14px;
    }
} 

/* Mobile Hero - Responsive but Same Content */
@media (max-width: 768px) {
    .hero {
        min-height: 50vh;
        max-height: 50vh;
    }
    
    .hero-container {
        display: block; /* Toon tekst op mobiel */
        padding: 0 20px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-overlay {
        background: linear-gradient(
            135deg, 
            rgba(0, 166, 81, 0.8) 0%, 
            rgba(0, 138, 68, 0.7) 50%,
            rgba(0, 166, 81, 0.8) 100%
        );
    }
} 

@media (max-width: 480px) {
    .hero {
        min-height: 45vh;
        max-height: 45vh;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.8rem;
    }
} 

/* Liquidation Sale Banner */
.liquidation-banner {
    background: #ff6b35;
    color: white;
    padding: 1rem 0;
    margin-bottom: 2rem;
    text-align: center;
}

.liquidation-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.liquidation-content p {
    font-size: 1rem;
    margin: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .liquidation-content h2 {
        font-size: 1.2rem;
    }
    
    .liquidation-content p {
        font-size: 0.9rem;
    }
} 