/**
 * Çiçekçi E-Ticaret Sitesi Ana CSS Dosyası
 * Fiore.vamtam.com tarzında tasarım
 */

/* CSS Variables - Fiore Çiçekçi Teması */
:root {
    --primary-color: #7A9E7F; /* Soft Sage Green */
    --secondary-color: #E8F4E8; /* Light Mint */
    --accent-color: #A8D5BA; /* Soft Mint */
    --success-color: #6B8E6B; /* Forest Green */
    --warning-color: #F4A261; /* Soft Orange */
    --danger-color: #E76F51; /* Soft Red */
    --info-color: #8ECAE6; /* Soft Blue */
    
    --light-cream: #FEFEFE; /* Off White */
    --soft-beige: #F5F5F0; /* Warm Beige */
    --light-sage: #F0F4F0; /* Very Light Sage */
    --soft-gray: #F8F9FA; /* Light Gray */
    --text-dark: #2C2C2C; /* Dark Gray */
    --text-muted: #6B6B6B; /* Medium Gray */
    --text-light: #9A9A9A; /* Light Gray */
    
    --border-radius: 4px;
    --box-shadow: 0 1px 8px rgba(122, 158, 127, 0.05);
    --transition: all 0.2s ease;
    --font-family: 'Raleway', sans-serif;
}

/* Drag & Drop Zone Styles */
#dragDropZone {
    transition: all 0.3s ease;
    cursor: pointer;
}

#dragDropZone:hover {
    background-color: #e9ecef !important;
    border-color: #007bff !important;
}

#dragDropZone.dragover {
    background-color: #e9ecef !important;
    border-color: #007bff !important;
    transform: scale(1.02);
}

.drag-drop-content {
    pointer-events: none;
}

.drag-drop-content button {
    pointer-events: all;
}

/* Image Preview Styles */
.thumbnail-img {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail-img:hover {
    transform: scale(1.05);
    border-color: #007bff;
}

.thumbnail-img.active {
    border-color: #007bff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
}

/* Genel Stiller */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-cream);
    margin: 0;
    padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

/* Buttons - Fiore Çiçekçi Teması */
.btn {
    font-family: var(--font-family);
    border-radius: var(--border-radius);
    font-weight: 400;
    padding: 10px 20px;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: none;
}

.btn-primary:hover {
    background: var(--success-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 12px rgba(122, 158, 127, 0.1);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-success {
    background: var(--success-color);
    color: white;
}

.btn-warning {
    background: var(--warning-color);
    color: white;
}

.btn-danger {
    background: var(--danger-color);
    color: white;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Top Bar - Fiore Çiçekçi Teması */
.top-bar {
    background: white;
    color: var(--text-dark);
    padding: 6px 0;
    font-size: 0.8rem;
    border-bottom: 1px solid #f0f0f0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.top-bar a:hover {
    color: var(--primary-color);
}

/* Navigation - Fiore Çiçekçi Teması */
.navbar {
    background: white;
    box-shadow: none;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.navbar-brand {
    font-family: var(--font-family);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark) !important;
    text-decoration: none;
    letter-spacing: 1px;
}

.navbar-brand:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    font-family: var(--font-family);
    color: var(--text-dark) !important;
    font-weight: 400;
    margin: 0 15px;
    transition: var(--transition);
    position: relative;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

/* Mega Menu Styles */
.mega-menu {
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    padding: 2rem 0;
    border: none;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 0;
    position: absolute;
    background: white;
    z-index: 1000;
}

.mega-menu .container {
    max-width: 1200px;
    margin: 0 auto;
}

.mega-menu-column {
    padding: 0 1rem;
}

.mega-menu-items {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.categories-nav .dropdown:hover .mega-menu {
    display: block;
}

.mega-menu .dropdown-header {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.mega-menu .dropdown-divider {
    margin: 0.5rem 0;
    border-color: #f0f0f0;
}

.mega-menu .dropdown-item {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition);
    border: none;
    background: transparent;
}

.mega-menu .dropdown-item:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateX(5px);
}

.mega-menu .dropdown-item i {
    width: 16px;
    text-align: center;
    margin-right: 0.5rem;
}

/* Cart Badge */
.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Search Form */
.search-form {
    max-width: 400px;
}

.search-form .form-control {
    border-radius: 20px 0 0 20px;
    border: 1px solid #e0e0e0;
}

.search-form .btn {
    border-radius: 0 20px 20px 0;
    border: 1px solid #e0e0e0;
    border-left: none;
    background: white;
    color: var(--text-dark);
}

.search-form .btn:hover {
    background: var(--primary-color);
    color: white;
}

/* Categories Navigation */
.categories-nav {
    background: var(--light-sage);
    border-bottom: 1px solid #e0e0e0;
    padding: 0.5rem 0;
}

.categories-nav .navbar-nav {
    width: 100%;
    justify-content: center;
}

.categories-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 4px;
    transition: var(--transition);
}

.categories-nav .nav-link:hover {
    color: var(--primary-color);
    background: rgba(122, 158, 127, 0.1);
}

.categories-nav .dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
    padding: 0.5rem 0;
}

.categories-nav .dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.categories-nav .dropdown-item:hover {
    background-color: var(--light-sage);
    color: var(--primary-color);
}

.categories-nav .dropdown-item i {
    width: 16px;
    text-align: center;
    margin-right: 0.5rem;
}

/* Search Form */
.search-form {
    position: relative;
}

.search-form .form-control {
    border-radius: 25px;
    border: 2px solid var(--soft-gray);
    padding: 12px 20px;
    padding-right: 50px;
    background: var(--soft-gray);
    transition: var(--transition);
}

.search-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 90, 140, 0.25);
    background: white;
}

.search-form .btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 0;
    background: var(--primary-color);
    color: white;
}

/* Cart Badge */
.cart-badge {
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    padding: 4px 8px;
    font-size: 0.75rem;
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 20px;
    text-align: center;
}

/* Hero Slider Section - Container Genişliğinde */
.hero-slider-section {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    padding: 2rem 0;
}

.hero-slider-section .carousel {
    height: 400px; /* Sabit yükseklik */
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
}

.hero-slider-section .carousel-item {
    height: 400px; /* Sabit yükseklik */
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.hero-slider-section .carousel-item .row {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 0 3rem;
}

.hero-slider-section .slider-row {
    height: 100%;
    align-items: center;
}

.hero-slider-section .slider-content {
    padding: 2rem 1rem;
    position: relative;
    z-index: 3;
}

.hero-slider-section .slider-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    display: block;
}

.hero-slider-section .slider-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    display: block;
    word-wrap: break-word;
}

.hero-slider-section .slider-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    display: block;
    word-wrap: break-word;
}

.hero-slider-section .slider-image-container {
    padding: 1rem;
    text-align: center;
    position: relative;
    z-index: 3;
}

.hero-slider-section .slider-image {
    max-height: 200px;
    max-width: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.hero-slider-section .slider-image:hover {
    transform: scale(1.02);
}

/* Slider Ürün Bilgileri Stilleri */
.hero-slider-section .product-info {
    text-align: center;
    margin-top: 1rem;
}

.hero-slider-section .product-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Carousel Controls - Container Genişliğinde */
.hero-slider-section .carousel-control-prev,
.hero-slider-section .carousel-control-next {
    position: absolute;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

.hero-slider-section .carousel-control-prev {
    left: 15px;
}

.hero-slider-section .carousel-control-next {
    right: 15px;
}

.hero-slider-section .carousel-control-prev:hover,
.hero-slider-section .carousel-control-next:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-slider-section .carousel-control-prev-icon,
.hero-slider-section .carousel-control-next-icon {
    filter: invert(0.7);
    width: 18px;
    height: 18px;
}

/* Carousel Indicators - Yeniden Tasarlandı */
.hero-slider-section .carousel-indicators {
    bottom: 20px;
    margin: 0;
}

.hero-slider-section .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin: 0 4px;
    transition: all 0.3s ease;
}

.hero-slider-section .carousel-indicators button.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
}

/* Responsive Design - Container Genişliğinde */
@media (max-width: 768px) {
    .hero-slider-section {
        padding: 1rem 0;
    }
    
    .hero-slider-section .carousel,
    .hero-slider-section .carousel-item {
        height: 300px;
    }
    
    .hero-slider-section .carousel-item .row {
        padding: 0 1.5rem;
    }
    
    .hero-slider-section .slider-title {
        font-size: 1.6rem;
    }
    
    .hero-slider-section .slider-description {
        font-size: 0.9rem;
    }
    
    .hero-slider-section .slider-image {
        max-height: 120px;
    }
    
    .hero-slider-section .carousel-control-prev,
    .hero-slider-section .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .hero-slider-section .carousel-control-prev {
        left: 10px;
    }
    
    .hero-slider-section .carousel-control-next {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .hero-slider-section {
        padding: 0.5rem 0;
    }
    
    .hero-slider-section .carousel,
    .hero-slider-section .carousel-item {
        height: 250px;
    }
    
    .hero-slider-section .carousel-item .row {
        padding: 0 1rem;
    }
    
    .hero-slider-section .slider-title {
        font-size: 1.3rem;
    }
    
    .hero-slider-section .slider-subtitle {
        font-size: 0.8rem;
    }
    
    .hero-slider-section .slider-image {
        max-height: 80px;
    }
    
    .hero-slider-section .carousel-control-prev,
    .hero-slider-section .carousel-control-next {
        width: 35px;
        height: 35px;
    }
    
    .hero-slider-section .carousel-control-prev {
        left: 8px;
    }
    
    .hero-slider-section .carousel-control-next {
        right: 8px;
    }
}

/* Utility Classes */
.min-vh-75 {
    min-height: 75vh;
}

.min-vh-37 {
    min-height: 37.5vh;
}

.slider-row {
    min-height: 400px;
}

/* Kategoriler - Modern Tasarım */
.categories-section {
    background: white;
    padding: 1rem 0;
}

/* 5 Kategori için özel grid */
.col-lg-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
}

.category-card {
    background: white;
    border-radius: 0;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    border: none;
    margin: 0;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    background: #e8f5e8;
    opacity: 0.9;
    transition: all 0.3s ease;
    z-index: 1;
}

/* Her kategori için farklı organik şekiller */
.category-card:nth-child(1)::before {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    background: #e8f5e8;
}

.category-card:nth-child(2)::before {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 80%;
    background: #e8f5e8;
}

.category-card:nth-child(3)::before {
    border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%;
    background: #e8f5e8;
}

.category-card:nth-child(4)::before {
    border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
    background: #e8f5e8;
}

.category-card:nth-child(5)::before {
    border-radius: 70% 30% 50% 50% / 30% 60% 70% 40%;
    background: #e8f5e8;
}

.category-card:nth-child(6)::before {
    border-radius: 25% 75% 40% 60% / 60% 40% 60% 40%;
    background: #e8f5e8;
}



.category-card:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.category-card:hover {
    transform: translateY(-5px);
}



/* Kategori hover efektleri için farklı renkler */
.category-card:nth-child(1)::before {
    background: linear-gradient(135deg, #E8D5FF, #D4B5FF);
}

.category-card:nth-child(2)::before {
    background: linear-gradient(135deg, #FFF3CD, #FFEAA7);
}

.category-card:nth-child(3)::before {
    background: linear-gradient(135deg, #F8F9FA, #E9ECEF);
}

.category-card:nth-child(4)::before {
    background: linear-gradient(135deg, #FFE5E5, #FFB3B3);
}

.category-card:nth-child(5)::before {
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
}

.category-image {
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 160px;
}

.category-photo {
    width: 140px;
    height: 140px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: none;
    z-index: 2;
    position: relative;
    margin-bottom: 0.8rem;
}

.category-card:hover .category-photo {
    transform: scale(1.05);
}

.category-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    opacity: 1;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.category-card:hover .category-icon {
    color: white;
    transform: scale(1.1);
}

.category-name {
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    line-height: 1.2;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    margin-top: 0;
    text-transform: none;
    letter-spacing: 0.2px;
}

.category-card:hover .category-name {
    color: white;
    transform: scale(1.05);
}

/* Responsive Kategoriler */
@media (max-width: 1200px) {
    .col-lg-2-4 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width: 768px) {
    .categories-section {
        padding: 2rem 0;
    }
    
    .col-lg-2-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    
    .category-card {
        min-height: 100px;
        padding: 1.5rem 0.5rem;
    }
    
    .category-photo {
        width: 120px;
        height: 120px;
    }
    
    .category-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .category-name {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .col-lg-2-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .category-card {
        min-height: 90px;
        padding: 1rem 0.5rem;
    }
    
    .category-photo {
        width: 100px;
        height: 100px;
    }
    
    .category-icon {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }
    
    .category-name {
        font-size: 0.8rem;
    }
}

/* Cards - Fiore Çiçekçi Teması */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: none;
    transition: var(--transition);
    overflow: hidden;
    background: white;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 15px rgba(122, 158, 127, 0.08);
}

.card-header {
    background: white;
    border-bottom: 1px solid #f0f0f0;
    padding: 1rem;
}

.card-body {
    padding: 1rem;
}

/* Product Cards - Fiore Çiçekçi Teması */
.product-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    overflow: hidden;
    background: white;
    height: 100%;
    width: 300px; /* Yeni küçük foto genişliği */
    margin: 0 auto; /* Kartları ortala */
    cursor: pointer; /* Tıklanabilir olduğunu göster */
    text-decoration: none; /* Link altı çizgisini kaldır */
    color: inherit; /* Varsayılan link rengini kaldır */
    display: block; /* Block element yap */
}
 

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none; /* Hover'da da altı çizgi olmasın */
    color: inherit; /* Hover'da da renk değişmesin */
    border-color: #c0c0c0;
}

.product-card .card-img-top {
    height: 375px; /* Yeni küçük foto yüksekliği */
    width: 300px; /* Yeni küçük foto genişliği */
    object-fit: cover; /* Kartta tam sığması için */
    background-color: #f8f9fa; /* Arka plan rengi */
    transition: var(--transition);
}

.product-card:hover .card-img-top {
    transform: scale(1.02);
}

.product-card .card-body {
    padding: 1rem;
    width: 300px; /* Yeni küçük foto genişliği */
}

.product-card .card-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    text-align: center;
}

.product-card .price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.product-card .old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1rem;
    margin-right: 0.5rem;
}

.product-card .discount-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--success-color);
    color: white;
    padding: 3px 6px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 500;
}

/* Ürün kartları için responsive grid ayarları */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    justify-items: center;
}

.product-grid .col-md-6,
.product-grid .col-lg-3,
.product-grid .col-lg-4 {
    width: 300px;
    max-width: 300px;
    flex: 0 0 300px;
}

/* Fiyat Stilleri */
.price-main {
    font-size: 1.4rem;
    font-weight: 700;
    color: #212529;
    line-height: 1;
}

.price-decimal {
    font-size: 0.9rem;
    font-weight: 600;
    color: #212529;
    line-height: 1;
}

.price-currency {
    font-size: 0.7rem;
    font-weight: 600;
    color: #212529;
    line-height: 1;
    vertical-align: super;
}

/* KDV Dahil Stili */
.vat-included {
    font-size: 0.85rem;
    font-weight: 400;
    color: #6c757d;
    text-align: center;
    margin-top: 0.25rem;
}

/* Aynı Gün Teslimat Stili */
.same-day-delivery {
    font-size: 0.85rem;
    font-weight: 400;
    color: #198754;
    text-align: center;
    margin-top: 0.5rem;
}

/* Responsive tasarım için medya sorguları */
@media (max-width: 768px) {
    .product-card {
        width: 100%;
        max-width: 320px;
    }
    
    .product-card .card-img-top {
        width: 100%;
        height: 280px;
    }
    
    .product-card .card-body {
        width: 100%;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 0.8rem;
    }
    
    .price-main {
        font-size: 1.2rem;
    }
    
    .price-decimal {
        font-size: 0.8rem;
    }
    
    .price-currency {
        font-size: 0.6rem;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    .price-main {
        font-size: 1.1rem;
    }
    
    .price-decimal {
        font-size: 0.7rem;
    }
    
    .price-currency {
        font-size: 0.5rem;
    }
}

/* Category Cards - Fiore Çiçekçi Teması */
.category-card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: none;
    transition: var(--transition);
    overflow: hidden;
    background: white;
    text-align: center;
    padding: 1.5rem;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 15px rgba(122, 158, 127, 0.08);
}

.category-card .category-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.category-card h5 {
    color: var(--text-dark);
    font-weight: 600;
}

.category-card .product-count {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Forms - Fiore Çiçekçi Teması */
.form-control {
    font-family: var(--font-family);
    border-radius: var(--border-radius);
    border: 1px solid #e0e0e0;
    padding: 10px 14px;
    transition: var(--transition);
    background: white;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.1rem rgba(122, 158, 127, 0.1);
    background: white;
}

.form-label {
    font-family: var(--font-family);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Alerts - Fiore Çiçekçi Teması */
.alert {
    border: none;
    border-radius: var(--border-radius);
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
}

.alert-success {
    background: #f8f9fa;
    color: var(--success-color);
    border-left: 2px solid var(--success-color);
}

.alert-danger {
    background: #f8f9fa;
    color: var(--danger-color);
    border-left: 2px solid var(--danger-color);
}

.alert-warning {
    background: #f8f9fa;
    color: var(--warning-color);
    border-left: 2px solid var(--warning-color);
}

.alert-info {
    background: #f8f9fa;
    color: var(--info-color);
    border-left: 2px solid var(--info-color);
}

/* Pagination - Çiçekçi Teması */
.pagination .page-link {
    border: none;
    color: var(--text-dark);
    padding: 12px 16px;
    margin: 0 2px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.pagination .page-link:hover {
    background: var(--primary-color);
    color: white;
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    color: white;
}

/* Footer - Fiore Çiçekçi Teması */
.footer {
    background: white;
    color: var(--text-dark);
    padding: 2.5rem 0 1rem;
    border-top: 1px solid #f0f0f0;
}

.footer h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
    margin-top: 1.5rem;
    text-align: center;
    color: var(--text-light);
}

/* Utility Classes */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-accent { color: var(--accent-color) !important; }

.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-accent { background-color: var(--accent-color) !important; }
.bg-light-cream { background-color: var(--light-cream) !important; }
.bg-soft-beige { background-color: var(--soft-beige) !important; }
.bg-light-sage { background-color: var(--light-sage) !important; }

.rounded-custom { border-radius: var(--border-radius) !important; }
.shadow-custom { box-shadow: var(--box-shadow) !important; }

/* Loading Spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .product-card .card-img-top {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

/* Floral Decorative Elements */
.floral-divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.floral-divider::before {
    content: '•';
    font-size: 1rem;
    background: white;
    padding: 0 0.5rem;
    color: var(--text-light);
}

.floral-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #f0f0f0;
    z-index: -1;
}

/* Special Effects */
.glow-effect {
    position: relative;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: var(--primary-color);
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.glow-effect:hover::before {
    opacity: 0.1;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Icon Styles */
.bi, .fas, .far, .fab {
    display: inline-block;
    vertical-align: middle;
}

.bi {
    font-size: 1em;
    line-height: 1;
}

.fas, .far, .fab {
    font-size: 1em;
    line-height: 1;
}

/* Icon sizing utilities */
.icon-sm {
    font-size: 0.875em;
}

.icon-lg {
    font-size: 1.25em;
}

.icon-xl {
    font-size: 1.5em;
}

.icon-2xl {
    font-size: 2em;
}

/* Icon colors */
.icon-primary {
    color: var(--primary-color);
}

.icon-success {
    color: var(--success-color);
}

.icon-warning {
    color: var(--warning-color);
}

.icon-danger {
    color: var(--danger-color);
}

.icon-info {
    color: var(--info-color);
}

/* Category icon specific styles */
.category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.category-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.category-card:hover .category-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.category-card:hover .category-icon i {
    color: white;
}
