:root {
    --primary-color: #e91e63;
    --secondary-color: #4caf50;
    --accent-color: #ff9800;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #e91e63, #f06292);
    --gradient-secondary: linear-gradient(135deg, #4caf50, #81c784);
    --gradient-hero: linear-gradient(135deg, rgba(233, 30, 99, 0.9) 0%, rgba(76, 175, 80, 0.8) 100%);
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    --shadow-xl: 0 2rem 4rem rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Logo Styles */
.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Footer Hover Effects */
.hover-link {
    transition: color 0.3s ease;
}

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

.footer-section .btn:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Header Styles */
.header-section {
    position: relative;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.98) !important;
}

/* Logo Styles */
.navbar-brand {
    text-decoration: none;
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
    opacity: 0.8;
}

/* Navigation Styles */
.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    padding: 0.75rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition);
    z-index: -1;
    opacity: 0.1;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    left: 0;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* Dropdown Styles */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-xl);
    border-radius: var(--border-radius-lg);
    padding: 1rem 0;
    margin-top: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    border-radius: var(--border-radius);
    margin: 0 0.5rem;
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition);
    z-index: -1;
    opacity: 0.1;
}

.dropdown-item:hover::before {
    left: 0;
}

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

.dropdown-item i {
    color: var(--primary-color);
    transition: var(--transition);
}

/* Search Styles */
.search-container {
    width: 280px;
}

.search-input {
    border: 2px solid #e9ecef;
    border-right: none;
    border-radius: 25px 0 0 25px;
    padding: 0.6rem 1.2rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.9);
}

.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
    outline: none;
    background: white;
}

.search-btn {
    background: var(--gradient-primary);
    border: 2px solid var(--primary-color);
    border-left: none;
    border-radius: 0 25px 25px 0;
    padding: 0.6rem 1.2rem;
    transition: var(--transition);
}

.search-btn:hover {
    background: linear-gradient(135deg, #c2185b, #e91e63);
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

/* Cart Button */
.cart-btn {
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition);
    z-index: -1;
}

.cart-btn:hover::before {
    left: 0;
}

.cart-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
    border-color: var(--primary-color);
}

.cart-count {
    font-size: 0.7rem;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 1s infinite;
}

/* Call Button */
.call-btn {
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    transition: var(--transition);
    background: var(--gradient-secondary);
    border: none;
    color: white;
}

.call-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #388e3c, #4caf50);
    color: white;
}

/* Social Links */
.social-links .btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-links .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transform: scale(0);
    transition: var(--transition);
    border-radius: 50%;
}

.social-links .btn:hover::before {
    transform: scale(1);
}

.social-links .btn:hover {
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.social-links .btn i {
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero),
                url('images/heroarkaplan.jpg') center/cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

/* Floating Flowers Animation */
.floating-flowers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.flower {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.flower-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.flower-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.flower-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(45deg, #fff, #f8bbd9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

.hero-subtitle {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-size: 1.2rem;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Hero Stats */
.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.btn-hero-primary {
    background: linear-gradient(45deg, #fff, #f8f9fa);
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    padding: 1rem 2.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition);
    z-index: -1;
}

.btn-hero-primary:hover::before {
    left: 0;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: white;
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    font-weight: 600;
    padding: 1rem 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-hero-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    z-index: -1;
}

.btn-hero-secondary:hover::before {
    left: 0;
}

.btn-hero-secondary:hover {
    border-color: white;
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Hero Image */
.hero-image-container {
    animation: fadeInRight 1s ease-out 0.6s both;
}

.hero-image-wrapper {
    position: relative;
}

.hero-main-image {
    transition: var(--transition);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.hero-main-image:hover {
    transform: scale(1.05) rotate(2deg);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow);
    animation: pulse 2s infinite;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow {
    color: rgba(255, 255, 255, 0.8);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: var(--transition);
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.scroll-arrow:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-50%) scale(1.1);
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-title {
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Center last row services */
.services-section .row.g-4:last-child {
    justify-content: center;
}

.services-section .row.g-4 .col-lg-3:nth-last-child(-n+3):nth-child(n+13) {
    display: flex;
    justify-content: center;
}

@media (min-width: 992px) {
    .services-section .row.g-4 .col-lg-3:nth-child(13),
    .services-section .row.g-4 .col-lg-3:nth-child(14),
    .services-section .row.g-4 .col-lg-3:nth-child(15) {
        margin: 0 auto;
        float: none;
    }
    
    .services-section .row.g-4::after {
        content: "";
        display: table;
        clear: both;
    }
}

.service-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition-slow);
    z-index: -1;
    opacity: 0.05;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
    animation: pulse 1s infinite;
}

.service-card h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Service Cards with Images */
.service-card-with-image {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition-slow);
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.service-card-with-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card-with-image:hover .service-image img {
    transform: scale(1.1);
}

.service-card-with-image .service-content {
    padding: 1.5rem;
}

.service-card-with-image .service-content h5 {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.3;
}

.service-card-with-image .service-content p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Products Section */
.products-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.product-categories {
    margin-bottom: 3rem;
}

.category-btn {
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    margin: 0.25rem;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    font-weight: 500;
}

.category-btn.active,
.category-btn:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.product-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition-slow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay .btn {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.product-overlay .btn:hover {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-badge.bg-success {
    background: var(--gradient-secondary) !important;
}

.product-badge.bg-danger {
    background: linear-gradient(135deg, #f44336, #e57373) !important;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-rating {
    margin-bottom: 1rem;
}

.product-rating .text-warning {
    color: #ffc107 !important;
}

/* Fiyat stilleri kaldırıldı */

/* About Section */
.about-section {
    background: white;
}

.about-content {
    padding-right: 2rem;
}

.about-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-stats {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
}

.stat-box {
    text-align: center;
    padding: 1rem;
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-box .stat-label {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-images {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 400px;
}

.image-item.large {
    grid-row: 1 / 3;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.image-item:hover img {
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonial-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.author-name {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-title {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    background: white;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

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

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    transition: var(--transition);
    background: white;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
    outline: none;
}

.contact-info {
    padding-left: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-details h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
    margin-bottom: 0.25rem;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--dark-color);
}

.quick-contact .btn {
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.quick-contact .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Footer */
.footer-section {
    background: #f8f9fa !important;
    color: #333 !important;
}

.footer-brand h4 {
    color: #333 !important;
}

.footer-section a {
    color: #666 !important;
    transition: var(--transition);
}

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

.footer-section .social-links .btn {
    border-color: #666 !important;
    color: #666 !important;
}

.footer-section .social-links .btn:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
}

.footer-section h5 {
    color: #333 !important;
}

.footer-section p,
.footer-section span,
.footer-section small {
    color: #666 !important;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    transition: var(--transition);
    z-index: 1001;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128c7e;
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-xl);
    text-decoration: none;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(5deg);
    }
    66% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Responsive Design */
@media (max-width: 1199px) {
    .search-container {
        width: 220px;
    }
    
    .about-content {
        padding-right: 1rem;
    }
    
    .contact-info {
        padding-left: 1rem;
    }
}

@media (max-width: 991px) {
    .navbar-nav {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #dee2e6;
    }
    
    .navbar-nav .nav-link {
        margin: 0.25rem 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content,
    .contact-info {
        padding-right: 0;
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .image-grid {
        height: 300px;
    }
    
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .brand-name {
        font-size: 1.3rem;
    }
    
    .brand-tagline {
        font-size: 0.7rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-main-image {
        margin-top: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 1.5rem !important;
    }
    
    .hero-stats {
        padding: 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-buttons {
        text-align: center;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 200px 100px 100px;
    }
    
    .image-item.large {
        grid-row: 1;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 75px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

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

.bg-primary-custom {
    background: var(--gradient-primary) !important;
}

.shadow-custom {
    box-shadow: var(--shadow-lg) !important;
}

/* Focus States for Accessibility */
.btn:focus,
.form-control:focus,
.form-select:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Loading Animation */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-color);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Print Styles */
@media print {
    .navbar,
    .back-to-top,
    .floating-flowers {
        display: none !important;
    }
    
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    section {
        padding: 1rem 0;
    }
}

/* ===== PRODUCT DETAIL MODAL ===== */
.product-modal-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.product-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-modal-info {
    height: 400px;
    overflow-y: auto;
}

.color-option {
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid #dee2e6 !important;
    padding: 0.5rem;
    border-radius: 8px;
    background-color: white;
}

.color-option:hover {
    border-color: var(--primary-color, #e91e63) !important;
    background-color: #f8f9fa;
    transform: translateY(-1px);
}

.color-circle {
    flex-shrink: 0;
    border: 1px solid #ccc;
}

/* Fiyat stilleri kaldırıldı */

.stock-section {
    padding: 0.75rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.action-buttons .btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.action-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

.additional-info {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
}

.additional-info i {
    font-size: 1.5rem;
}

/* Modal responsive adjustments */
@media (max-width: 768px) {
    .product-modal-image {
        height: 250px;
    }
    
    .product-modal-info {
        height: auto;
        max-height: none;
    }
    
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .color-option {
        margin-bottom: 0.5rem;
    }
}

/* Product badge in modal */
.product-modal-image .product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    z-index: 10;
}

.discount-badge {
    background-color: #dc3545 !important;
}

/* Modal animation */
.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px);
}

.modal.show .modal-dialog {
    transform: none;
}

/* ===== ENHANCED FILTER SYSTEM ===== */
.filters-card {
    position: sticky;
    top: 120px;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
}

.filter-group {
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.filter-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.filter-group h6 {
    color: var(--dark-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Fiyat aralığı kaydırıcısı stilleri kaldırıldı */

/* Color Filter Grid */
.color-filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
    gap: 8px;
    max-height: 120px;
    overflow-y: auto;
}

.color-filter-item {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.color-filter-item:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.color-filter-item.selected {
    border-color: var(--primary-color);
    border-width: 3px;
    box-shadow: 0 0 0 2px rgba(233, 30, 99, 0.2);
}

.color-filter-item::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.color-filter-item.selected::after {
    opacity: 1;
}

/* Filter Summary */
#filterSummary .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.6rem;
}

/* Rating Filters */
.rating-filters .form-check-label {
    cursor: pointer;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

.rating-filters .form-check-label:hover {
    color: var(--primary-color);
}

.rating-filters .form-check-input:checked + .form-check-label {
    color: var(--primary-color);
    font-weight: 500;
}

/* Search Input Enhancement */
.filter-group .input-group .form-control {
    border-right: none;
}

.filter-group .input-group .btn {
    border-left: none;
    background: white;
    border-color: #ced4da;
}

.filter-group .input-group .btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Filter Actions */
.filter-actions .btn {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-weight: 500;
}

/* Responsive Filters */
@media (max-width: 991px) {
    .filters-card {
        position: static;
        max-height: none;
        margin-bottom: 2rem;
    }
    
    .filter-group {
        margin-bottom: 1.5rem;
    }
    
    .color-filter-grid {
        grid-template-columns: repeat(auto-fill, minmax(35px, 1fr));
        max-height: 100px;
    }
    
    .color-filter-item {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .filters-card {
        padding: 1rem;
    }
    
    .filter-group h6 {
        font-size: 0.85rem;
    }
    
    .color-filter-grid {
        grid-template-columns: repeat(auto-fill, minmax(30px, 1fr));
    }
    
    .color-filter-item {
        width: 30px;
        height: 30px;
    }
}

/* Loading States */
.filter-loading {
    opacity: 0.6;
    pointer-events: none;
}

.filter-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Product colors display */
.colors-section .color-option {
    display: inline-flex;
    align-items: center;
    margin: 0.25rem;
    padding: 0.5rem 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    background-color: white;
    transition: all 0.3s ease;
    cursor: default;
}

.colors-section .color-option:hover {
    border-color: var(--primary-color, #e91e63);
    background-color: rgba(233, 30, 99, 0.05);
}
/* Footer Renk Düzeltmeleri ve Mobil İyileştirmeler */

/* Footer'daki !important etiketli renk atamalarını düzelterek daha yönetilebilir hale getiriyoruz. */
.footer-section {
    background-color: #f8f9fa !important; /* bg-light rengi */
    color: #6c757d; /* Bootstrap'in muted text rengi */
}

.footer-section .footer-brand h4,
.footer-section h5 {
    color: var(--dark-color) !important;
}

.footer-section p,
.footer-section span,
.footer-section small,
.footer-section a {
    color: #6c757d !important;
}

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

.footer-section .social-links .btn {
    border-color: #6c757d !important;
    color: #6c757d !important;
}

.footer-section .social-links .btn:hover {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
}


/* Mobil Cihazlar İçin Geliştirilmiş Stiller */
@media (max-width: 767px) {
    body {
        font-size: 15px;
        line-height: 1.5;
    }

    .header-section .navbar-brand .logo-image {
        width: 35px;
        height: 35px;
    }
    .header-section .navbar-brand .brand-name {
        font-size: 1.2rem;
    }
    .header-section .navbar-brand .brand-tagline {
        font-size: 0.7rem;
    }

    .hero-section {
        padding-top: 120px; /* Navbar için boşluk */
        text-align: center;
    }
    .hero-title {
        font-size: 2.2rem !important;
    }
    .hero-subtitle {
        font-size: 1rem !important;
    }
    .hero-stats .stat-number {
        font-size: 1.5rem !important;
    }
    .hero-stats .stat-label {
        font-size: 0.75rem;
    }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    .hero-buttons .btn {
        width: 80%;
    }
    .hero-image-container {
        margin-top: 2.5rem;
    }

    section {
        padding: 3rem 0;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }

    .filters-card {
        padding: 1.5rem;
        position: static; /* Mobil için sticky özelliğini kaldır */
        max-height: none;
        margin-bottom: 2rem;
    }

    .footer-section {
        text-align: center;
    }
    .footer-section .d-flex,
    .footer-section .d-flex.gap-3 {
        justify-content: center !important;
    }
    .footer-section .text-md-end {
        text-align: center !important;
        margin-top: 1.5rem;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        right: 20px;
        bottom: 85px; /* back-to-top'un üstünde */
    }
    .back-to-top {
        width: 50px;
        height: 50px;
        right: 20px;
        bottom: 25px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem !important;
    }
    .page-header h1 {
        font-size: 2.2rem;
    }
    .contact-form-wrapper, .filters-card {
        padding: 1.2rem;
    }
    .hero-buttons .btn {
        width: 100%;
    }
}