/* ============================================
   CicekScript - Çiçekçi Teması
   Profesyonel & Modern Tasarım
   ============================================ */

/* Font */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #2d6a4f;
    --primary-dark: #1b4332;
    --primary-light: #40916c;
    --secondary: #f4a261;
    --accent: #e76f51;
    --success: #52b788;
    --warning: #e9c46a;
    --danger: #e63946;
    --light: #f8f9fa;
    --dark: #1d3557;
    --gray: #6c757d;
    --border: #dee2e6;
    --shadow: 0 2px 15px rgba(0,0,0,0.08);
    --shadow-hover: 0 5px 25px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: #333;
    overflow-x: hidden;
    background: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

a { text-decoration: none; color: var(--primary); transition: var(--transition); }
a:hover { color: var(--primary-dark); }

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--primary-dark);
    color: #fff;
    font-size: 13px;
    padding: 6px 0;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar a { color: rgba(255,255,255,0.8); margin-left: 15px; }
.top-bar a:hover { color: #fff; }

/* ===== HEADER / NAVBAR ===== */
.header-main {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
}
.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo h1, .logo a {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
    color: var(--primary);
    margin: 0;
}
.logo span { color: var(--secondary); }
.logo small {
    display: block;
    font-size: 11px;
    font-family: var(--font-body);
    color: var(--gray);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-actions .btn-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    position: relative;
    transition: var(--transition);
    background: #fff;
}
.header-actions .btn-icon:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.header-actions .btn-icon .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 10px;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-box {
    display: flex;
    max-width: 500px;
    width: 100%;
    margin: 0 20px;
}
.search-box input {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    border: 2px solid var(--border);
    border-right: none;
    padding: 10px 18px;
    font-size: 14px;
    width: 100%;
    transition: var(--transition);
}
.search-box input:focus {
    outline: none;
    border-color: var(--primary);
}
.search-box button {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
    padding: 0 20px;
    cursor: pointer;
    transition: var(--transition);
}
.search-box button:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

/* ===== NAVBAR ===== */
.navbar-main {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar-main .navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}
.navbar-main .navbar-nav .nav-link:hover,
.navbar-main .navbar-nav .nav-link.active {
    color: #fff !important;
    background: rgba(255,255,255,0.1);
}
.navbar-main .navbar-nav .nav-link i { margin-right: 5px; }
.navbar-main .dropdown-menu {
    border: none;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-hover);
    margin-top: 0;
    border-top: 3px solid var(--secondary);
    min-width: 220px;
}
.navbar-main .dropdown-menu .dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    transition: var(--transition);
}
.navbar-main .dropdown-menu .dropdown-item:hover {
    background: var(--light);
    color: var(--primary);
    padding-left: 25px;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    overflow: hidden;
}
.hero-slide {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(27,67,50,0.7) 0%, rgba(0,0,0,0.3) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 600px;
}
.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}
.hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.6;
}
.hero-content .btn {
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-slider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
}
.hero-slider .carousel-indicators button.active {
    background: #fff;
}
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}
.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next {
    opacity: 1;
}

/* ===== SECTION TITLE ===== */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}
.section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary);
}
.section-title p {
    color: var(--gray);
    margin-top: 10px;
    font-size: 15px;
}
.section-title.text-start h2::after {
    left: 0;
    transform: none;
}

/* ===== CATEGORY CARDS ===== */
.category-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 30px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.category-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}
.category-card:hover img { transform: scale(1.05); }
.category-card .category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
}
.category-card .category-overlay h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 2px;
}
.category-card .category-overlay small { opacity: 0.8; }

/* ===== PRODUCT CARDS ===== */
.product-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
    border: 1px solid var(--border);
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.product-card .product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}
.product-card .product-badge .badge {
    display: block;
    margin-bottom: 5px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.product-card .product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #f8f9fa;
}
.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.product-card:hover .product-image img { transform: scale(1.05); }
.product-card .product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
}
.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}
.product-card .product-actions a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: var(--transition);
}
.product-card .product-actions a:hover {
    background: var(--primary);
    color: #fff;
}
.product-card .product-body {
    padding: 18px;
    text-align: center;
}
.product-card .product-body .category-name {
    font-size: 12px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}
.product-card .product-body h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: var(--font-body);
}
.product-card .product-body h5 a {
    color: var(--dark);
}
.product-card .product-body h5 a:hover { color: var(--primary); }
.product-card .product-body .rating {
    font-size: 12px;
    margin-bottom: 8px;
}
.product-card .product-body .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}
.product-card .product-body .price .old-price {
    font-size: 14px;
    color: var(--gray);
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 8px;
}
.product-card .product-body .btn-add-cart {
    margin-top: 12px;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-section {
    background: var(--light);
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}
.breadcrumb {
    margin-bottom: 0;
    background: transparent;
    padding: 0;
}
.breadcrumb-item a { color: var(--primary); }
.breadcrumb-item.active { color: var(--gray); }

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    padding: 50px 0;
    text-align: center;
}
.page-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.page-header p {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== PRODUCT DETAIL ===== */
.product-detail .gallery-main {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 15px;
}
.product-detail .gallery-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}
.product-detail .gallery-thumbs {
    display: flex;
    gap: 10px;
}
.product-detail .gallery-thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}
.product-detail .gallery-thumbs img:hover,
.product-detail .gallery-thumbs img.active {
    border-color: var(--primary);
}
.product-detail .product-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}
.product-detail .product-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--gray);
}
.product-detail .product-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}
.product-detail .product-price .old-price {
    font-size: 20px;
    color: var(--gray);
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 10px;
}
.product-detail .product-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}
.product-detail .product-options {
    margin-bottom: 25px;
}
.product-detail .product-options .qty-input {
    width: 60px;
    text-align: center;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px;
    font-weight: 600;
}
.product-detail .btn-add-cart {
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
}
.product-detail .product-share {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

/* ===== CART PAGE ===== */
.cart-table thead th {
    background: var(--light);
    border: none;
    padding: 15px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.cart-table tbody td {
    vertical-align: middle;
    padding: 15px;
}
.cart-table .product-img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}
.cart-table .qty-control {
    display: flex;
    align-items: center;
    gap: 5px;
}
.cart-table .qty-control button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    transition: var(--transition);
}
.cart-table .qty-control button:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.cart-table .qty-control input {
    width: 50px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 5px;
}
.cart-summary {
    background: var(--light);
    border-radius: var(--radius);
    padding: 30px;
}
.cart-summary h5 {
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.cart-summary .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 15px;
}
.cart-summary .summary-row.total {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    border-top: 2px solid var(--border);
    padding-top: 15px;
    margin-top: 15px;
}

/* ===== CHECKOUT ===== */
.checkout-section .form-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
}
.checkout-section .form-control {
    border-radius: var(--radius-sm);
    border: 2px solid var(--border);
    padding: 12px 15px;
    transition: var(--transition);
}
.checkout-section .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}
.payment-method {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 15px;
}
.payment-method:hover,
.payment-method.active {
    border-color: var(--primary);
    background: rgba(45,106,79,0.03);
}
.payment-method .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}
.footer h5 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 600;
}
.footer p { font-size: 14px; line-height: 1.8; }
.footer a { color: rgba(255,255,255,0.7); }
.footer a:hover { color: var(--secondary); }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 8px; }
.footer ul li a { font-size: 14px; }
.footer ul li i { margin-right: 8px; }
.footer .social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    transition: var(--transition);
}
.footer .social-links a:hover {
    background: var(--secondary);
    color: var(--primary-dark);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37,211,102,0.6);
}
@keyframes whatsappPulse {
    0% { box-shadow: 0 4px 15px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 25px rgba(37,211,102,0.7); }
    100% { box-shadow: 0 4px 15px rgba(37,211,102,0.4); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .search-box { margin: 15px 0; }
    .hero-slide { min-height: 350px; }
    .hero-content h2 { font-size: 2rem; }
    .product-detail .gallery-main img { height: 300px; }
}
@media (max-width: 768px) {
    .hero-slide { min-height: 280px; }
    .hero-content h2 { font-size: 1.5rem; }
    .hero-content p { font-size: 0.9rem; }
    .page-header { padding: 30px 0; }
    .page-header h1 { font-size: 1.5rem; }
    .navbar-main .navbar-nav .nav-link { padding: 10px 15px; }
    .product-card .product-image { height: 180px; }
}

/* ===== UTILITY ===== */
.text-primary { color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}
.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* Login Page */
.login-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-container { width: 100%; max-width: 420px; padding: 20px; }
.login-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.login-header {
    text-align: center;
    margin-bottom: 30px;
}
.login-header h2 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
}
.login-logo { max-width: 80px; margin-bottom: 10px; }

/* Account Page */
.account-sidebar {
    background: var(--light);
    border-radius: var(--radius);
    padding: 20px;
}
.account-sidebar .nav-link {
    color: var(--dark);
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    margin-bottom: 5px;
    transition: var(--transition);
}
.account-sidebar .nav-link:hover,
.account-sidebar .nav-link.active {
    background: var(--primary);
    color: #fff;
}

/* Features Section */
.features-section {
    background: var(--light);
    padding: 60px 0;
}
.feature-box {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.feature-box:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}
.feature-box .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(45,106,79,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: var(--primary);
}
.feature-box h6 { font-family: var(--font-body); font-weight: 600; margin-bottom: 8px; }
.feature-box p { font-size: 14px; color: var(--gray); margin: 0; }

/* Newsletter */
.newsletter-section {
    background: var(--primary);
    padding: 50px 0;
    color: #fff;
}
.newsletter-section h3 { font-weight: 700; }
.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
}
.newsletter-form input {
    border-radius: 50px 0 0 50px;
    border: none;
    padding: 14px 20px;
}
.newsletter-form button {
    border-radius: 0 50px 50px 0;
    padding: 14px 30px;
    background: var(--secondary);
    border: none;
    color: #fff;
    font-weight: 600;
}

/* About Page */
.about-section { padding: 80px 0; }
.about-image {
    border-radius: var(--radius);
    overflow: hidden;
}
.about-image img { width: 100%; height: 450px; object-fit: cover; }

/* Contact Page */
.contact-info-box {
    background: var(--light);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.contact-info-box .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.contact-info-box h6 { margin-bottom: 5px; font-family: var(--font-body); }
.contact-info-box p { margin: 0; color: var(--gray); font-size: 14px; }

/* Filter Sidebar */
.filter-sidebar { background: var(--light); border-radius: var(--radius); padding: 20px; }
.filter-sidebar h6 { font-family: var(--font-body); font-weight: 600; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.filter-sidebar .form-check { margin-bottom: 8px; }

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 95px;
    right: 25px;
    z-index: 998;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: var(--transition);
    border: none;
}
.scroll-top:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-3px);
}

/* Product Attributes */
.product-attributes dt { font-weight: 600; color: var(--dark); font-size: 14px; }
.product-attributes dd { color: var(--gray); margin-bottom: 8px; }

/* Order Timeline */
.order-timeline { position: relative; padding: 0; }
.order-timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}
.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 25px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--primary);
}
.timeline-item.completed::before { background: var(--success); box-shadow: 0 0 0 2px var(--success); }
.timeline-item.cancelled::before { background: var(--danger); box-shadow: 0 0 0 2px var(--danger); }
.timeline-item h6 { margin-bottom: 2px; }
.timeline-item small { color: var(--gray); }

/* Çiçekçi Özel Tema Renkleri */
.flower-pattern {
    background-image: radial-gradient(circle at 25% 25%, rgba(45,106,79,0.03) 0%, transparent 50%);
}
.hero-section {
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 50%, #40916c 100%);
    color: #fff;
    padding: 80px 0;
}
.hero-section h1 { font-size: 3rem; font-weight: 700; margin-bottom: 20px; }
.hero-section p { font-size: 1.1rem; opacity: 0.9; max-width: 600px; }

/* Instagram Galeri */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}
.instagram-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

/* SEO İçerik */
.seo-content { background: var(--light); padding: 40px 0; }
.seo-content h2 { font-size: 1.5rem; margin-bottom: 15px; }
.seo-content p { font-size: 14px; line-height: 1.8; color: #555; }

/* Mobil Uyumluluk */
@media (max-width: 576px) {
    .hero-section { padding: 40px 0; }
    .hero-section h1 { font-size: 1.8rem; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
    .instagram-grid img { height: 130px; }
    .product-detail .product-title { font-size: 22px; }
    .product-detail .gallery-main img { height: 250px; }
}
