/*
Theme Name: Aksu Bal
Theme URI: https://aksubal.com
Description: Trakya'nın doğal çiçek balları için özel tasarlanmış premium e-ticaret teması. Enravo Base teması üzerine inşa edilmiştir.
Author: Enravo
Author URI: https://enravo.com
Template: enravo-base
Version: 1.0.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aksu-bal
Tags: woocommerce, e-commerce, honey, organic, food

Aksu Bal - Poleniyle Güçlü, Lezzetiyle Doğal
*/

/* ==========================================================================
   CSS Variables - Aksu Bal Premium Theme
   ========================================================================== */

:root {
    /* Colors - Primary (Bal/Amber tonları) */
    --erv-color-primary: #b45309;
    --erv-color-primary-hover: #92400e;
    --erv-color-primary-light: #fef3c7;
    --erv-color-primary-dark: #78350f;

    /* Colors - Secondary (Doğa/Yeşil tonları) */
    --erv-color-secondary: #166534;
    --erv-color-secondary-hover: #14532d;
    --erv-color-secondary-light: #dcfce7;

    /* Colors - Accent (Petek/Sarı) */
    --aksu-color-accent: #fbbf24;
    --aksu-color-accent-light: #fde68a;
    --aksu-color-accent-dark: #d97706;

    /* Colors - Neutral (Sıcak tonlar) */
    --erv-color-text: #451a03;
    --erv-color-text-muted: #78350f;
    --erv-color-text-light: #a16207;
    --erv-color-background: #fffbeb;
    --erv-color-surface: #fef3c7;
    --erv-color-surface-alt: #fff7ed;
    --erv-color-border: #fde68a;
    --erv-color-border-dark: #fbbf24;

    /* Typography - Google Fonts */
    --aksu-font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --aksu-font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --erv-font-family: var(--aksu-font-body);

    /* Aksu Bal Gradients */
    --aksu-gradient-honey: linear-gradient(135deg, #fbbf24 0%, #d97706 50%, #92400e 100%);
    --aksu-gradient-honey-light: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    --aksu-gradient-nature: linear-gradient(135deg, #166534 0%, #15803d 100%);
    --aksu-gradient-warm: linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%);

    /* Shadows */
    --aksu-shadow-warm: 0 4px 20px rgba(180, 83, 9, 0.15);
    --aksu-shadow-glow: 0 0 30px rgba(251, 191, 36, 0.4);
    --aksu-shadow-card: 0 8px 30px rgba(180, 83, 9, 0.12);
    --aksu-shadow-card-hover: 0 20px 50px rgba(180, 83, 9, 0.2);

    /* Animations */
    --aksu-transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --aksu-transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);

    /* Grid - 2 columns for products */
    --erv-grid-columns-mobile: 1;
    --erv-grid-columns-tablet: 2;
    --erv-grid-columns-desktop: 2;
}

/* ==========================================================================
   Typography Override
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--aksu-font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* ==========================================================================
   Hexagon Pattern Background (Subtle)
   ========================================================================== */

.aksu-hexagon-bg {
    position: relative;
}

.aksu-hexagon-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23fbbf24' fill-opacity='0.05'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.aksu-hexagon-bg > * {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Bee Animation (On Hover)
   ========================================================================== */

@keyframes beeFly {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(5px, -8px) rotate(5deg);
    }
    50% {
        transform: translate(10px, 0) rotate(0deg);
    }
    75% {
        transform: translate(5px, 8px) rotate(-5deg);
    }
}

@keyframes beeWiggle {
    0%, 100% {
        transform: rotate(-3deg);
    }
    50% {
        transform: rotate(3deg);
    }
}

@keyframes honeyDrip {
    0% {
        transform: translateY(-10px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Page Load Animations */
.aksu-animate-in {
    animation: fadeInUp 0.6s var(--aksu-transition-smooth) forwards;
    opacity: 0;
}

.aksu-animate-in:nth-child(1) { animation-delay: 0.1s; }
.aksu-animate-in:nth-child(2) { animation-delay: 0.2s; }
.aksu-animate-in:nth-child(3) { animation-delay: 0.3s; }
.aksu-animate-in:nth-child(4) { animation-delay: 0.4s; }
.aksu-animate-in:nth-child(5) { animation-delay: 0.5s; }
.aksu-animate-in:nth-child(6) { animation-delay: 0.6s; }

/* ==========================================================================
   Button Animations with Bee
   ========================================================================== */

.aksu-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--erv-color-primary);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s var(--aksu-transition-smooth);
}

.aksu-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.aksu-btn:hover {
    background: var(--erv-color-primary-hover);
    transform: translateY(-3px);
    box-shadow: var(--aksu-shadow-warm);
}

.aksu-btn:hover::before {
    left: 100%;
}

/* Bee Icon on Button Hover */
.aksu-btn-bee {
    position: relative;
}

.aksu-btn-bee::after {
    content: '🐝';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.4s var(--aksu-transition-bounce);
}

.aksu-btn-bee:hover::after {
    right: 10px;
    opacity: 1;
    animation: beeWiggle 0.3s ease-in-out infinite;
}

.aksu-btn-bee:hover {
    padding-right: 3rem;
}

/* Large CTA Button */
.aksu-btn-lg {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    border-radius: 0.75rem;
}

/* Outline Button */
.aksu-btn-outline {
    background: transparent;
    border: 2px solid var(--erv-color-primary);
    color: var(--erv-color-primary);
}

.aksu-btn-outline:hover {
    background: var(--erv-color-primary);
    color: white;
}

/* ==========================================================================
   Header - Premium Style
   ========================================================================== */

.aksu-header {
    background: rgba(255, 251, 235, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--aksu-color-accent);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.aksu-header.scrolled {
    box-shadow: var(--aksu-shadow-warm);
}

.aksu-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    height: 80px;
}

/* Logo with Animation */
.aksu-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.aksu-logo:hover {
    transform: scale(1.02);
}

.aksu-logo-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 4px rgba(180, 83, 9, 0.3));
    transition: transform 0.3s ease;
}

.aksu-logo:hover .aksu-logo-icon {
    animation: beeWiggle 0.5s ease-in-out;
}

.aksu-logo-text {
    display: flex;
    flex-direction: column;
}

.aksu-logo-name {
    font-family: var(--aksu-font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--erv-color-primary);
    line-height: 1.1;
}

.aksu-logo-tagline {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--erv-color-text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Navigation */
.aksu-nav__list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.aksu-nav__list > li > a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--erv-color-text);
    font-weight: 500;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.aksu-nav__list > li > a::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--aksu-gradient-honey);
    transition: all 0.3s var(--aksu-transition-bounce);
    transform: translateX(-50%);
    border-radius: 1px;
}

.aksu-nav__list > li > a:hover {
    color: var(--erv-color-primary);
    background: var(--erv-color-primary-light);
}

.aksu-nav__list > li > a:hover::after,
.aksu-nav__list > li.current-menu-item > a::after {
    width: calc(100% - 2.5rem);
}

/* Mini Cart with Animation */
.aksu-mini-cart {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--aksu-gradient-honey);
    color: white;
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--aksu-transition-bounce);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.aksu-mini-cart:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--aksu-shadow-glow);
    color: white;
}

.aksu-mini-cart-count {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.35rem;
    background: white;
    color: var(--erv-color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    transition: transform 0.3s var(--aksu-transition-bounce);
}

.aksu-mini-cart:hover .aksu-mini-cart-count {
    transform: scale(1.2);
}

/* ==========================================================================
   Hero Section - Premium
   ========================================================================== */

.aksu-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: var(--aksu-gradient-warm);
    overflow: hidden;
}

.aksu-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23fbbf24' fill-opacity='0.06'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.aksu-hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.aksu-hero__content {
    animation: fadeInUp 0.8s var(--aksu-transition-smooth);
}

.aksu-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1.5rem;
    background: white;
    color: var(--erv-color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 2rem;
    box-shadow: 0 4px 15px rgba(180, 83, 9, 0.1);
}

.aksu-hero__badge-icon {
    animation: beeWiggle 2s ease-in-out infinite;
}

.aksu-hero__title {
    font-family: var(--aksu-font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--erv-color-text);
    margin-bottom: 1.5rem;
}

.aksu-hero__title-highlight {
    color: var(--erv-color-primary);
    position: relative;
}

.aksu-hero__title-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.3em;
    background: var(--aksu-color-accent-light);
    z-index: -1;
    border-radius: 0.15em;
}

.aksu-hero__description {
    font-size: 1.25rem;
    color: var(--erv-color-text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 500px;
}

.aksu-hero__cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Hero Image */
.aksu-hero__visual {
    position: relative;
    animation: scaleIn 0.8s var(--aksu-transition-smooth) 0.2s both;
}

.aksu-hero__image-wrapper {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--aksu-shadow-card);
}

.aksu-hero__image-wrapper::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: var(--aksu-gradient-honey);
    border-radius: 2.5rem;
    z-index: -1;
    opacity: 0.3;
    filter: blur(20px);
}

/* Floating Elements */
.aksu-hero__float {
    position: absolute;
    animation: beeFly 4s ease-in-out infinite;
}

.aksu-hero__float--bee {
    top: 20%;
    right: -10%;
    font-size: 2rem;
}

.aksu-hero__float--honeycomb {
    bottom: 10%;
    left: -5%;
    font-size: 3rem;
    animation-delay: -2s;
}

/* Hero Placeholder */
.aksu-hero__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 400px;
    background: var(--aksu-gradient-honey-light);
    border-radius: 1.5rem;
    text-align: center;
    color: var(--erv-color-text-muted);
}

/* ==========================================================================
   Features / USP Section - Hexagon Style
   ========================================================================== */

.aksu-features {
    padding: 6rem 0;
    background: white;
}

.aksu-features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.aksu-feature {
    position: relative;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--erv-color-background);
    border-radius: 1rem;
    transition: all 0.4s var(--aksu-transition-smooth);
    border: 2px solid transparent;
}

.aksu-feature:hover {
    transform: translateY(-8px);
    border-color: var(--aksu-color-accent);
    box-shadow: var(--aksu-shadow-card);
}

.aksu-feature__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    /* Hexagon shape */
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--aksu-gradient-honey-light);
    transition: all 0.3s ease;
}

.aksu-feature:hover .aksu-feature__icon {
    background: var(--aksu-gradient-honey);
    transform: rotate(30deg) scale(1.1);
}

.aksu-feature:hover .aksu-feature__icon span {
    transform: rotate(-30deg);
}

.aksu-feature__icon span {
    transition: transform 0.3s ease;
}

.aksu-feature__title {
    font-family: var(--aksu-font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--erv-color-text);
    margin-bottom: 0.75rem;
}

.aksu-feature__description {
    font-size: 0.9rem;
    color: var(--erv-color-text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   Product Cards - Large Image Style
   ========================================================================== */

.aksu-products {
    padding: 6rem 0;
    background: var(--erv-color-background);
}

.aksu-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.aksu-product-card {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.4s var(--aksu-transition-smooth);
    box-shadow: var(--aksu-shadow-card);
}

.aksu-product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--aksu-shadow-card-hover);
}

/* Product Image */
.aksu-product-card__image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--erv-color-surface);
}

.aksu-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--aksu-transition-smooth);
}

.aksu-product-card:hover .aksu-product-card__image img {
    transform: scale(1.08);
}

/* Bee on Hover */
.aksu-product-card__bee {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 3rem;
    opacity: 0;
    transition: all 0.5s var(--aksu-transition-bounce);
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
    z-index: 10;
}

.aksu-product-card:hover .aksu-product-card__bee {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    animation: beeFly 2s ease-in-out infinite;
}

/* Badges */
.aksu-product-card__badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 5;
}

.aksu-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-radius: 0.5rem;
}

.aksu-badge--sale {
    background: #ef4444;
    color: white;
}

.aksu-badge--new {
    background: var(--erv-color-secondary);
    color: white;
}

.aksu-badge--organic {
    background: var(--aksu-gradient-nature);
    color: white;
}

.aksu-badge--featured {
    background: var(--aksu-gradient-honey);
    color: white;
}

/* Product Content */
.aksu-product-card__content {
    padding: 1.75rem;
}

.aksu-product-card__category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--erv-color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.aksu-product-card__title {
    font-family: var(--aksu-font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--erv-color-text);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.aksu-product-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.aksu-product-card__title a:hover {
    color: var(--erv-color-primary);
}

/* Meta Tags */
.aksu-product-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.aksu-product-card__meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.35rem 0.75rem;
    background: var(--erv-color-surface);
    border-radius: 2rem;
    font-size: 0.8rem;
    color: var(--erv-color-text-muted);
}

.aksu-product-card__meta-tag-icon {
    font-size: 0.9rem;
}

/* Price */
.aksu-product-card__price {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.aksu-product-card__price-current {
    font-family: var(--aksu-font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--erv-color-primary);
}

.aksu-product-card__price-old {
    font-size: 1rem;
    color: var(--erv-color-text-light);
    text-decoration: line-through;
}

/* Add to Cart Button */
.aksu-product-card__add-to-cart {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--erv-color-primary);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--aksu-transition-smooth);
}

.aksu-product-card__add-to-cart::before {
    content: '🐝';
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    transition: left 0.4s var(--aksu-transition-bounce);
}

.aksu-product-card__add-to-cart:hover {
    background: var(--erv-color-primary-hover);
    padding-left: 2.5rem;
}

.aksu-product-card__add-to-cart:hover::before {
    left: 1rem;
}

/* ==========================================================================
   Region Section - Trakya & Kırklareli
   ========================================================================== */

.aksu-region {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.aksu-region__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.aksu-region__map {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--aksu-shadow-card);
}

.aksu-region__map-placeholder {
    aspect-ratio: 4/3;
    background: var(--aksu-gradient-honey-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.aksu-region__map-icon {
    font-size: 4rem;
}

.aksu-region__content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.aksu-region__content p {
    font-size: 1.1rem;
    color: var(--erv-color-text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.aksu-region__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.aksu-region__highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--erv-color-primary-light);
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--erv-color-primary);
}

/* ==========================================================================
   Process / Timeline Section
   ========================================================================== */

.aksu-process {
    padding: 6rem 0;
    background: var(--erv-color-background);
}

.aksu-process__timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.aksu-process__step {
    position: relative;
    text-align: center;
    padding: 2rem;
}

.aksu-process__step::after {
    content: '';
    position: absolute;
    top: 3rem;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: var(--aksu-color-accent);
}

.aksu-process__step:last-child::after {
    display: none;
}

.aksu-process__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1.5rem;
    background: var(--aksu-gradient-honey);
    color: white;
    font-family: var(--aksu-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.aksu-process__step-title {
    font-family: var(--aksu-font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.aksu-process__step-description {
    font-size: 0.95rem;
    color: var(--erv-color-text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   Trust Badge - Sadece Kendi Mağazamızda
   ========================================================================== */

.aksu-trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    margin: 3rem 0;
    background: white;
    border: 2px solid var(--erv-color-secondary);
    border-radius: 1rem;
    text-align: center;
}

.aksu-trust-badge__icon {
    font-size: 2rem;
    color: var(--erv-color-secondary);
}

.aksu-trust-badge__text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--erv-color-text);
}

.aksu-trust-badge__text strong {
    color: var(--erv-color-secondary);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.aksu-faq {
    padding: 6rem 0;
    background: white;
}

.aksu-faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.aksu-faq__item {
    border-bottom: 1px solid var(--erv-color-border);
}

.aksu-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--aksu-font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--erv-color-text);
    transition: color 0.3s ease;
}

.aksu-faq__question:hover {
    color: var(--erv-color-primary);
}

.aksu-faq__icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.aksu-faq__item.active .aksu-faq__icon {
    transform: rotate(45deg);
}

.aksu-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.aksu-faq__item.active .aksu-faq__answer {
    max-height: 300px;
}

.aksu-faq__answer-content {
    padding-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--erv-color-text-muted);
    line-height: 1.7;
}

/* ==========================================================================
   Blog Section
   ========================================================================== */

.aksu-blog {
    padding: 6rem 0;
    background: var(--erv-color-background);
}

.aksu-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.aksu-blog-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s var(--aksu-transition-smooth);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.aksu-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--aksu-shadow-card);
}

.aksu-blog-card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.aksu-blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.aksu-blog-card:hover .aksu-blog-card__image img {
    transform: scale(1.05);
}

.aksu-blog-card__content {
    padding: 1.5rem;
}

.aksu-blog-card__date {
    font-size: 0.8rem;
    color: var(--erv-color-text-light);
    margin-bottom: 0.5rem;
}

.aksu-blog-card__title {
    font-family: var(--aksu-font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.aksu-blog-card__title a {
    color: var(--erv-color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.aksu-blog-card__title a:hover {
    color: var(--erv-color-primary);
}

.aksu-blog-card__excerpt {
    font-size: 0.95rem;
    color: var(--erv-color-text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.aksu-cta {
    padding: 5rem 0;
    background: var(--aksu-gradient-honey);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.aksu-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.aksu-cta__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.aksu-cta__title {
    font-family: var(--aksu-font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.aksu-cta__description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.aksu-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: white;
    color: var(--erv-color-primary);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 3rem;
    text-decoration: none;
    transition: all 0.3s var(--aksu-transition-bounce);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.aksu-cta__button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    color: var(--erv-color-primary-hover);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.aksu-footer {
    background: var(--erv-color-text);
    color: white;
    padding: 5rem 0 2rem;
}

.aksu-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.aksu-footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--aksu-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.aksu-footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.aksu-footer-title {
    font-family: var(--aksu-font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

.aksu-footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.aksu-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.aksu-footer-links a:hover {
    color: var(--aksu-color-accent);
}

.aksu-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.aksu-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.aksu-footer-contact-icon {
    color: var(--aksu-color-accent);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.aksu-footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.aksu-footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.aksu-footer-social {
    display: flex;
    gap: 0.75rem;
}

.aksu-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.aksu-footer-social a:hover {
    background: var(--aksu-color-accent);
    color: var(--erv-color-text);
    transform: translateY(-3px);
}

/* ==========================================================================
   Categories Section
   ========================================================================== */

.aksu-section--categories {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--erv-color-background) 0%, white 100%);
    position: relative;
    overflow: hidden;
}

.aksu-section--categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23fbbf24' fill-opacity='0.04'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.aksu-section--categories > * {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */

.aksu-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.aksu-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1rem;
    background: var(--erv-color-primary-light);
    color: var(--erv-color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 2rem;
}

.aksu-section-title {
    font-family: var(--aksu-font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--erv-color-text);
    margin-bottom: 1rem;
}

.aksu-section-description {
    font-size: 1.125rem;
    color: var(--erv-color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    .aksu-hero__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .aksu-hero__visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .aksu-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .aksu-region__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .aksu-process__timeline {
        grid-template-columns: 1fr;
    }

    .aksu-process__step::after {
        display: none;
    }

    .aksu-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .aksu-header__inner {
        height: 70px;
    }

    .aksu-hero {
        min-height: auto;
        padding: 4rem 0;
    }

    .aksu-hero__title {
        font-size: 2rem;
    }

    .aksu-features__grid {
        grid-template-columns: 1fr;
    }

    .aksu-product-grid {
        grid-template-columns: 1fr;
    }

    .aksu-blog__grid {
        grid-template-columns: 1fr;
    }

    .aksu-section-title {
        font-size: 2rem;
    }

    .aksu-cta__title {
        font-size: 1.75rem;
    }

    .aksu-footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .aksu-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .aksu-header,
    .aksu-footer,
    .aksu-mini-cart,
    .aksu-cta {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}
