/* Çiçek Saati - Dükkan renkleri (magenta, sarı, pembe, mavi) */
:root {
    --color-bg: #fff8fb;
    --color-surface: #fff;
    --color-magenta: #b71c6b;
    --color-magenta-light: #d81b60;
    --color-magenta-soft: #f8e1ef;
    --color-yellow: #f9a825;
    --color-yellow-light: #ffc107;
    --color-yellow-soft: #fff8e1;
    --color-pink: #f48fb1;
    --color-pink-light: #fce4ec;
    --color-blue: #4dd0e1;
    --color-blue-soft: #e0f7fa;
    --color-red: #c62828;
    --color-green: #2e7d32;
    --color-text: #2c2c2c;
    --color-text-muted: #5c5c5c;
    --color-border: #f5d0e4;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
    --shadow: 0 4px 20px rgba(183, 28, 107, 0.12);
    --shadow-hover: 0 8px 30px rgba(183, 28, 107, 0.2);
    --radius: 14px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-magenta);
    text-decoration: none;
    transition: color 0.2s;
}
a:hover {
    color: var(--color-magenta-light);
}

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

/* Header - Magenta şerit hissi */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(90deg, var(--color-magenta) 0%, var(--color-magenta-light) 100%);
    box-shadow: 0 2px 16px rgba(183, 28, 107, 0.35);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-yellow-light);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
}
.logo img {
    max-height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}

.main-nav {
    display: flex;
    gap: 1.75rem;
}
.main-nav a {
    color: rgba(255,255,255,0.95);
    font-weight: 500;
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a.active {
    background: rgba(255,255,255,0.2);
    color: var(--color-yellow-light);
}

.nav-toggle {
    display: none;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}
.nav-toggle::before,
.nav-toggle::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-yellow-light);
    border-radius: 1px;
}
.nav-toggle::before { top: 6px; }
.nav-toggle::after { bottom: 6px; }
.nav-toggle span {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    margin-top: -1px;
    background: var(--color-yellow-light);
    border-radius: 1px;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    .nav-toggle span { display: none; }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background: linear-gradient(180deg, var(--color-magenta) 0%, var(--color-magenta-light) 100%);
        flex-direction: column;
        padding: 4rem 1.5rem 1.5rem;
        box-shadow: -4px 0 24px rgba(0,0,0,0.2);
        transform: translateX(100%);
        transition: transform 0.3s;
    }
    .main-nav.is-open { transform: translateX(0); }
}

/* Hero - Dükkan panosu hissi: magenta + sarı */
.hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-magenta-light) 45%, var(--color-red) 100%);
    background-image:
        linear-gradient(135deg, rgba(183, 28, 107, 0.92) 0%, rgba(216, 27, 96, 0.88) 50%, rgba(198, 40, 40, 0.5) 100%),
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 8c-3 10-10 18-18 21 8 3 14 10 14 18 0 10-8 18-18 20 10 2 18 10 18 20 0 8 6 16 14 18 8-2 16-10 18-21-2 11-10 19-18 21-8-2-14-10-14-18 0-10 8-18 18-20-10-2-18-10-18-20 0-8-6-16-14-18-8 2-16 10-18 21z' fill='%23fff' fill-opacity='0.06'/%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    color: #fff;
}
.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
    color: var(--color-yellow-light);
}
.hero-content p {
    font-size: 1.15rem;
    opacity: 0.98;
    margin-bottom: 1.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius);
    transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
    border: 2px solid transparent;
    cursor: pointer;
}
.btn-primary {
    background: var(--color-yellow-light);
    color: var(--color-magenta);
    border-color: var(--color-yellow-light);
    box-shadow: 0 2px 12px rgba(249, 168, 37, 0.4);
}
.btn-primary:hover {
    background: #ffe082;
    border-color: #ffe082;
    color: var(--color-magenta);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(249, 168, 37, 0.5);
}
.btn-outline {
    background: transparent;
    color: var(--color-magenta);
    border-color: var(--color-magenta);
}
.btn-outline:hover {
    background: var(--color-magenta);
    color: #fff;
    border-color: var(--color-magenta);
}
.btn-whatsapp {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
}
.btn-whatsapp:hover {
    background: #20bd5a;
    color: #fff;
    border-color: #20bd5a;
    transform: translateY(-1px);
}
.btn-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    border: none;
}
.btn-instagram:hover {
    filter: brightness(1.1);
    color: #fff;
    transform: translateY(-1px);
}

/* Sections */
.section {
    padding: 3.5rem 0;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.2vw, 2.4rem);
    font-weight: 700;
    color: var(--color-magenta);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-yellow-light), var(--color-pink));
    margin: 0.5rem auto 0;
    border-radius: 2px;
}
.lead {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}
.text-center { text-align: center; }

/* Categories grid - Pembe/mavi vurgulu kartlar */
.categories-section {
    background: linear-gradient(180deg, #fff 0%, var(--color-pink-light) 100%);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.25s, box-shadow 0.25s;
    display: block;
    color: inherit;
    border: 2px solid var(--color-border);
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-magenta-soft);
}

.category-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: linear-gradient(145deg, var(--color-blue-soft), var(--color-pink-light));
}
.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-magenta);
    background: linear-gradient(145deg, var(--color-pink-light), var(--color-blue-soft));
}

.category-info {
    padding: 1.35rem;
}
.category-info h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--color-magenta);
}
.category-info p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Products grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
}
.products-grid-large {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--color-surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid var(--color-border);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--color-pink-light);
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 1.1rem;
}
.product-info h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--color-text);
}
.product-info p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}
.price {
    font-weight: 700;
    color: var(--color-magenta);
    font-size: 1.05rem;
}

.products-preview .text-center {
    margin-top: 1.5rem;
}

/* Ürünler bölümü (kategorilerin üstünde) */
.products-section {
    background: linear-gradient(180deg, #fff 0%, var(--color-yellow-soft) 100%);
}
.products-grid-all {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}
.product-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}
.product-card-link:hover {
    color: inherit;
}
.product-category-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* CTA - Magenta + sarı */
.cta-section {
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-magenta-light) 50%, var(--color-red) 100%);
    color: #fff;
    text-align: center;
    box-shadow: 0 -4px 24px rgba(183, 28, 107, 0.2);
}
.cta-section-top {
    padding: 2rem 0;
    box-shadow: 0 4px 24px rgba(183, 28, 107, 0.25);
}
.cta-section-top h2 {
    margin-bottom: 0.35rem;
}
.cta-section-top p {
    margin-bottom: 1rem;
}
.cta-section h2 {
    font-family: var(--font-display);
    font-size: 1.85rem;
    margin-bottom: 0.5rem;
    color: var(--color-yellow-light);
}
.cta-section p {
    margin-bottom: 1.25rem;
    opacity: 0.95;
}
.cta-section .btn-outline {
    color: #fff;
    border-color: var(--color-yellow-light);
}
.cta-section .btn-outline:hover {
    background: var(--color-yellow-light);
    color: var(--color-magenta);
    border-color: var(--color-yellow-light);
}
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* Category detail */
.breadcrumb {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--color-magenta); }
.category-header {
    margin-bottom: 2rem;
    text-align: center;
}
.category-header h1 {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3vw, 2.6rem);
    color: var(--color-magenta);
    margin-bottom: 0.5rem;
}
.no-products {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

/* Dükkan resmi (iletişim) */
.shop-image-block {
    text-align: center;
    margin-bottom: 2.5rem;
}
.shop-photo {
    max-width: 100%;
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 4px solid var(--color-magenta-soft);
}

/* Contact */
.contact-section {
    background: linear-gradient(180deg, #fff 0%, var(--color-yellow-soft) 50%, var(--color-pink-light) 100%);
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.contact-card {
    background: var(--color-surface);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    border: 2px solid var(--color-border);
    transition: transform 0.2s, border-color 0.2s;
}
.contact-card:hover {
    border-color: var(--color-magenta);
    transform: translateY(-2px);
}
.contact-card h3 {
    font-size: 1rem;
    color: var(--color-magenta);
    margin-bottom: 0.5rem;
}
.contact-address {
    max-width: 500px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: var(--color-surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 2px solid var(--color-border);
}
.contact-address h3 {
    margin-bottom: 0.5rem;
    color: var(--color-magenta);
}
.contact-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer - Dükkan panosu: magenta + sarı metin */
.site-footer {
    background: linear-gradient(90deg, var(--color-magenta) 0%, var(--color-magenta-light) 100%);
    color: #fff;
    padding: 2.5rem 0 1.5rem;
    margin-top: auto;
    box-shadow: 0 -4px 24px rgba(183, 28, 107, 0.25);
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    .footer-btn-group {
        justify-content: center;
    }
}
.footer-buttons h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--color-yellow-light);
    opacity: 0.95;
}
.footer-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}
.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    border: 2px solid rgba(255,255,255,0.3);
}
.footer-btn:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.footer-btn svg {
    flex-shrink: 0;
}
.footer-btn-whatsapp {
    background: #25d366;
    border-color: #25d366;
}
.footer-btn-whatsapp:hover {
    background: #20bd5a;
    border-color: #20bd5a;
    color: #fff;
}
.footer-btn-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: rgba(255,255,255,0.4);
}
.footer-btn-instagram:hover {
    color: #fff;
    filter: brightness(1.1);
}
.footer-brand .logo {
    color: var(--color-yellow-light);
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}
.footer-brand p,
.footer-contact p,
.footer-address p {
    font-size: 0.95rem;
    opacity: 0.95;
}
.footer-contact a,
.footer-address a,
.footer-social a {
    color: var(--color-yellow-soft);
    opacity: 0.95;
}
.footer-contact a:hover,
.footer-social a:hover {
    opacity: 1;
    color: var(--color-yellow-light);
    text-decoration: underline;
}
.footer-contact h4,
.footer-address h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--color-yellow-light);
    opacity: 0.95;
}
.footer-address .hours {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.85;
}
.copyright {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.9;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.25);
    color: var(--color-yellow-soft);
}
