/* Tasarım 1 - Koyu ve lüks bir tasarım */
:root {
    --primary-color: #2c2c2c;
    --secondary-color: #c8a97e;
    --tertiary-color: #a67c52;
    --accent-color: #d4b483;
    --bg-color: #1a1a1a;
    --dark-bg: #111111;
    --light-text: #f0ece2;
    --dark-text: #2c2c2c;
    --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    --hover-shadow: 0 10px 25px rgba(200, 169, 126, 0.25);
    --gradient-1: linear-gradient(to right, #2c2c2c, #3a3a3a);
    --gradient-2: linear-gradient(to right, #c8a97e, #a67c52);
    --gradient-3: linear-gradient(to bottom, #c8a97e, #a67c52);
    --price-color: #c8a97e;
}

body {
    font-family: 'Playfair Display', serif;
    background-color: var(--bg-color);
    background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" fill="%231a1a1a"/><path d="M0,0 L20,20 M20,0 L0,20" stroke="%23222222" stroke-width="0.5"/></svg>');
    color: var(--light-text);
    overflow-x: hidden;
}

.main-container {
    min-height: 100vh;
    padding: 2rem 0;
    position: relative;
}

.glow-effect {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.1;
    z-index: 0;
}

.glow-1 {
    top: -50px;
    left: -50px;
    background: var(--secondary-color);
}

.glow-2 {
    bottom: 30%;
    right: -50px;
    background: var(--tertiary-color);
}

.glow-3 {
    bottom: -50px;
    left: 30%;
    background: var(--secondary-color);
}

.page-header {
    position: relative;
    padding: 2.5rem 0;
    text-align: center;
    margin-bottom: 3rem;
    background: rgba(42, 42, 42, 0.7);
    border-radius: 0;
    border-bottom: 2px solid var(--secondary-color);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.page-header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--secondary-color);
    opacity: 0.5;
}

.page-header:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--secondary-color);
    opacity: 0.5;
}

.logo-container {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.logo-text {
    font-weight: 600;
    position: relative;
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(200, 169, 126, 0.3);
}

.page-header h1 {
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 0.7rem;
    font-size: 2.7rem;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
}

.page-subtitle {
    color: var(--light-text);
    font-size: 1rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
    opacity: 0.8;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.neon-icon {
    display: block;
    font-size: 1.5rem;
    position: absolute;
    color: var(--secondary-color);
    opacity: 0.7;
}

.neon-icon-1 {
    top: 20px;
    left: 20px;
}

.neon-icon-2 {
    bottom: 20px;
    right: 20px;
}

.category-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
    z-index: 2;
}

.category-pair {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.category-item {
    width: 50%;
    padding: 0 0.7rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.category-card {
    transition: all 0.3s ease;
    height: 100%;
    border: none;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    position: relative;
    background: rgba(42, 42, 42, 0.7);
    border-bottom: 1px solid var(--secondary-color);
    backdrop-filter: blur(5px);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.category-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.category-card:hover:before {
    opacity: 0.3;
}

.category-card .card-body {
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 1.2rem;
    text-align: left;
    border-left: 0;
}

.category-card:hover .card-body {
    background: transparent;
}

.category-image {
    height: 180px;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: contrast(1.1) brightness(0.9);
    position: relative;
    z-index: 1;
}

.category-card:hover .category-image {
    transform: scale(1.05);
    filter: contrast(1.15) brightness(1);
}

.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    background: var(--secondary-color);
    color: var(--dark-text);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.card-title {
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.card-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 30px;
    background: var(--secondary-color);
}

.category-card:hover .card-title {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 0;
    background: rgba(42, 42, 42, 0.7);
    color: var(--secondary-color);
    transition: all 0.3s ease;
    border: 1px solid var(--secondary-color);
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    color: var(--dark-text);
}

.page-footer {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem 0;
    color: var(--light-text);
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(200, 169, 126, 0.3);
    font-family: 'Playfair Display', serif;
    opacity: 0.8;
}

/* Ürün kartları stilini düzenleyelim */
.product-card {
    background: rgba(42, 42, 42, 0.7);
    border: none;
    border-radius: 0;
    border-bottom: 1px solid var(--secondary-color);
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(5px);
    min-height: 120px;
    height: auto;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.product-price {
    color: var(--price-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: auto;
}

.product-ingredients {
    color: var(--light-text);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    opacity: 0.7;
}

.product-image-container {
    width: 120px;
    min-width: 120px;
    max-width: 120px;
    height: 120px;
    border-right: 1px solid rgba(200, 169, 126, 0.3);
    position: relative;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: contrast(1.1) brightness(0.9);
}

.product-image-container a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-header {
    background: rgba(42, 42, 42, 0.7);
    padding: 2rem;
    border-radius: 0;
    border-bottom: 1px solid var(--secondary-color);
    margin-bottom: 2rem;
    position: relative;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(5px);
}

.category-header h1 {
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    background: none;
    color: var(--light-text);
    padding: 0.5rem 0;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    border: none;
    font-family: 'Playfair Display', serif;
    opacity: 0.8;
}

.back-btn:hover {
    color: var(--secondary-color);
    transform: translateX(-5px);
    opacity: 1;
}

.back-btn i {
    margin-right: 0.5rem;
}

.floating-action {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 0;
    background: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: var(--card-shadow);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--dark-text);
}

.floating-action:hover {
    transform: translateY(-5px);
    background: var(--tertiary-color);
}

.floating-emojis {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 0;
    background: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: var(--card-shadow);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--dark-text);
}

.floating-emojis:hover {
    transform: translateY(-5px);
    background: var(--tertiary-color);
}

.emoji-icon {
    display: inline-block;
    margin-right: 5px;
}

/* Medya sorguları */
@media (max-width: 768px) {
    .page-header {
        padding: 2rem 0;
        margin-bottom: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .card-title {
        font-size: 1rem;
    }
    
    .category-image {
        height: 150px;
    }
    
    .card-body {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .category-item {
        width: 100%;
        padding: 0 0.5rem;
    }
    
    .product-image-container {
        width: 100px;
        min-width: 100px;
        max-width: 100px;
        height: 100px;
    }
}

/* Animasyonlar */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
} 