/* ============================================
   ÇİÇEK BAHÇESİ - Ana Stil Dosyası
   ============================================ */

:root {
    --pink: #ec4899;
    --pink-light: #fdf4ff;
    --pink-dark: #db2777;
    --green: #16a34a;
    --green-light: #dcfce7;
    --green-dark: #15803d;
    --purple: #a855f7;
    --purple-light: #f3e8ff;
    --cream: #fdf4ff;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-wrap: break-word;
    word-break: break-word;
}

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

table {
    max-width: 100%;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Dancing Script', cursive;
}

/* Navbar */
.navbar {
    background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar a {
    transition: all 0.3s ease;
}

.navbar a:hover {
    transform: translateY(-2px);
}

.nav-link {
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--purple-light) 50%, var(--green-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* Flower Cards */
.flower-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(236, 72, 153, 0.1);
}

.flower-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.2);
    border-color: var(--pink);
}

.flower-card .card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: linear-gradient(135deg, var(--pink-light), var(--purple-light));
    display: flex;
    align-items: center;
    justify-content: center;
}

.flower-card .card-image i {
    font-size: 4rem;
    color: var(--pink);
    transition: transform 0.4s ease;
}

.flower-card:hover .card-image i {
    transform: scale(1.15) rotate(5deg);
}

.flower-card .card-body {
    padding: 1.25rem;
}

.flower-card .price {
    color: var(--pink-dark);
    font-weight: 800;
    font-size: 1.25rem;
}

/* Category Cards */
.category-card {
    background: linear-gradient(135deg, var(--white), var(--pink-light));
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.category-card:hover {
    border-color: var(--pink);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(236, 72, 153, 0.15);
    background: linear-gradient(135deg, var(--pink-light), var(--purple-light));
}

.category-card i {
    font-size: 3rem;
    color: var(--pink);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.category-card:hover i {
    transform: scale(1.2);
}

/* Buttons */
.btn-pink {
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-pink:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
    background: linear-gradient(135deg, var(--pink-dark) 0%, var(--pink) 100%);
    color: white;
}

.btn-green {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
    color: white;
}

.btn-purple {
    background: linear-gradient(135deg, var(--purple) 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-purple:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
    color: white;
}

.btn-outline-pink {
    background: transparent;
    color: var(--pink);
    border: 2px solid var(--pink);
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-outline-pink:hover {
    background: var(--pink);
    color: white;
    transform: translateY(-2px);
}

/* Special Day Cards */
.special-day-card {
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.special-day-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: brightness(0.95);
    z-index: 0;
    transition: filter 0.3s ease;
}

.special-day-card:hover::before {
    filter: brightness(0.9);
}

.special-day-card > * {
    position: relative;
    z-index: 1;
}

.special-day-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Steps */
.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.step-circle:hover {
    transform: scale(1.1);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #d1d5db;
}

.site-footer a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: var(--pink);
}

.footer-title {
    color: var(--pink);
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Section Titles */
.section-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: var(--pink-dark);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--purple));
    border-radius: 2px;
}

/* Filter Buttons */
.filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    border: 2px solid var(--pink-light);
    background: var(--white);
    color: var(--gray-600);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--pink);
    color: white;
    border-color: var(--pink);
    transform: translateY(-2px);
}

/* Product Detail */
.product-gallery {
    background: linear-gradient(135deg, var(--pink-light), var(--purple-light));
    border-radius: 24px;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-gallery i {
    font-size: 8rem;
    color: var(--pink);
}

/* Contact Form */
.contact-form input,
.contact-form textarea,
.contact-form select {
    border: 2px solid var(--pink-light);
    border-radius: 12px;
    padding: 12px 16px;
    width: 100%;
    font-family: 'Nunito', sans-serif;
    transition: border-color 0.3s ease;
    outline: none;
    font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

/* Quantity Input */
.qty-input {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid var(--pink-light);
    border-radius: 12px;
    overflow: hidden;
    width: fit-content;
}

.qty-input button {
    width: 44px;
    height: 44px;
    border: none;
    background: var(--pink-light);
    color: var(--pink-dark);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
}

.qty-input button:hover {
    background: var(--pink);
    color: white;
}

.qty-input input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    outline: none;
    font-family: 'Nunito', sans-serif;
}

/* Badge */
.badge-pink {
    background: var(--pink);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-green {
    background: var(--green);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-purple {
    background: var(--purple);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, var(--pink-light), var(--purple-light));
    border-radius: 16px;
    padding: 1.5rem;
    border-left: 4px solid var(--pink);
}

/* Delivery Banner */
.delivery-banner {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white;
    border-radius: 16px;
    padding: 2rem;
}

/* Breadcrumb */
.breadcrumb-nav {
    background: var(--pink-light);
    padding: 1rem 0;
}

.breadcrumb-nav a {
    color: var(--pink);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-nav a:hover {
    color: var(--pink-dark);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    z-index: 9999;
    padding: 2rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Dancing Script', cursive;
    transition: transform 0.3s ease;
}

.mobile-menu a:hover {
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-pulse-slow {
    animation: pulse 3s ease-in-out infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--pink-light);
}

::-webkit-scrollbar-thumb {
    background: var(--pink);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--pink-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-section h1 {
        font-size: 2.5rem !important;
    }

    .product-gallery {
        min-height: 300px;
    }

    .product-gallery i {
        font-size: 5rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }

    .hero-section h1 {
        font-size: 2rem !important;
    }
}
