* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f5;
}

/* Header */
header {
    background-color: #232f3e;
    padding: 15px 20px;
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #FF9500;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo {
    width: 32px;
    height: 32px;
    display: inline-block;
    vertical-align: middle;
}

.site-logo.small {
    width: 20px;
    height: 20px;
}

/* Make logo round */
.site-logo {
    border-radius: 50%;
    object-fit: cover;
    background: transparent;
    padding: 0;
    border: none;
}

/* Logo link: remove underline and keep layout aligned */
.logo {
    text-decoration: none;
    color: #FFD400; /* Gelb */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}
.logo img {
    display: block;
    width: 60px;
    height: 60px;
    object-fit: cover;
    background: transparent;
    border: none;
    padding: 0;
}
.logo:hover,
.logo:focus {
    text-decoration: none;
}

.search-bar {
    flex: 1;
    max-width: 600px;
    display: flex;
    background-color: white;
    border-radius: 4px;
    overflow: hidden;
}

.search-bar { position: relative; }

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e6e6e6;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    z-index: 200;
    max-height: 240px;
    overflow: auto;
    display: none;
}

.search-suggestions .suggestion {
    padding: 10px 12px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.search-suggestions .suggestion:hover,
.search-suggestions .suggestion.active {
    background: #f5f5f5;
}

.search-bar input {
    flex: 1;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    outline: none;
}

.search-bar button {
    background-color: #FF9500;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.search-bar button:hover {
    background-color: #e68200;
}

.cart-icon {
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}

.cart-icon:hover {
    color: #FF9500;
}

.top-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.menu-icon {
    width: 42px;
    height: 42px;
    border: 2px solid #fff;
    border-radius: 12px;
    background: rgba(35, 47, 62, 0.95);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.menu-icon span {
    display: block;
    width: 20px;
    height: 3px;
    background: white;
    border-radius: 999px;
}

.menu-icon:hover {
    transform: translateY(-1px);
    background: #ff9500;
}

.menu-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    min-width: 180px;
    padding: 10px 0;
    background: white;
    border-radius: 18px;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
    z-index: 200;
}

.top-menu:hover .menu-dropdown,
.top-menu:focus-within .menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-dropdown a {
    display: block;
    padding: 10px 18px;
    color: #232f3e;
    text-decoration: none;
    font-weight: 600;
}

.menu-dropdown a:hover {
    background: #f9f0da;
}

.about-btn {
    display: inline-block;
    margin-right: 12px;
    background-color: #1e63b8;
    color: white;
    padding: 8px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.about-btn:hover {
    background-color: #155a9e;
}

/* Main Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.banner {
    background: linear-gradient(135deg, #FF9500 0%, #FF6B35 100%);
    color: white;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}

.banner h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.banner p {
    font-size: 16px;
    opacity: 0.9;
}

/* Category Filter */
.filters {
    margin-bottom: 30px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #232f3e;
    background-color: white;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #232f3e;
    color: white;
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Product Card */
.product-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    opacity: 1;
}

.product-card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.product-info {
    padding: 15px;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #232f3e;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
        line-clamp: 2;
    font-size: 12px;
}

.stars {
    color: #FFA500;
    margin-right: 5px;
}

.rating-count {
    color: #666;
    font-size: 11px;
}

.product-description {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
    height: 35px;
    overflow: hidden;
    display: -webkit-box;
        line-clamp: 2;
    gap: 5px;
    margin-bottom: 12px;
}

.price-tag {
    font-size: 20px;
    font-weight: bold;
    color: #c45500;
}

        .product-quantity-field {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .product-quantity-field label {
            font-size: 13px;
            color: #333;
            font-weight: 600;
        }

        .product-quantity-field input {
            width: 70px;
            padding: 8px 10px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 14px;
            font-weight: bold;
            text-align: center;
            outline: none;
        }

        .product-quantity-field input:focus {
            border-color: #FF9500;
            box-shadow: 0 0 0 2px rgba(255, 149, 0, 0.15);
        }

.free-shipping {
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 5px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Add to Cart Button */
.add-to-cart {
    width: 100%;
    padding: 10px;
    background-color: #FF9500;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 14px;
}

.add-to-cart:hover {
    background-color: #e68200;
}

.add-to-cart:active {
    transform: scale(0.98);
}

/* Image Carousel */
.carousel {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-item {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel-item.active {
    opacity: 1;
    z-index: 1;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Carousel Controls & Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: transform 0.15s, background 0.15s;
}

.carousel-indicators .indicator.active {
    background: #FF9500;
    transform: scale(1.15);
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.35);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(0,0,0,0.5);
}

.carousel-control-prev { left: 12px; }
.carousel-control-next { right: 12px; }

/* Checkout Page Styles */
.checkout-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #f5f5f5;
    min-height: calc(100vh - 200px);
}

.checkout-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    margin-bottom: 50px;
}

.checkout-form-section {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.checkout-form-section h1 {
    font-size: 32px;
    color: #232f3e;
    margin-bottom: 30px;
}

.checkout-form-section h2 {
    font-size: 20px;
    color: #232f3e;
    margin-bottom: 20px;
    border-bottom: 2px solid #FF9500;
    padding-bottom: 10px;
}

.checkout-form-section h3 {
    font-size: 16px;
    color: #232f3e;
    margin-bottom: 15px;
}

/* Step Indicator */
.checkout-steps {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background-color: #f0f0f0;
    border-radius: 20px;
    color: #666;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
}

.step.active {
    background-color: #FF9500;
    color: white;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.3);
    font-size: 12px;
    font-weight: bold;
}

/* Form Sections */
.form-section {
    display: none;
    animation: slideInLeft 0.3s ease-out;
}

.form-section.active {
    display: block;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #232f3e;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF9500;
    box-shadow: 0 0 0 3px rgba(255, 149, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Payment Options */
.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.payment-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-option input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.payment-option input[type="radio"]:checked + .payment-label {
    color: #FF9500;
    font-weight: 600;
}

.payment-option:has(input:checked) {
    border-color: #FF9500;
    background-color: rgba(255, 149, 0, 0.05);
}

.payment-label {
    flex: 1;
    font-weight: 500;
}

/* Payment Details */
.payment-details {
    display: none;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 20px;
}

.payment-details.active {
    display: block;
}

.bank-info {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #FF9500;
}

.bank-info p {
    margin: 10px 0;
    font-size: 14px;
    color: #333;
}

.reference-code {
    background-color: #f0f0f0;
    padding: 15px;
    border-radius: 6px;
    font-family: monospace;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    margin-top: 10px;
    color: #FF9500;
}

/* Shipping Options */
.shipping-options {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.shipping-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.shipping-option input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.shipping-option:has(input:checked) {
    border-color: #FF9500;
    background-color: rgba(255, 149, 0, 0.05);
}

.shipping-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.shipping-title {
    font-weight: 600;
    color: #232f3e;
}

.shipping-time {
    font-size: 13px;
    color: #666;
}

.shipping-price {
    font-weight: 600;
    color: #FF9500;
    font-size: 14px;
}

/* Checkbox Labels */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label a {
    color: #FF9500;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Buttons */
.button-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-next,
.btn-back,
.btn-complete {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.btn-next,
.btn-complete {
    background-color: #FF9500;
    color: white;
}

.btn-next:hover,
.btn-complete:hover {
    background-color: #e68200;
    transform: translateY(-2px);
}

.btn-back {
    background-color: #f0f0f0;
    color: #333;
}

.btn-back:hover {
    background-color: #e0e0e0;
}

.btn-checkout {
    display: inline-block;
    padding: 12px 24px;
    background-color: #FF9500;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    border: none;
}

.btn-checkout:hover {
    background-color: #e68200;
}

/* Order Summary Sidebar */
.checkout-summary {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 80px;
}

.checkout-summary h2 {
    font-size: 18px;
    color: #232f3e;
    margin-bottom: 20px;
    border-bottom: 2px solid #FF9500;
    padding-bottom: 10px;
}

.cart-summary-items {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.summary-item {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 13px;
}

.item-name {
    font-weight: 600;
    color: #232f3e;
    margin-bottom: 5px;
}

.item-qty {
    color: #666;
    font-size: 12px;
}

.item-total {
    color: #FF9500;
    font-weight: 600;
    text-align: right;
    margin-top: 5px;
}

.summary-divider {
    height: 1px;
    background-color: #ddd;
    margin: 15px 0;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    color: #333;
}

.summary-line.total {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    color: #232f3e;
    border: 2px solid #FF9500;
}

/* Responsive */
@media (max-width: 768px) {
    .checkout-wrapper {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
    }

    .checkout-steps {
        flex-direction: column;
    }

    .step {
        width: 100%;
    }

    .payment-options {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .button-group {
        flex-direction: column;
    }
}

/* Footer */
footer {
    background-color: #232f3e;
    color: white;
    padding: 40px 20px;
    margin-top: 50px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: #FF9500;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #FF9500;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #bbb;
}

/* Cart Badge */
.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #c45500;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.cart-icon {
    position: relative;
}

/* Cart Modal */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: flex-end;
    z-index: 1000;
    opacity: 0;
}

.cart-modal.open {
    display: flex;
    animation: slideIn 0.25s ease-out forwards;
}

.cart-modal.closing {
    animation: slideOut 0.2s ease-in forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(196, 85, 0, 0.7);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(196, 85, 0, 0);
    }
}

.cart-modal-content {
    background-color: white;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    margin: 0;
    font-size: 20px;
    color: #232f3e;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #232f3e;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    background-color: #f5f5f5;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h3 {
    font-size: 13px;
    margin: 0 0 5px 0;
    color: #232f3e;
    font-weight: 600;
}

.item-description {
    font-size: 11px;
    color: #999;
    margin: 0 0 5px 0;
}

.item-price {
    font-size: 12px;
    font-weight: bold;
    color: #c45500;
    margin: 0;
}

.item-kilos {
    color: #666;
    font-size: 12px;
    margin: 5px 0 0;
}

.cart-item-quantity {
    display: flex;
    gap: 5px;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.qty-btn {
    width: 25px;
    height: 25px;
    border: none;
    background-color: #f5f5f5;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    transition: background-color 0.2s;
}

.qty-btn:hover {
    background-color: #FF9500;
    color: white;
}

.cart-item-quantity input {
    width: 35px;
    text-align: center;
    border: none;
    outline: none;
    font-weight: bold;
}

.cart-item-total {
    font-size: 12px;
    font-weight: bold;
    color: #c45500;
    min-width: 50px;
    text-align: right;
}

.remove-btn {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    color: #999;
    width: 25px;
    height: 25px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.remove-btn:hover {
    background-color: #ff4444;
    color: white;
    border-color: #ff4444;
}

.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 16px;
}

.cart-summary {
    padding: 20px;
    border-top: 2px solid #ddd;
    border-bottom: 1px solid #ddd;
    background-color: #f9f9f9;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 13px;
    color: #666;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.total-row {
    border-top: 1px solid #ddd;
    padding-top: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #232f3e;
}

.cart-actions {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-checkout {
    width: 100%;
    padding: 12px;
    background-color: #FF9500;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-checkout:hover {
    background-color: #e68200;
}

.btn-continue {
    width: 100%;
    padding: 12px;
    background-color: white;
    color: #232f3e;
    border: 2px solid #232f3e;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-continue:hover {
    background-color: #232f3e;
    color: white;
}

.btn-clear {
    width: 100%;
    padding: 12px;
    background-color: #f5f5f5;
    color: #999;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-clear:hover {
    background-color: #ff4444;
    color: white;
    border-color: #ff4444;
}

/* Responsive */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .header-content {
        flex-direction: column;
    }

    .search-bar {
        max-width: 100%;
    }

    .banner h1 {
        font-size: 24px;
    }

    .cart-modal-content {
        max-width: 100%;
    }
}