/*
Theme Name: AlPaket Theme
Description: Premium paketleme ürünleri için özel WordPress teması
Author: AlPaket
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: alpaket
Tags: e-commerce, woocommerce, business, custom-design, responsive
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
*/

/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2C3E66;
    background-color: #FFFFFF;
}

/* Header */
.header {
    background: #E8ECF5;
    color: #2C3E66;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(44, 62, 102, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    color: #2C3E66;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #2C3E66;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #FFD43B;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-box {
    padding: 0.5rem;
    border: none;
    border-radius: 25px;
    width: 200px;
}

.cart-icon, .user-icon {
    position: relative;
    color: #2C3E66;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #FFD43B;
    color: #2C3E66;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Butonlar */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #FFD43B;
    color: #2C3E66;
}

.btn-primary:hover {
    background: #2C3E66;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 212, 59, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.btn-secondary:hover {
    background: #FFFFFF;
    color: #2C3E66;
}

.btn-outline {
    background: transparent;
    color: #2C3E66;
    border: 2px solid #2C3E66;
}

.btn-outline:hover {
    background: #2C3E66;
    color: #FFFFFF;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 62, 102, 0.8), rgba(44, 62, 102, 0.8));
    color: #FFFFFF;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2C3E66;
}

/* Categories */
.categories {
    padding: 4rem 0;
    background: #D7DEED;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background: #C4CCE0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(44, 62, 102, 0.1);
    transition: transform 0.3s;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-image {
    height: 200px;
    background: linear-gradient(45deg, #E8ECF5, #D7DEED);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #2C3E66;
}

.category-content {
    padding: 1.5rem;
}

/* Products */
.featured-products {
    padding: 4rem 0;
}

.product-grid, .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #C4CCE0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(44, 62, 102, 0.1);
    transition: transform 0.3s;
    position: relative;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(44, 62, 102, 0.15);
    border-color: #FFD43B;
}

.product-image {
    height: 250px;
    background: linear-gradient(45deg, #FFFFFF, #E8ECF5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #2C3E66;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #FFD43B;
    color: #2C3E66;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2C3E66;
    font-weight: 600;
}

.product-description {
    color: #8D96A8;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.product-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #FFD43B;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #E8ECF5;
    color: #2C3E66;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #FFD43B;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #8D96A8;
    text-decoration: none;
}

.footer-section p {
    color: #8D96A8;
}

.footer-bottom {
    border-top: 1px solid #D7DEED;
    padding-top: 1rem;
    text-align: center;
    color: #8D96A8;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}