* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: white;
    color: #333;
    line-height: 1.6;
}

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

/* Header - Tek ve tutarlı tanım */
header,
.header,
body .header,
header.header {
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: relative !important;
    display: block !important;
    unicode-bidi: isolate !important;
}

.header-content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #00d084;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #00d084;
    font-weight: 500;
}

nav a:hover {
    color: #00d084;
}

.cart {
    background: #00d084;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
}

/* Main Content */
.hero {
    background: white;
    color: #00d084;
    text-align: center;
    padding: 25px 0;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #db0f0f;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #555;
}

.btn {
    background: #00d084;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background: #00d084;
}

/* Products Section */
.products {
    padding: 60px 0;
    background: white;
}

.section-title {
    text-align: center;
    color: #00d084;
    font-size: 32px;
    margin-bottom: 40px;
}

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

.product-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
    overflow: hidden;
}

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

.product-image {
    height: 200px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d084;
}

.product-info {
    padding: 20px;
    background: white;
}

.product-title {
    color: #00d084;
    font-size: 18px;
    margin-bottom: 10px;
}

.product-price {
    color: #00d084;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.add-to-cart {
    width: 100%;
    background: #00d084;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
}

.add-to-cart:hover {
    background: #00d084;
}

/* Footer */
footer {
    background: white;
    color: #00d084;
    text-align: center;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid #eee;
}

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

.footer-section h3 {
    color: #00d084;
    margin-bottom: 15px;
}

.footer-section a {
    color: #00d084;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-section a:hover {
    color: white;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(139, 69, 19, 0.1);
    border-top: 1px solid #eee;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content h3 {
    color: #00d084;
    margin-bottom: 5px;
}

.cookie-content p {
    color: #00d084;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
}

.accept-btn {
    background: #00d084;
    color: white;
    border: none;
}

.accept-btn:hover {
    background: #00d084;
}

.decline-btn {
    background: white;
    color: #00d084;
    border: 1px solid #00d084;
}

.decline-btn:hover {
    background: #f9f9f9;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        position: relative !important; /* Tutarlılık için */
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        gap: 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}





.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #00d084;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.account-dropdown {
    position: relative;
}

.account-trigger {
    color: #00d084;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.account-trigger:hover {
    background: rgba(139, 69, 19, 0.1);
}

.account-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #00d084;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 5px;
}

.account-dropdown:hover .account-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.account-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.account-menu a:hover {
    background: #f8f9fa;
    color: #00d084;
}

.account-menu a i {
    font-size: 16px;
    width: 16px;
}

.menu-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 5px 0;
}

.cart {
    color: white;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: #00d084;
}

.cart:hover {
    background: #00d084;
}

.cart i {
    font-size: 18px;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: #00d084;
    font-weight: 500;
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 300px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.success {
    background: #00d084;
}

.toast.error {
    background: #00d084;
}

.toast.warning {
    background: #00d084;
}

.toast.info {
    background: #00d084;
}

.header-bottom {
    padding: 0.75rem 0;
    background:  #00d084;
}

.navigation-container {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-scroll-btn {
    background: rgba(139, 69, 19, 0.15);
    border: none;
    color: #00d084;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-scroll-btn:hover {
    background: rgba(139, 69, 19, 0.25);
    transform: scale(1.1);
}

.nav-scroll-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.nav-scroll-left {
    margin-right: 1rem;
}

.nav-scroll-right {
    margin-left: 1rem;
}

.main-navigation {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    flex: 1;
    flex-wrap: nowrap;
}

.main-navigation::-webkit-scrollbar {
    display: none;
}

.nav-link {
    color: #00d084;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.2), transparent);
    transition: left 0.5s;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(139, 69, 19, 0.2);
    color: #00d084;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
}

.nav-link.active {
    background: rgba(139, 69, 19, 0.25);
    font-weight: 600;
    color: white;
    background: #00d084;
}

/* Main Content */
.main-content {
    padding: 30px 0;
    background: white;
}

/* Product Categories */
.product-categories {
    margin-bottom: 40px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 15px;
    height: 200px;
}

.category-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    background: #f9f9f9;
}

.category-card.large {
    grid-row: 1 / 3;
}

.category-card:hover {
    transform: translateY(-2px);
}

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

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(139, 69, 19, 0.7));
    color: white;
    padding: 20px;
}

.overlay h3 {
    font-size: 18px;
    font-weight: 500;
}

/* Filter Section */
.filter-section {
    margin-bottom: 30px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filter-header h2 {
    font-size: 24px;
    color: #00d084;
}

.sort-dropdown select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    font-size: 14px;
    cursor: pointer;
}

/* Products Grid */
.products-grid {
    margin-top: 30px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 10px;
    }
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.08);
    transition: all 0.3s ease;
    position: relative;
    height: auto;
}

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

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d084;
}

/* Hover resim efekti */
.product-image .primary-image,
.product-image .hover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.product-image .hover-image {
    opacity: 0;
}

.product-card:hover .product-image .hover-image {
    opacity: 1;
}

.product-card:hover .product-image .primary-image {
    opacity: 0;
}

/* Hover resmi yoksa birincil resim görünür kalsın */
.product-image:not(:has(.hover-image)) .primary-image {
    opacity: 1 !important;
}

.product-info {
    padding: 20px;
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(10px);
}

.product-card:hover .wishlist-btn {
    opacity: 1;
    transform: translateX(0);
}

.wishlist-btn:hover {
    background: #00d084;
    color: white;
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
    font-weight: 600;
    line-height: 1.3;
}

.price {
    font-size: 18px;
    font-weight: bold;
    color: #00d084;
    margin-bottom: 15px;
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    background: #00d084;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background: #00d084;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.add-to-cart:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.product-description {
    color: #555;
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.featured-badge {
    position: absolute;
    top: 8px;
    left: 0px;
    background: #00d084;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 208, 132, 0.3);
}

.discount-badge {
    position: absolute;
    top: 8px;
    right: 0px;
    background: #db0f0f;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(219, 15, 15, 0.3);
}

.original-price {
    color: #db0f0f;
    text-decoration: line-through;
    font-size: 14px;
    margin-right: 8px;
}

.sale-price {
    color: #00d084;
    font-size: 18px;
    font-weight: bold;
}

.current-price {
    color: #00d084;
    font-size: 18px;
    font-weight: bold;
}

.product-weight {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #666;
    margin: 5px 0;
}

.calculated-price {
    font-size: 18px;
    font-weight: bold;
    color: #00d084;
}

.price small {
    display: block;
    margin-top: 2px;
}

.stock-warning {
    background: #FFF8DC;
    color: #00d084;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.out-of-stock {
    background: #db0f0f;
    color: #ffffff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #00d084;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    transition: transform 0.3s;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
}

/* Products Section */
.products-section {
    margin: 40px 0;
}

.products-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #00d084;
}

.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-actions button {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: white;
    color: #00d084;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.product-actions button:hover,
.product-actions a:hover {
    background: #00d084;
    color: white;
    transform: scale(1.1);
}

.order-btn-card {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: white;
    color: #00d084;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.product-category {
    font-size: 12px;
    color: #00d084;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
}

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

.product-title a {
    color: #00d084;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #00d084;
}

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

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.08);
}

.no-products p {
    font-size: 16px;
    color: #00d084;
}

.no-products a {
    color: #00d084;
    text-decoration: none;
    font-weight: 600;
}

.no-products a:hover {
    text-decoration: underline;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    border-top: 1px solid #e0e0e0;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-actions .btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-actions .btn-primary {
    background: #00d084;
    color: white;
}

.cookie-actions .btn-primary:hover {
    background: #00d084;
}

.cookie-actions .btn-secondary {
    background: #f8f9fa;
    color: #00d084;
    border: 1px solid #ddd;
}

.cookie-actions .btn-secondary:hover {
    background: #e9ecef;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #00d084;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-button a:hover {
    background: #00d084;
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: #ffffff;
    color: #333333;
    padding: 50px 0 30px;
    margin-top: 60px;
    border-top: 2px solid #00d084;
    box-shadow: 0 -2px 10px rgba(0, 208, 132, 0.1);
}

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

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

.footer-section {
    padding: 0 10px;
}

.footer-section h3 {
    color: #00d084;
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #00d084;
}

.footer-section p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-section a {
    color: #333333;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 0;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section a:hover {
    color: #00d084;
    transform: translateX(5px);
}

.footer-section a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #00d084;
    transition: width 0.3s ease;
}

.footer-section a:hover::before {
    width: 100%;
}

/* Liste stilleri */
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.footer-section ul li a i {
    margin-right: 10px;
    color: #00d084;
    width: 16px;
    font-size: 0.9em;
}

/* İletişim bilgileri */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-item i {
    color: #00d084;
    font-size: 1.1em;
    margin-top: 2px;
    width: 16px;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    color: #333333;
    display: block;
    margin-bottom: 4px;
    font-size: 0.95em;
}

.contact-item p {
    color: #666666;
    margin: 0;
    font-size: 0.9em;
}

/* Sosyal medya linkleri */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background:  #ffffffff;
    color: #00d084;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.social-links a:hover {
    background: #ffffffff;
    color: #00d084;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 208, 132, 0.3);
}

/* Footer alt kısım */
.footer-bottom {
    border-top: 1px solid #e9ecef;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #666666;
    font-size: 0.9em;
}

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

.footer-links a {
    color: #666666;
    font-size: 0.9em;
    margin: 0;
}

.footer-links a:hover {
    color: #00d084;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
        margin-top: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section {
        padding: 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 25px;
    }
    
    .footer-section h3 {
        font-size: 1.2em;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
    }
}

/* Banner Section */
.banner-section {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-bottom: 40px;
    background: #f9f9f9;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: none;
}

.banner-slide.active {
    display: block;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 69, 19, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.banner-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    line-height: 1.4;
}

.banner-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #00d084;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.banner-btn:hover {
    background: #00d084;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
    color: white;
}

/* Campaign Section */
.campaign-section {
    padding: 60px 0;
    background: #FAF0E6;
    margin-bottom: 40px;
}

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

.campaign-header h2 {
    font-size: 32px;
    font-weight: bold;
    color: #00d084;
    margin-bottom: 10px;
}

.campaign-header p {
    font-size: 16px;
    color: #00d084;
}

.campaign-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.campaign-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.campaign-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.25);
}

.campaign-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #00d084;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.campaign-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.campaign-item:hover img {
    transform: scale(1.05);
}

.campaign-info {
    padding: 25px;
    text-align: center;
}

.campaign-info h3 {
    font-size: 20px;
    font-weight: bold;
    color:  #555;
    margin-bottom: 15px;
}

.campaign-price {
    margin-bottom: 20px;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 16px;
    margin-right: 10px;
}

.new-price {
    color: #00d084;
    font-size: 24px;
    font-weight: bold;
}

.campaign-btn {
    background: #00d084;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.campaign-btn:hover {
    background: #00d084;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

/* Category Header */
.category-header {
    background: #e5eaed;
    padding: 15px 30px;
    border-bottom: 1px solid #e0e0e0;
}

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

.breadcrumb a {
    color: #00d084;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #00d084;
}

.breadcrumb i {
    color: #00d084;
    font-size: 12px;
}

.breadcrumb span {
    color: #00d084;
    font-weight: 500;
}

.category-header h1 {
    font-size: 36px;
    color: #00d084;
    margin-bottom: 15px;
    font-weight: 700;
}

.category-header p {
    color: #00d084;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 600px;
}

.category-stats {
    display: flex;
    gap: 20px;
    align-items: center;
}

.category-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00d084;
    font-weight: 600;
    font-size: 14px;
}

.category-stats i {
    font-size: 16px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e5eaed, #e5eaed), url('https://images.unsplash.com/photo-1509440159596-0249088772ff?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.918);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.6;
}

.hero .btn-primary {
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 30px;
    background: #00d084;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.hero .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

/* Campaigns Section */
.campaigns-section {
    padding: 30px 0;
    background: #fffefd;
}

.section-header {
    text-align: center;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 32px;
    color: #db0f0f;
    margin-bottom: 10px;
}

.section-header p {
    color: #555;
    font-size: 16px;
}

.campaign-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.1);
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
}

.campaign-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}



/* Campaign Badge Styles */
.campaign-card {
    position: relative;
}

.badge {
    position: absolute;
    top: 10px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}

.featured-badge {
    left: 10px;
    background: #ff6b35;
    color: white;
}

.discount-badge {
    right: 10px;
    background: #00d084;
    color: white;
}

.campaign-description {
    font-size: 14px;
    color: #666;
    margin: 8px 0;
}

.campaign-weight,
.campaign-price-per-kg {
    font-size: 13px;
    color: #555;
    margin: 4px 0;
}

.campaign-pricing {
    margin: 10px 0;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    margin-right: 8px;
}

.discounted-price {
    color: #00d084;
    font-weight: 600;
    font-size: 16px;
}

.current-price {
    color: #333;
    font-weight: 600;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        position: relative;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
        padding: 10px 0;
    }
    
    .header-actions {
        gap: 15px;
    }
    
    .main-navigation {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .nav-link {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .grid {
        grid-template-columns: 1fr 1fr;
        height: auto;
    }
    
    .category-card.large {
        grid-row: auto;
        grid-column: 1 / 3;
    }
    
    .filter-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .cookie-buttons {
        justify-content: center;
    }

    .banner-section {
        height: 300px;
    }
    
    .banner-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .banner-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .banner-btn {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .campaign-section {
        padding: 40px 0;
    }
    
    .campaign-header h2 {
        font-size: 28px;
    }
    
    .campaign-slider {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .campaign-item img {
        height: 180px;
    }
    
    .campaign-info {
        padding: 20px;
    }

    .hero {
        height: 250px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .campaign-card {
        grid-template-columns: 1fr;
    }

    .category-header {
        padding: 30px 0;
    }
    
    .category-header h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .category-header p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .breadcrumb {
        margin-bottom: 15px;
    }
    
    .category-stats {
        gap: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 40px 0 30px;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .payment-methods {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .cart {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .main-navigation {
        gap: 5px;
    }
    
    .nav-link {
        font-size: 11px;
        padding: 5px 8px;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    .category-card.large {
        grid-column: auto;
    }

    .banner-section {
        height: 250px;
    }
    
    .banner-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .banner-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .banner-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .campaign-section {
        padding: 30px 0;
    }
    
    .campaign-header h2 {
        font-size: 24px;
    }
    
    .campaign-slider {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .campaign-item img {
        height: 160px;
    }
    
    .campaign-info {
        padding: 15px;
    }
    
    .campaign-info h3 {
        font-size: 18px;
    }
    
    .new-price {
        font-size: 20px;
    }

    .category-header {
        padding: 20px 0;
    }
    
    .category-header h1 {
        font-size: 24px;
    }
    
    .breadcrumb {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .category-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 0 20px;
    }
    
    .footer-section:first-child {
        grid-column: auto;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .payment-methods {
        flex-direction: column;
        gap: 10px;
    }
}

/* Hide cookie banner initially */
.cookie-banner.hidden {
    display: none;
}
.search-container {
    flex: 1;
    max-width: 400px;
    margin: 0 20px;
}

.search-bar {
    display: flex;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    overflow: hidden;
}

.search-bar:focus-within {
    border-color: #00d084;
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .search-container {
        order: 3;
        width: 100%;
        margin: 10px 0 0 0;
        max-width: none;
    }
}