/* ============================================
   MUGLA BOTANIK - CUSTOM STYLES
   ============================================ */

:root {
    --primary-color: #28a745;
    --secondary-color: #20c997;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --border-radius: 12px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
}

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

/* Dropdown hover (desktop only) */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .navbar-nav .dropdown-menu {
        margin-top: 0;
        border-top: none;
        border-radius: 0 0 0.375rem 0.375rem;
    }
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* ============================================
   HERO SECTION - MINIMALIST DESIGN
   ============================================ */

.hero-section-modern {
    position: relative;
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: 450px;
    display: flex !important;
    align-items: center;
    background: #fef7f7;
    overflow: visible;
    margin-top: 76px;
    z-index: 1;
    width: 100%;
    visibility: visible !important;
    opacity: 1 !important;
}

.hero-section-modern .container {
    position: relative;
    z-index: 2;
}

/* Flower Display */
.hero-flower-display {
    position: relative;
    padding: 2rem 0;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes floatBouquet {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Main Flower Image (Kahverengi Çiçek - Büyük) */
.hero-flower-image-main {
    position: relative;
    z-index: 3;
    max-width: 100%;
    animation: floatBouquet 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.flower-image-main {
    width: 100%;
    max-width: 850px;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    /* White background will be removed by JavaScript */
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    margin-left: -30px;
}

/* Decorative Elements */
.hero-decorative {
    position: absolute;
    z-index: 2;
}

.decorative-vase {
    bottom: 40px;
    left: 20px;
    width: 50px;
    height: 70px;
    background: linear-gradient(to bottom, #8b9dc3, #a8b5d1);
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: floatDecorative 8s ease-in-out infinite;
}

.decorative-vase .vase-body {
    position: relative;
    width: 100%;
    height: 100%;
}

.vase-flower {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #ff6b9d;
    border-radius: 50% 0 50% 50%;
    transform: translateX(-50%) rotate(-45deg);
    box-shadow: 0 2px 6px rgba(255, 107, 157, 0.3);
}

.decorative-leaves {
    top: 60px;
    right: 30px;
    display: flex;
    gap: 15px;
    animation: floatDecorative 6s ease-in-out infinite;
    animation-delay: 1s;
}

.leaf {
    width: 30px;
    height: 40px;
    background: #28a745;
    border-radius: 0 100% 0 100%;
    box-shadow: 0 2px 6px rgba(40, 167, 69, 0.3);
    opacity: 0.7;
}

.leaf-1 {
    transform: rotate(-20deg);
}

.leaf-2 {
    transform: rotate(20deg);
}

@keyframes floatDecorative {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* Content Section */
.hero-content-modern {
    padding-left: 1.5rem;
    animation: fadeInRight 1s ease-out;
}

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

.hero-title-modern {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-title-modern .title-word {
    display: inline-block;
    overflow: hidden;
}

.hero-title-modern .title-word span {
    display: inline-block;
    opacity: 0;
    transform: translateX(100%);
    animation: slideInLetter 0.5s ease-out forwards;
}

.hero-title-modern .highlight {
    color: #667eea;
    font-weight: 400;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
}

@keyframes slideInLetter {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle-modern {
    font-size: 1.25rem;
    font-weight: 400;
    color: #4a5568;
    margin-bottom: 2rem;
    overflow: hidden;
}

.hero-subtitle-modern span {
    display: inline-block;
    opacity: 0;
    transform: translateX(100%);
    animation: slideInLetter 0.4s ease-out forwards;
}

.hero-subtitle-modern {
    font-size: 1.25rem;
    font-weight: 400;
    color: #4a5568;
    margin-bottom: 2rem;
}

.hero-buttons-modern {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-modern-primary {
    background: #1a202c;
    color: #fff;
    padding: 1.125rem 2.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-modern-primary:hover {
    background: #2d3748;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.btn-note {
    font-size: 0.875rem;
    color: #a0aec0;
    margin-left: 1.5rem;
}


/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-in;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s both;
}

.animate-slide-in {
    animation: slideInRight 1s ease-in;
}

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

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

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
    padding: 3rem 0;
    margin-top: 76px;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.about-hero {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero-decoration {
    animation: floatBouquet 3s ease-in-out infinite;
}

.about-badge {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.5rem 1rem;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50px;
}

.about-story-content {
    animation: fadeInRight 1s ease-out;
}

.about-image-wrapper {
    position: relative;
    animation: fadeInLeft 1s ease-out;
}

.about-image-decorative {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
    animation: floatDecorative 4s ease-in-out infinite;
}

.about-main-image {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.about-main-image:hover {
    transform: scale(1.05);
}

.feature-card {
    background: #fff;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    border-color: #28a745;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.15);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, #28a745, #20c997);
    transform: scale(1.1) rotate(5deg);
}

.feature-icon {
    font-size: 2.5rem;
    color: #28a745;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    color: #fff;
    transform: scale(1.1);
}

.about-mission-section {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.mission-card,
.vision-card {
    background: #fff;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
}

.mission-card:hover,
.vision-card:hover {
    border-color: #28a745;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.12);
}

.mission-icon,
.vision-icon {
    display: inline-block;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.1));
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon,
.vision-card:hover .vision-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
    transform: scale(1.1) rotate(-5deg);
}

.mission-card:hover .mission-icon i,
.vision-card:hover .vision-icon i {
    color: #fff;
}

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

.bg-gradient-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-hero {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    position: relative;
    overflow: hidden;
    padding: 3rem 0 !important;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.contact-hero .container {
    position: relative;
    z-index: 1;
}

.contact-hero-decoration {
    animation: floatBouquet 3s ease-in-out infinite;
}

.contact-info-section {
    animation: fadeInLeft 1s ease-out;
}

.contact-form-wrapper {
    animation: fadeInRight 1s ease-out;
}

.contact-info-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: #28a745;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.1);
}

.contact-icon-wrapper {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon-wrapper {
    background: linear-gradient(135deg, #28a745, #20c997);
    transform: scale(1.1) rotate(5deg);
}

.contact-icon {
    font-size: 1.125rem;
    color: #28a745;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    color: #fff;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.1));
    border-radius: 50%;
    color: #28a745;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #fff;
    transform: translateY(-5px) scale(1.1);
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.15);
}

.contact-form .form-label {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
}

.contact-form .btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

.contact-form .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
}

/* Products Section - Fixed Navbar Spacing */
.products-section {
    margin-top: 100px;
    padding-top: 2rem !important;
}

/* ============================================
   PRODUCT CARD - PROFESSIONAL DESIGN
   ============================================ */

.product-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Product Image Container */
.product-image-container {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
    background: #f8f9fa;
}

.product-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Badges */
.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge-item {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.badge-bestseller {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #fff;
}

.badge-featured {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
}

.badge-new {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    color: #fff;
}

.badge-discount {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: #fff;
}

.badge-good-price {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #6b2c91;
    font-weight: 700;
}

/* Favorite Button */
.favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.favorite-btn:hover {
    background: #fff;
    transform: scale(1.1);
}

.favorite-btn.active {
    background: #ff6b6b;
    color: #fff;
}

.favorite-btn i {
    font-size: 1.2rem;
    transition: var(--transition);
}

.favorite-btn:hover i {
    transform: scale(1.2);
}

/* Product Info */
.product-info {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8rem;
}

.product-description {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.5rem;
}

.product-stats {
    font-size: 0.75rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-rating {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.stars {
    color: #ffc107;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.1rem;
    line-height: 1;
}

.rating-text {
    font-size: 0.875rem;
    color: #6c757d;
    margin-left: 0;
    line-height: 1;
}

/* Product Price */
.product-price {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid #e9ecef;
}

.price-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.price-original {
    font-size: 0.875rem;
    color: #6c757d;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.price-discount {
    font-size: 0.75rem;
    color: #dc3545;
    font-weight: 600;
    margin-left: 0.5rem;
}

.price-info {
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

/* Special Offers */
.special-offer {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 0.5rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Best Seller Banner */
.best-seller-banner {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #fff;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */

/* Back Button */
.btn-back {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.25rem;
    background: #fff;
    color: #495057;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.btn-back:hover {
    background: #f8f9fa;
    color: #212529;
    border-color: #adb5bd;
}

.btn-back i {
    color: #6c757d;
    transition: var(--transition);
}

.btn-back:hover i {
    color: #212529;
}

/* Related Products Section - Ensure cards match other pages */
#relatedProducts {
    /* Use Bootstrap row spacing */
}

#relatedProducts .product-card {
    /* Inherit all styles from .product-card */
}

.product-detail-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.product-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-detail-info h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.product-detail-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.product-detail-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    flex: 1;
    min-width: 200px;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    color: #fff;
}

.btn-ciceksepeti {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    flex: 1;
    min-width: 200px;
}

.btn-ciceksepeti:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    color: #fff;
}

/* ============================================
   SECTION TITLES - SMALL AND ELEGANT
   ============================================ */

.section-title-small {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    text-align: left;
    letter-spacing: -0.01em;
}

/* Section title container - align with carousel */
section .container > div:first-child {
    padding-left: 0;
    padding-right: 0;
}

/* Desktop: align with carousel padding */
@media (min-width: 992px) {
    section .container > div:first-child {
        padding-left: 65px;
        padding-right: 65px;
    }
}

/* Mobile: align with carousel padding */
@media (max-width: 575.98px) {
    section .container > div:first-child {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

/* ============================================
   CAROUSEL
   ============================================ */

.products-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 65px;
}

.products-carousel .row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-carousel .row::-webkit-scrollbar {
    display: none;
}

/* Carousel Navigation Buttons */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: none;
    color: #28a745;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    font-size: 1.2rem;
}

.carousel-nav-btn:hover {
    background: #28a745;
    color: #fff;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.carousel-nav-left {
    left: 5px;
}

.carousel-nav-right {
    right: 5px;
}

.products-carousel .col-md-4,
.products-carousel .col-lg-3 {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .products-carousel .col-md-4 {
        width: 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .products-carousel .col-lg-3 {
        width: 25%;
        max-width: 25%;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* Extra Small Devices (phones, 576px and down) */
@media (max-width: 575.98px) {
    .hero-section-modern {
        display: none !important;
    }
    
    /* Öne Çıkanlar Section - Mobile: Add top padding for navbar */
    section.bg-light {
        padding-top: 100px !important;
        margin-top: 0;
    }
    
    /* Carousel - Mobile: Scrollable horizontal, no arrows, compact cards */
    .products-carousel {
        padding: 0 0.5rem;
        position: relative;
        overflow: visible;
    }
    
    .carousel-nav-btn {
        display: none !important;
    }
    
    .products-carousel .row {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 0.5rem;
        padding-bottom: 0.5rem;
        margin-left: 0;
        margin-right: 0;
    }
    
    .products-carousel .row.g-3 {
        --bs-gutter-x: 0.5rem;
        --bs-gutter-y: 0.5rem;
    }
    
    .products-carousel .row::-webkit-scrollbar {
        display: none;
    }
    
    /* Avantajlı Ürünler - Mobile: Grid layout (2 columns) */
    #advantageousProducts.row {
        flex-wrap: wrap !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
        margin-left: -0.25rem;
        margin-right: -0.25rem;
    }
    
    /* Avantajlı Ürünler carousel container - Mobile: No padding, no arrows */
    section.bg-light:last-of-type .products-carousel {
        padding: 0 0.25rem;
    }
    
    section.bg-light:last-of-type .products-carousel .carousel-nav-btn {
        display: none !important;
    }
    
    .hero-flower-display {
        height: 250px;
        margin-bottom: 1.5rem;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero .lead {
        font-size: 1.125rem;
    }
    
    .about-story-content h2 {
        font-size: 2rem;
    }
    
    .feature-card {
        margin-bottom: 1.5rem;
    }
    
    .mission-card,
    .vision-card {
        margin-bottom: 1.5rem;
    }
    
    .hero-flower-image-main {
        max-width: 100%;
    }
    
    .flower-image-main {
        max-width: 550px;
    }
    
    .hero-content-modern {
        padding-left: 0;
        text-align: center;
    }
    
    .hero-title-modern {
        font-size: 2rem !important;
    }
    
    .hero-subtitle-modern {
        font-size: 1rem;
    }
    
    .hero-buttons-modern {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-modern-primary {
        width: 100%;
        max-width: 300px;
    }
    
    .btn-note {
        margin-left: 0;
        text-align: center;
    }
    
    .hero-decorative {
        display: none;
    }
    
    .floating-petal {
        display: none;
    }
    
    /* Mobile Product Cards - Compact Design (Like 2nd image) */
    .product-card {
        margin-bottom: 0.5rem;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
    }
    
    /* Square-ish image container - not too tall */
    .product-image-container {
        padding-top: 100%; /* 1:1 aspect ratio - square */
    }
    
    .product-info {
        padding: 0.5rem;
    }
    
    .product-title {
        font-size: 0.75rem;
        margin-bottom: 0.2rem;
        min-height: 2rem;
        line-height: 1.3;
        font-weight: 600;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .product-description {
        display: none; /* Hide description on mobile for compact look */
    }
    
    .product-stats {
        display: none; /* Hide stats on mobile */
    }
    
    .product-rating {
        margin-bottom: 0.4rem;
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
    }
    
    .stars {
        font-size: 0.65rem;
        display: flex;
        align-items: center;
        gap: 0.1rem;
        line-height: 1;
    }
    
    .rating-text {
        font-size: 0.6rem;
        margin-left: 0;
        line-height: 1;
    }
    
    .product-price {
        padding-top: 0.4rem;
        border-top: none;
    }
    
    .price-main {
        font-size: 0.9rem;
        margin-bottom: 0.1rem;
        font-weight: 700;
    }
    
    .price-original {
        font-size: 0.65rem;
        margin-left: 0.3rem;
    }
    
    .price-discount {
        font-size: 0.6rem;
        margin-left: 0.3rem;
    }
    
    .price-info {
        display: none; /* Hide shipping info on mobile */
    }
    
    .badge-item {
        padding: 3px 6px;
        font-size: 0.6rem;
        border-radius: 10px;
        line-height: 1.2;
    }
    
    .favorite-btn {
        width: 28px;
        height: 28px;
        top: 6px;
        right: 6px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    }
    
    .favorite-btn i {
        font-size: 0.8rem;
    }
    
    .product-badges {
        top: 6px;
        left: 6px;
        gap: 4px;
    }
    
    /* Products Grid - Mobile: Keep grid layout (2 columns), don't make scrollable */
    #productsGrid.row,
    #relatedProducts.row {
        margin-left: -0.25rem;
        margin-right: -0.25rem;
        gap: 0.5rem;
    }
    
    #productsGrid .col-md-4,
    #productsGrid .col-lg-3,
    #relatedProducts .col-md-6,
    #relatedProducts .col-lg-3 {
        flex: 0 0 calc(50% - 0.25rem);
        max-width: calc(50% - 0.25rem);
        padding-left: 0.25rem;
        padding-right: 0.25rem;
        margin-bottom: 0;
    }
    
    
    /* Carousel cards - Mobile: Scrollable horizontal cards */
    .products-carousel .col-md-4,
    .products-carousel .col-lg-3 {
        flex: 0 0 48%;
        max-width: 48%;
        min-width: 48%;
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Featured and Favorite Products - Mobile: Scrollable */
    #featuredProducts.row,
    #favoriteProducts.row {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
    }
    
    /* Avantajlı Ürünler - Mobile: 2 columns grid (not scrollable) */
    #advantageousProducts.row {
        flex-wrap: wrap !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
        margin-left: -0.25rem;
        margin-right: -0.25rem;
        gap: 0.5rem;
    }
    
    #advantageousProducts.row .col-md-4,
    #advantageousProducts.row .col-lg-3 {
        flex: 0 0 calc(50% - 0.25rem) !important;
        max-width: calc(50% - 0.25rem) !important;
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
    
    /* Related Products Section - Mobile Compact (Override Bootstrap g-4) */
    #relatedProducts.row.g-4 {
        --bs-gutter-x: 0.5rem;
        --bs-gutter-y: 0.5rem;
        margin-left: -0.25rem;
        margin-right: -0.25rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn-whatsapp,
    .btn-ciceksepeti {
        width: 100%;
    }
    
    .product-detail-info h1 {
        font-size: 1.5rem;
    }
    
    .product-detail-price {
        font-size: 2rem;
    }
    
    .btn-back {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-section-modern {
        padding: 100px 0 50px;
        min-height: 400px;
    }
    
    .hero-flower-display {
        height: 300px;
    }
    
    .hero-flower-image-main {
        max-width: 100%;
    }
    
    .flower-image-main {
        max-width: 700px;
        margin-left: -20px;
    }
    
    .hero-title-modern {
        font-size: 2.75rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1.125rem;
    }
    
    .hero-content-modern {
        padding-left: 1rem;
    }
    
    .products-carousel .col-md-4 {
        width: 50%;
        max-width: 50%;
    }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-section-modern {
        padding: 110px 0 60px;
        min-height: 450px;
    }
    
    .hero-flower-display {
        height: 350px;
    }
    
    .hero-flower-image-main {
        max-width: 100%;
    }
    
    .flower-image-main {
        max-width: 900px;
        margin-left: -25px;
    }
    
    .hero-title-modern {
        font-size: 3rem;
    }
    
    .hero-content-modern {
        padding-left: 1.5rem;
    }
    
    .products-carousel .col-md-4 {
        width: 33.333333%;
        max-width: 33.333333%;
    }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .hero-flower-image-main {
        max-width: 100%;
    }
    
    .flower-image-main {
        max-width: 850px;
        margin-left: -30px;
    }
    
    .products-carousel .col-lg-3 {
        width: 25%;
        max-width: 25%;
    }
}

/* ============================================
   UTILITIES
   ============================================ */

.text-success {
    color: var(--primary-color) !important;
}

.bg-success {
    background-color: var(--primary-color) !important;
}

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

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

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

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Contact Section */
.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-info i {
    width: 24px;
}

/* Footer */
footer {
    margin-top: auto;
}

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

footer a:hover {
    transform: scale(1.2);
    color: var(--primary-color) !important;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
    color: #FFF;
    text-decoration: none;
}

.whatsapp-float i {
    font-size: 30px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float i {
        font-size: 24px;
    }
}