:root {
    --melibo-purple: #673AB7;
    --melibo-pink: #E91E63;
    --melibo-yellow: #FFC107;
    --melibo-cyan: #00BCD4;
    --text-dark: #2d3436;
    --bg-light: #fdfdfd;
}

/* Temel Sıfırlama */
* { box-sizing: border-box; margin: 0; padding: 0; }

/* Resim Güvenliği: Sağ tıkla resim indirmeyi bir nebze engeller ve kopyalanmasını zorlaştırır */
img { -webkit-user-drag: none; -khtml-user-drag: none; -moz-user-drag: none; -o-user-drag: none; user-drag: none; }

body {
    font-family: 'Fredoka', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

.container { width: 90%; max-width: 1200px; margin: auto; padding: 0 15px; }

/* Header & Logo */
header {
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: sticky; top: 0; z-index: 1000;
}
nav { display: flex; justify-content: space-between; align-items: center; }
.logo-link { display: flex; align-items: center; }
.site-logo { height: 65px; width: auto; object-fit: contain; }

.nav-links { display: flex; list-style: none; gap: 20px; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: var(--melibo-purple); }

/* Slider */
.main-slider { width: 100%; background: var(--melibo-purple); border-bottom: 5px solid var(--melibo-yellow); }
.swiper { width: 100%; height: 500px; }
.swiper-slide img { width: 100%; height: 100%; object-fit: cover; }
.swiper-button-next, .swiper-button-prev { color: var(--melibo-yellow) !important; }
.swiper-pagination-bullet-active { background: var(--melibo-yellow) !important; }

/* Ürün Grid */
.section-title { text-align: center; margin: 60px 0 40px; font-size: 2.8rem; color: var(--melibo-purple); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; margin-bottom: 60px; }

.product-card {
    background: #fff; border-radius: 20px; padding: 25px; text-align: center;
    position: relative; transition: 0.3s ease; box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 2px solid transparent;
}
.product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.product-card img { width: 100%; height: auto; border-radius: 10px; margin-bottom: 15px; }
.product-card h3 { font-size: 1.2rem; margin-bottom: 5px; }
.weight-text { font-size: 0.85rem; color: #636e72; margin-bottom: 15px; }

.badge {
    position: absolute; top: 15px; left: 15px; background: var(--melibo-pink);
    color: white; padding: 4px 12px; border-radius: 20px; font-size: 0.7rem; font-weight: 600;
}

.view-btn {
    display: block; width: 100%; padding: 12px; border-radius: 12px;
    text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: 0.3s;
}

/* Renk Sınıfları */
.card-blue { border-bottom: 5px solid var(--melibo-cyan); }
.card-blue .view-btn { background: var(--melibo-cyan); color: white; }
.card-yellow { border-bottom: 5px solid var(--melibo-yellow); }
.card-yellow .view-btn { background: var(--melibo-yellow); color: #333; }
.card-pink { border-bottom: 5px solid var(--melibo-pink); }
.card-pink .view-btn { background: var(--melibo-pink); color: white; }
.card-purple { border-bottom: 5px solid var(--melibo-purple); }
.card-purple .view-btn { background: var(--melibo-purple); color: white; }

/* Footer */
footer { background: #2d3436; color: white; text-align: center; padding: 50px 0; }
.footer-logo { max-width: 150px; filter: brightness(0) invert(1); margin-bottom: 20px; }

/* Responsive */
@media (max-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
    .swiper { height: 350px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .section-title { font-size: 2rem; }
    .nav-links { display: none; }
    .site-logo { height: 50px; }
}