/* =============================================
   ORHAN BABA'NIN ÇİFTLİĞİ - Ortak Stiller
   ============================================= */

address { font-style: normal; }
.photo-item { margin: 0; }

:root {
    --green-dark: #2d5a27;
    --green-primary: #4a7c43;
    --green-light: #7cb342;
    --green-pale: #c5e1a5;
    --green-mist: #e8f5e9;
    --cream: #fdfdf5;
    --white: #ffffff;
    --brown: #5d4037;
    --brown-light: #8d6e63;
    --gold: #d4a84b;
    --red: #e74c3c;
    --shadow-soft: 0 10px 40px rgba(45, 90, 39, 0.1);
    --shadow-hover: 0 20px 60px rgba(45, 90, 39, 0.15);
    --navbar-height: 70px;
}

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

html {
    overflow-x: hidden;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--green-dark);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
}

/* Skip Navigation - Accessibility */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-dark);
    color: white;
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    z-index: 10000;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.2s ease;
}
.skip-to-content:focus {
    top: 0;
    color: white;
}

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

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

.animate-fade-up { animation: fadeInUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }

/* ── Top Bar ── */
.top-bar {
    background: var(--green-dark);
    padding: 8px 0;
    font-size: 0.82rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1031;
    transition: transform 0.3s ease;
}

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

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-item {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.top-bar-item:hover {
    color: var(--green-pale);
}

.top-bar-item i {
    font-size: 0.75rem;
    color: var(--green-light);
}

.top-bar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 10px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.top-bar-social {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.78rem;
    transition: all 0.2s ease;
}

.top-bar-social:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

/* ── Navbar ── */
.navbar-custom {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(45, 90, 39, 0.08);
    padding: 12px 0;
    transition: all 0.4s ease;
    top: 36px !important;
}

.navbar-custom.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(45, 90, 39, 0.12);
}

.top-bar.top-bar-hidden {
    transform: translateY(-100%);
}

.navbar-custom.top-bar-collapsed {
    top: 0 !important;
}

.navbar-custom .navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-logo-img {
    width: 110px;
    height: auto;
    transition: width 0.3s ease;
}

.navbar-custom.scrolled .navbar-logo-img {
    width: 85px;
}

.navbar-custom .nav-link {
    font-weight: 500;
    color: var(--green-dark);
    margin: 0 4px;
    padding: 10px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 7px;
    position: relative;
}

.nav-link-icon {
    font-size: 1.05rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.nav-link-arrow {
    font-size: 0.6rem;
    margin-left: 2px;
    transition: transform 0.3s ease;
}

.navbar-custom .nav-link:hover {
    background: var(--green-mist);
    color: var(--green-primary);
}

.navbar-custom .nav-link:hover .nav-link-icon {
    opacity: 1;
}

.navbar-custom .nav-link.active {
    background: var(--green-primary);
    color: white;
}

.navbar-custom .nav-link.active .nav-link-icon {
    opacity: 1;
}

.navbar-custom .nav-link.active .nav-link-arrow {
    color: rgba(255, 255, 255, 0.7);
}

/* ── Mega Menu ── */
.nav-item-mega {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 20px 60px rgba(45, 90, 39, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-top: 3px solid var(--green-primary);
}

.nav-item-mega:hover .mega-menu,
.nav-item-mega.mega-open .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item-mega:hover .nav-link-arrow {
    transform: rotate(180deg);
}

.mega-menu-inner {
    padding: 24px 30px 28px;
    max-width: 1140px;
    margin: 0 auto;
}

.mega-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--green-mist);
}

.mega-menu-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-menu-title i {
    color: var(--green-primary);
}

.mega-menu-all-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1.5px solid var(--green-primary);
    transition: all 0.3s ease;
}

.mega-menu-all-link:hover {
    background: var(--green-primary);
    color: white;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
}

.mega-menu-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    text-decoration: none;
    color: var(--green-dark);
    border: 1.5px solid transparent;
    transition: all 0.3s ease;
    background: var(--cream);
}

.mega-menu-card:hover {
    border-color: var(--green-pale);
    background: var(--green-mist);
    color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 39, 0.08);
}

.mega-menu-card-icon {
    width: 50px;
    height: 50px;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    overflow: hidden;
}

.mega-menu-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-menu-card-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mega-menu-card-name {
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1.3;
}

.mega-menu-card-count {
    font-size: 0.78rem;
    color: var(--brown-light);
}

.mega-menu-card-arrow {
    font-size: 0.7rem;
    color: var(--green-pale);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mega-menu-card:hover .mega-menu-card-arrow {
    color: var(--green-primary);
    transform: translateX(3px);
}

/* ── User Dropdown ── */
.nav-user-dropdown {
    border: none;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(45, 90, 39, 0.12);
    padding: 8px;
    min-width: 220px;
}

.nav-user-dropdown .dropdown-item {
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--green-dark);
    transition: all 0.2s ease;
}

.nav-user-dropdown .dropdown-item:hover {
    background: var(--green-mist);
    color: var(--green-primary);
}

.nav-user-dropdown .dropdown-divider {
    margin: 4px 0;
    border-color: var(--green-mist);
}

.btn-custom {
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(74, 124, 67, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(74, 124, 67, 0.4);
    color: white;
}

.nav-action-btn {
    height: 42px;
    padding: 0 1.1rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--green-dark);
    border: 1.5px solid var(--green-primary);
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-action-btn:hover,
.nav-action-btn:focus-visible {
    background: var(--green-primary);
    color: #fff;
    border-color: var(--green-primary);
}

/* Mini-cart button height aligned with other nav buttons */
.mini-cart-wrapper .btn-custom {
    height: 42px;
    padding: 0 1.1rem;
    font-size: 0.875rem;
    border-radius: 25px;
}

/* Mobile cart button (compact, icon only) */
#miniCartBtnMobile {
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* Hide collapse action buttons on mobile, show mobile ones instead */
@media (max-width: 991.98px) {
    .navbar-collapse .nav-action-btn[data-bs-target="#searchModal"],
    .navbar-collapse .mini-cart-wrapper {
        display: none !important;
    }

    .navbar-custom .container {
        flex-wrap: wrap;
    }

    .navbar-mobile-row {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-mobile-left,
    .navbar-mobile-right {
        flex: 1;
        display: flex;
        align-items: center;
    }

    .navbar-mobile-right {
        justify-content: flex-end;
        gap: 4px;
    }

    .navbar-mobile-center {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar-mobile-center .navbar-brand {
        margin: 0;
        padding: 0;
    }

    .navbar-mobile-center .navbar-logo-img {
        width: auto;
        height: 100px;
    }

    .navbar-mobile-row .nav-action-btn {
        height: 36px;
        width: 36px;
        padding: 0;
        font-size: 0.95rem;
        justify-content: center;
    }

    .navbar-mobile-row .btn-custom {
        height: 36px;
        width: 36px;
        padding: 0;
        font-size: 0.95rem;
    }

    .navbar-toggler {
        padding: 4px 8px;
        font-size: 1.1rem;
    }

    .navbar-custom.scrolled .navbar-mobile-center .navbar-logo-img {
        width: auto;
        height: 100px;
    }
}

.cart-count {
    background: var(--gold);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 5px;
}

/* Page Header */
.page-header {
    padding: 190px 0 60px;
    background: linear-gradient(180deg, var(--green-mist) 0%, var(--cream) 100%);
    position: relative;
}

.breadcrumb-custom {
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 30px;
}

.breadcrumb-custom a {
    color: var(--brown-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.breadcrumb-custom a:hover {
    color: var(--green-primary);
}

.breadcrumb-custom span {
    color: var(--green-dark);
    font-weight: 600;
}

.breadcrumb-custom i {
    color: var(--green-pale);
    font-size: 0.8rem;
}

.page-title {
    font-size: 3rem;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.page-subtitle {
    color: var(--brown-light);
    font-size: 1.1rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-pale);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--green-dark);
    font-weight: 500;
    margin-bottom: 15px;
}

.section-title {
    font-size: 3rem;
    color: var(--green-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--brown-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: var(--green-dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand .logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--green-light), var(--green-pale));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    font-size: 1.2rem;
}

.footer-text {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--green-light);
    color: var(--green-dark);
    transform: translateY(-5px);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: var(--green-light);
    opacity: 0.6;
}

.footer-links a:hover {
    color: var(--green-light);
    padding-left: 4px;
}

.footer-links a:hover i {
    opacity: 1;
    transform: translateX(3px);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.7);
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-light);
    flex-shrink: 0;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.5);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    background: #20ba5a;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    animation: none;
}

.whatsapp-float i {
    font-size: 1.5rem;
}

.whatsapp-float-text {
    font-weight: 600;
    font-size: 0.88rem;
    white-space: nowrap;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1000;
    border: none;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Animations on Scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Icon Utilities */
.icon-gold { color: var(--gold); }
.icon-green { color: var(--green-primary); }
.icon-red { color: var(--red); }
.icon-xl { font-size: 1.4rem; }

/* Text Color Utilities */
.text-brown { color: var(--brown); }
.text-brown-light { color: var(--brown-light); }
.text-green-dark { color: var(--green-dark); }

/* Link Utilities */
.link-green { color: var(--green-primary); }
.link-green:hover { color: var(--green-dark); }

/* Info Box Components */
.info-box {
    background: var(--green-mist);
    padding: 30px;
    border-radius: 20px;
}

.info-box-white {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 2px solid var(--green-pale);
}

.info-box-title {
    color: var(--green-dark);
    margin-bottom: 20px;
}

.info-box-text {
    color: var(--brown-light);
    line-height: 1.8;
}

/* Product icon emoji */
.product-icon-emoji {
    font-size: 5rem;
    display: block;
}

/* Responsive Common */
@media (max-width: 991px) {
    .page-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    .top-bar {
        display: none;
    }

    .navbar-custom {
        top: 0 !important;
    }

    .mega-menu {
        position: relative;
        top: auto;
        border-radius: 14px;
        box-shadow: none;
        border-top: none;
        opacity: 1;
        visibility: hidden;
        transform: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.4s ease, visibility 0.3s ease, padding 0.3s ease;
    }

    .nav-item-mega:hover .mega-menu,
    .nav-item-mega.mega-open .mega-menu {
        visibility: visible;
        max-height: 600px;
        overflow-y: auto;
        transform: none;
    }

    .mega-menu-inner {
        padding: 16px;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .mega-menu-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .navbar-custom .nav-link {
        margin: 2px 0;
    }
}

@media (max-width: 767px) {
    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar-logo-img {
        width: 125px;
        height: auto;
    }

    .whatsapp-float {
        bottom: 85px;
        right: 16px;
        padding: 12px;
        border-radius: 50%;
    }

    .whatsapp-float-text {
        display: none;
    }

    .scroll-top {
        right: 16px;
        bottom: 20px;
    }

    .page-header {
        padding-top: 160px;
    }
}

/* =============================================
   ACCOUNT / DASHBOARD PAGES
   ============================================= */

/* Dashboard Section */
.dashboard-section {
    padding: 50px 0 100px;
}

/* Sidebar */
.dashboard-sidebar {
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
    padding: 30px;
    position: sticky;
    top: 100px;
}

.user-info {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--green-mist);
    margin-bottom: 25px;
}

.user-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: white;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.user-avatar-img {
    width: 100px;
    height: 100px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
}

.user-info h4 {
    font-size: 1.4rem;
    color: var(--green-dark);
    margin-bottom: 5px;
}

.user-info p {
    color: var(--brown-light);
    font-size: 0.9rem;
    margin: 0;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 8px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 15px;
    color: var(--brown);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background: var(--green-mist);
    color: var(--green-primary);
}

.sidebar-menu a.active {
    background: var(--green-primary);
    color: white;
}

.sidebar-menu i {
    width: 24px;
    text-align: center;
    font-size: 1.1rem;
}

.sidebar-menu .logout-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 15px;
    color: var(--red);
    margin-top: 20px;
    border-top: 2px solid var(--green-mist);
    padding-top: 28px;
    background: transparent;
    border-left: none;
    border-right: none;
    border-bottom: none;
    width: 100%;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.sidebar-menu .logout-btn:hover {
    background: #fee;
}

/* Dashboard Content */
.dashboard-content {
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
    padding: 40px;
    min-height: 600px;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--green-mist);
}

.content-header h3 {
    font-size: 1.8rem;
    color: var(--green-dark);
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
}

.content-header h3 i {
    color: var(--green-primary);
}

/* Stats Cards */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.dashboard-section .stat-card {
    background: var(--green-mist);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.dashboard-section .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.dashboard-section .stat-card i {
    font-size: 2rem;
    color: var(--green-primary);
    margin-bottom: 15px;
}

.dashboard-section .stat-card .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-dark);
    font-family: 'Playfair Display', serif;
}

.dashboard-section .stat-card .label {
    color: var(--brown-light);
    font-size: 0.9rem;
}

/* Orders Table */
.orders-table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table th {
    background: var(--green-mist);
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    color: var(--green-dark);
}

.orders-table th:first-child {
    border-radius: 15px 0 0 15px;
}

.orders-table th:last-child {
    border-radius: 0 15px 15px 0;
}

.orders-table td {
    padding: 20px;
    border-bottom: 1px solid var(--green-mist);
}

.orders-table tr:last-child td {
    border-bottom: none;
}

.order-status {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.order-status.delivered {
    background: #d4edda;
    color: var(--green-dark);
}

.order-status.pending {
    background: #fff3cd;
    color: #856404;
}

.order-status.processing {
    background: #e8f4fd;
    color: #0c5460;
}

.order-status.shipped {
    background: #cce5ff;
    color: #004085;
}

.order-status.cancelled {
    background: #f8d7da;
    color: #721c24;
}

.btn-view {
    display: inline-block;
    padding: 8px 18px;
    background: var(--green-mist);
    color: var(--green-primary);
    border: none;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
}

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

/* Address Cards */
.address-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.address-card {
    background: var(--green-mist);
    border-radius: 20px;
    padding: 25px;
    position: relative;
}

.address-card.default {
    border: 2px solid var(--green-primary);
}

.address-card .default-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--green-primary);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.address-card h5 {
    color: var(--green-dark);
    margin-bottom: 10px;
}

.address-card p {
    color: var(--brown);
    line-height: 1.6;
    margin-bottom: 15px;
}

.address-card .phone {
    color: var(--brown-light);
    font-size: 0.9rem;
}

.address-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.address-actions a,
.address-actions button {
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-edit {
    background: white;
    border: 2px solid var(--green-primary);
    color: var(--green-primary);
}

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

.btn-delete {
    background: white;
    border: 2px solid var(--red);
    color: var(--red);
}

.btn-delete:hover {
    background: var(--red);
    color: white;
}

.btn-add-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 40px;
    background: white;
    border: 2px dashed var(--green-pale);
    border-radius: 20px;
    color: var(--green-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-add-address:hover {
    border-color: var(--green-primary);
    background: var(--green-mist);
    color: var(--green-primary);
}

/* Profile Form */
.profile-form {
    max-width: 600px;
}

.dashboard-content .form-group {
    margin-bottom: 25px;
}

.dashboard-content .form-label {
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 10px;
    display: block;
}

.dashboard-content .form-control {
    padding: 15px 20px;
    border: 2px solid var(--green-pale);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.dashboard-content .form-control:focus {
    outline: none;
    border-color: var(--green-primary);
    box-shadow: 0 0 0 4px rgba(74, 124, 67, 0.1);
}

.dashboard-content .form-control:disabled {
    background: var(--green-mist);
    cursor: not-allowed;
}

.btn-save {
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: white;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(74, 124, 67, 0.3);
}

.btn-save:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(74, 124, 67, 0.4);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 4rem;
    color: var(--green-pale);
    margin-bottom: 20px;
}

.empty-state h4 {
    color: var(--green-dark);
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--brown-light);
    margin-bottom: 25px;
}

/* Profile Avatar (profile edit page) */
.account-avatar-lg {
    width: 120px;
    height: 120px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.account-avatar-placeholder-lg {
    width: 120px;
    height: 120px;
    background: var(--green-mist);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--green-primary);
}

/* Responsive */
@media (max-width: 1199px) {
    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .dashboard-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }

    .address-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .dashboard-content {
        padding: 25px;
    }

    .stats-cards {
        grid-template-columns: 1fr;
    }

    .orders-table {
        display: block;
        overflow-x: auto;
    }
}

/* =============================================
   CART
   ============================================= */

.cart-section {
    padding: 50px 0 100px;
}

/* Cart Items Container */
.cart-items-container {
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.cart-header {
    padding: 25px 30px;
    border-bottom: 2px solid var(--green-mist);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.5rem;
    color: var(--green-dark);
    margin: 0;
}

.cart-header span {
    color: var(--brown-light);
}

.clear-cart-btn {
    padding: 10px 20px;
    border: 2px solid var(--red);
    background: white;
    color: var(--red);
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-cart-btn:hover {
    background: var(--red);
    color: white;
}

/* Cart Item */
.cart-item {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid var(--green-mist);
    transition: all 0.3s ease;
}

.cart-item:hover {
    background: var(--green-mist);
}

.cart-item.removing {
    animation: cartFadeOut 0.4s ease forwards;
}

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

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    margin-right: 25px;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-category {
    color: var(--green-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.cart-item-name {
    font-size: 1.3rem;
    color: var(--green-dark);
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart-item-name a:hover {
    color: var(--green-primary);
}

.cart-item-unit {
    color: var(--brown-light);
    font-size: 0.9rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 30px;
}

.cart-qty-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 2px solid var(--green-pale);
    background: white;
    color: var(--green-primary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-qty-btn:hover {
    background: var(--green-primary);
    color: white;
    border-color: var(--green-primary);
}

.cart-qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cart-qty-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--green-dark);
    min-width: 40px;
    text-align: center;
}

.cart-item-price {
    text-align: right;
    margin-right: 25px;
    min-width: 100px;
}

.cart-unit-price {
    color: var(--brown-light);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.cart-total-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green-primary);
}

.cart-remove-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #fee;
    color: var(--red);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-remove-btn:hover {
    background: var(--red);
    color: white;
    transform: scale(1.1);
}

/* Empty Cart */
.cart-empty {
    padding: 80px 30px;
    text-align: center;
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
}

.cart-empty-icon {
    width: 150px;
    height: 150px;
    background: var(--green-mist);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.cart-empty-icon i {
    font-size: 4rem;
    color: var(--green-pale);
}

.cart-empty h3 {
    font-size: 1.8rem;
    color: var(--green-dark);
    margin-bottom: 15px;
}

.cart-empty p {
    color: var(--brown-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.btn-shop-now {
    padding: 15px 40px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: white;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-shop-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(74, 124, 67, 0.4);
    color: white;
}

/* Order Summary */
.order-summary {
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
    padding: 30px;
    position: sticky;
    top: 100px;
}

.summary-title {
    font-size: 1.5rem;
    color: var(--green-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--green-mist);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.summary-row span {
    color: var(--brown-light);
}

.summary-row strong {
    color: var(--green-dark);
    font-size: 1.1rem;
}

.summary-divider {
    height: 2px;
    background: var(--green-mist);
    margin: 15px 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.summary-total span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--green-dark);
}

.summary-total strong {
    font-size: 2rem;
    color: var(--green-primary);
    font-family: 'Playfair Display', serif;
}

/* Coupon */
.coupon-section {
    margin: 25px 0;
    padding: 20px;
    background: var(--green-mist);
    border-radius: 15px;
}

.coupon-section label {
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 10px;
    display: block;
}

.coupon-input-group {
    display: flex;
    gap: 10px;
}

.coupon-input {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid var(--green-pale);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.coupon-input:focus {
    outline: none;
    border-color: var(--green-primary);
}

.coupon-btn {
    padding: 12px 20px;
    border: none;
    background: var(--green-primary);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coupon-btn:hover {
    background: var(--green-dark);
}

.coupon-applied {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #d4edda;
    padding: 12px 15px;
    border-radius: 10px;
    margin-top: 10px;
}

.coupon-applied span {
    color: var(--green-dark);
    font-weight: 500;
}

.coupon-applied button {
    background: none;
    border: none;
    color: var(--red);
    cursor: pointer;
}

/* Checkout Button */
.btn-checkout {
    width: 100%;
    padding: 18px;
    border: none;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: white;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(74, 124, 67, 0.3);
    text-decoration: none;
}

.btn-checkout:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(74, 124, 67, 0.4);
    color: white;
}

.btn-checkout.disabled {
    background: var(--brown-light);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    pointer-events: none;
}

/* WhatsApp Button */
.btn-whatsapp {
    width: 100%;
    padding: 18px;
    border: none;
    background: #25D366;
    color: white;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
    margin-top: 12px;
    text-decoration: none;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
    background: #20bd5a;
    color: white;
}

.btn-whatsapp.disabled {
    background: #a0a0a0;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    pointer-events: none;
}

/* Cart Features */
.cart-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.cart-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--green-mist);
    border-radius: 12px;
}

.cart-feature-item i {
    color: var(--green-primary);
    font-size: 1.1rem;
}

.cart-feature-item span {
    font-size: 0.85rem;
    color: var(--green-dark);
    font-weight: 500;
}

/* Continue Shopping */
.continue-shopping {
    margin-top: 30px;
    text-align: center;
}

.continue-shopping a {
    color: var(--green-primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.continue-shopping a:hover {
    color: var(--green-dark);
    gap: 12px;
}

/* Free Shipping Progress */
.free-shipping-progress {
    background: var(--green-mist);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.shipping-progress-text {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.shipping-progress-text span {
    color: var(--brown-light);
}

.shipping-progress-text strong {
    color: var(--green-primary);
}

.shipping-progress-bar {
    height: 10px;
    background: var(--green-pale);
    border-radius: 10px;
    overflow: hidden;
}

.shipping-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--green-primary), var(--green-light));
    border-radius: 10px;
    transition: width 0.5s ease;
}

.shipping-progress-success {
    text-align: center;
    margin-top: 10px;
    color: var(--green-primary);
    font-weight: 600;
}

.shipping-progress-success i {
    margin-right: 5px;
}

/* Cart Discount Color */
.cart-discount-text {
    color: var(--red);
}

/* Cart Responsive */
@media (max-width: 991px) {
    .order-summary {
        position: relative;
        top: 0;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .cart-item {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cart-item-image {
        width: 80px;
        height: 80px;
        margin-right: 15px;
    }

    .cart-item-details {
        flex: 1;
        min-width: 150px;
    }

    .cart-item-quantity {
        margin: 0;
    }

    .cart-item-price {
        margin-right: 0;
        min-width: auto;
    }

    .cart-features {
        grid-template-columns: 1fr;
    }

    .cart-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Mini Cart (Navbar) */
.mini-cart-wrapper {
    position: relative;
}

.mini-cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--red);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid var(--white);
}

/* Cart Remove Button */
.cart-remove-btn {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
}

@media (max-width: 767.98px) {
    .cart-item-total {
        font-size: 0.9rem;
    }

    .cart-qty-btn {
        width: 32px;
        height: 32px;
    }

    .cart-qty-input {
        width: 36px;
        height: 32px;
    }
}

/* =============================================
   CHECKOUT
   ============================================= */

/* Checkout Steps */
.checkout-steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.checkout-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: white;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
}

.checkout-step.active {
    background: var(--green-primary);
    color: white;
}

.checkout-step.completed {
    background: var(--green-light);
    color: white;
}

.checkout-step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--green-mist);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.checkout-step.active .checkout-step-number,
.checkout-step.completed .checkout-step-number {
    background: rgba(255,255,255,0.3);
}

.checkout-step-text {
    font-weight: 600;
}

.checkout-step-connector {
    width: 50px;
    height: 3px;
    background: var(--green-pale);
    align-self: center;
}

/* Checkout Section */
.checkout-section {
    padding: 60px 0 100px;
    min-height: 60vh;
}

/* Back Button */
.checkout-btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-primary);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.checkout-btn-back:hover {
    color: var(--green-dark);
    gap: 12px;
}

/* Form Card */
.form-card {
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
    padding: 40px;
    margin-bottom: 30px;
}

.form-card-title {
    font-size: 1.5rem;
    color: var(--green-dark);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--green-mist);
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-card-title i {
    width: 50px;
    height: 50px;
    background: var(--green-mist);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-primary);
}

/* Address card selection */
.checkout-address-card {
    border: 2px solid var(--green-pale);
    border-radius: 20px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-address-card:hover {
    border-color: var(--green-primary);
    background: var(--green-mist);
}

.checkout-address-card.active {
    border-color: var(--green-primary);
    background: var(--green-mist);
    box-shadow: 0 0 0 3px rgba(74, 124, 67, 0.15);
}

/* Order Summary Sidebar */
.order-summary {
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
    padding: 30px;
    position: sticky;
    top: 100px;
}

.summary-title {
    font-size: 1.5rem;
    color: var(--green-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--green-mist);
}

.summary-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--green-mist);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item-image {
    width: 60px;
    height: 60px;
    aspect-ratio: 1 / 1;
    background: var(--green-mist);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    overflow: hidden;
    flex-shrink: 0;
}

.summary-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.summary-item-image i {
    font-size: 1.5rem;
    color: var(--green-primary);
}

.summary-item-details {
    flex: 1;
    min-width: 0;
}

.summary-item-name {
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 3px;
}

.summary-item-qty {
    font-size: 0.9rem;
    color: var(--brown-light);
}

.summary-item-price {
    font-weight: 700;
    color: var(--green-primary);
    white-space: nowrap;
}

/* Summary Coupon */
.summary-coupon {
    padding: 20px 0;
    border-top: 2px solid var(--green-mist);
    border-bottom: 2px solid var(--green-mist);
    margin-bottom: 15px;
}

.summary-coupon-title {
    font-size: 1rem;
    color: var(--green-dark);
    font-weight: 600;
    margin-bottom: 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.summary-row span {
    color: var(--brown-light);
}

.summary-row strong {
    color: var(--green-dark);
    font-size: 1.1rem;
}

.summary-divider {
    height: 2px;
    background: var(--green-mist);
    margin: 5px 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.summary-total span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--green-dark);
}

.summary-total strong {
    font-size: 2rem;
    color: var(--green-primary);
    font-family: 'Playfair Display', serif;
}

/* Checkout Button */
.btn-checkout {
    width: 100%;
    padding: 18px;
    border: none;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: white;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(74, 124, 67, 0.3);
}

.btn-checkout:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(74, 124, 67, 0.4);
    color: white;
}

.btn-checkout:disabled {
    opacity: 0.7;
    transform: none;
    cursor: not-allowed;
}

.btn-checkout-back {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    border: 2px solid var(--green-pale);
    background: transparent;
    color: var(--green-primary);
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.btn-checkout-back:hover {
    background: var(--green-mist);
    border-color: var(--green-primary);
    color: var(--green-dark);
}

/* Checkout Info Box */
.checkout-info-box {
    display: flex;
    gap: 12px;
    padding: 16px;
    background-color: #f0f7ed;
    border: 1px solid #c8e6c0;
    border-radius: 12px;
    margin-bottom: 16px;
}

.checkout-info-icon {
    flex-shrink: 0;
    font-size: 1.25rem;
    color: var(--green-primary);
    margin-top: 2px;
}

.checkout-info-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--green-dark);
}

.checkout-info-text strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

/* Security Badge */
.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: var(--green-mist);
    border-radius: 12px;
    margin-top: 20px;
}

.security-badge i {
    color: var(--green-primary);
}

.security-badge span {
    color: var(--green-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Checkout Form Elements */
.form-card .form-label {
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.form-card .form-control {
    padding: 15px 20px;
    border: 2px solid var(--green-pale);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-card .form-control:focus {
    outline: none;
    border-color: var(--green-primary);
    box-shadow: 0 0 0 4px rgba(74, 124, 67, 0.1);
}

.form-card .form-control::placeholder {
    color: var(--brown-light);
}

.form-card .form-select {
    padding: 15px 45px 15px 20px;
    border: 2px solid var(--green-pale);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fff;
    color: var(--green-dark);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234A7C43'%3E%3Cpath d='M4.646 6.146a.5.5 0 0 1 .708 0L8 8.793l2.646-2.647a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
    cursor: pointer;
}

.form-card .form-select:focus {
    outline: none;
    border-color: var(--green-primary);
    box-shadow: 0 0 0 4px rgba(74, 124, 67, 0.1);
}

.form-card .form-select:disabled {
    background-color: var(--green-mist);
    opacity: 0.7;
    cursor: not-allowed;
}

.form-card .form-select option[value=""] {
    color: var(--brown-light);
}

.form-card .form-control.is-invalid,
.form-card .form-select.is-invalid {
    border-color: #dc3545;
}

.form-card .form-control.is-invalid:focus,
.form-card .form-select.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.form-card textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Checkout Responsive */
@media (max-width: 991px) {
    .order-summary {
        position: relative;
        top: 0;
        margin-top: 30px;
    }

    .checkout-steps {
        flex-wrap: wrap;
    }

    .checkout-step-connector {
        display: none;
    }
}

@media (max-width: 767px) {
    .form-card {
        padding: 25px;
        border-radius: 20px;
    }

    .form-card-title {
        font-size: 1.2rem;
    }

    .form-card-title i {
        width: 40px;
        height: 40px;
    }

    .summary-total strong {
        font-size: 1.5rem;
    }

    .btn-checkout {
        font-size: 1rem;
        padding: 15px;
    }
}

/* Legacy checkout classes (kept for backward compatibility) */
.checkout-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

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

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

.checkout-items-list {
    padding: 0;
}

.checkout-item {
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid #f5f5f5;
}

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-summary {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.checkout-summary-total {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--green-dark);
}

/* Success page */
/* Success Page */
.success-header {
    text-align: center;
    margin-bottom: 50px;
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--green-mist);
    color: var(--green-primary);
    font-size: 3.5rem;
    margin-bottom: 25px;
    box-shadow: 0 10px 40px rgba(74, 124, 67, 0.15);
}

.success-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.success-subtitle {
    font-size: 1.1rem;
    color: var(--brown-light);
    margin-bottom: 10px;
}

.success-subtitle strong {
    color: var(--green-primary);
    font-size: 1.2rem;
}

.success-info {
    font-size: 1rem;
    color: var(--brown-light);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Success Table */
.success-table {
    width: 100%;
    border-collapse: collapse;
}

.success-table thead th {
    background: var(--green-mist);
    padding: 15px 20px;
    font-weight: 600;
    color: var(--green-dark);
    font-size: 0.95rem;
    border-bottom: 2px solid var(--green-pale);
}

.success-table tbody td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--green-mist);
    color: var(--brown-primary);
    font-size: 0.95rem;
}

.success-table tbody tr:last-child td {
    border-bottom: none;
}

.success-product-name {
    font-weight: 600;
    color: var(--green-dark);
}

/* Success Address */
.success-address {
    line-height: 1.7;
}

.success-address-name {
    font-weight: 700;
    color: var(--green-dark);
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.success-address-phone {
    color: var(--brown-light);
    margin-bottom: 8px;
}

.success-address-detail {
    color: var(--brown-light);
    margin-bottom: 0;
}

/* Success Payment */
.success-payment {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.success-payment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--brown-primary);
}

.success-payment-divider {
    height: 2px;
    background: var(--green-mist);
    margin: 8px 0;
}

.success-payment-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green-dark);
}

.success-payment-total strong {
    color: var(--green-primary);
    font-size: 1.3rem;
}

/* Success Actions */
.success-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.success-actions .btn-checkout,
.success-actions .btn-checkout-back {
    max-width: 300px;
    text-decoration: none;
}

@media (max-width: 767px) {
    .success-title {
        font-size: 1.8rem;
    }

    .success-icon {
        width: 90px;
        height: 90px;
        font-size: 2.5rem;
    }

    .success-actions {
        flex-direction: column;
        align-items: center;
    }

    .success-actions .btn-checkout,
    .success-actions .btn-checkout-back {
        max-width: 100%;
        width: 100%;
    }
}

/* Legacy */
.checkout-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--green-mist);
    color: var(--green-primary);
    font-size: 3rem;
}

/* =============================================
   SEARCH MODAL
   ============================================= */

.search-modal-dialog {
    max-width: 640px;
}

.search-modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(45, 90, 39, 0.18);
}

/* Header */
.search-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem 1rem;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
}

.search-modal-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.search-modal-leaf {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}

.search-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.search-modal-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.search-modal-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

/* Body */
.search-modal-body {
    padding: 1.25rem 1.5rem 1.5rem;
    background: var(--cream);
}

/* Input row */
.search-modal-input-wrap {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid var(--green-primary);
    border-radius: 50px;
    padding: 0 0.5rem 0 1.1rem;
    gap: 0.5rem;
    transition: box-shadow 0.3s ease;
}

.search-modal-input-wrap:focus-within {
    box-shadow: 0 0 0 3px rgba(74, 124, 67, 0.15);
}

.search-modal-icon {
    color: var(--green-primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.search-modal-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.8rem 0;
    font-size: 1rem;
    background: transparent;
    color: var(--green-dark);
}

.search-modal-input::placeholder {
    color: #aaa;
}

.search-modal-submit {
    height: 38px;
    padding: 0 1.2rem;
    border-radius: 50px;
    border: none;
    background: var(--green-primary);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.search-modal-submit:hover {
    background: var(--green-dark);
}

/* Results container */
.search-modal-results {
    margin-top: 1rem;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Hint / empty state */
.search-modal-hint {
    padding: 2.5rem 1.5rem;
    text-align: center;
    color: #aaa;
}

.search-modal-hint-icon {
    font-size: 2.5rem;
    color: var(--green-primary);
    opacity: 0.4;
    display: block;
    margin-bottom: 0.75rem;
}

.search-modal-hint p {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--green-dark);
    margin-bottom: 0.25rem;
}

.search-modal-hint span {
    font-size: 0.82rem;
    color: #bbb;
}

/* Result items */
.search-modal-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.7rem 1rem;
    text-decoration: none;
    color: var(--green-dark);
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s ease;
}

.search-modal-item:last-child {
    border-bottom: none;
}

.search-modal-item:hover {
    background: var(--green-mist);
    color: var(--green-dark);
}

.search-modal-item-img {
    width: 52px;
    height: 52px;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #eee;
}

.search-modal-item-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.search-modal-item-name {
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--green-dark);
}

.search-modal-item-price {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--green-primary);
    margin-top: 0.15rem;
}

/* "Tüm sonuçları gör" row */
.search-modal-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--green-primary);
    text-decoration: none;
    border-top: 2px solid var(--green-mist);
    transition: background 0.2s ease;
}

.search-modal-all:hover {
    background: var(--green-mist);
    color: var(--green-primary);
}

.search-modal-empty {
    padding: 2rem 1.5rem;
    text-align: center;
    color: #bbb;
    font-size: 0.875rem;
}

/* Search page form */
.search-form-lg .input-group-text {
    background: var(--white);
    border-right: none;
    color: var(--green-primary);
}

.search-form-lg .form-control {
    border-left: none;
}

.search-form-lg .form-control:focus {
    box-shadow: none;
    border-color: var(--green-primary);
}

/* Product cards (shared with products listing) */
.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
}

.product-card-price-old {
    font-size: 0.8rem;
    text-decoration: line-through;
    color: #999;
    display: block;
}

.product-card-price-current {
    font-weight: 700;
    color: var(--green-dark);
}

@media (max-width: 575.98px) {
    .search-modal-dialog {
        margin: 0.5rem;
    }

    .search-modal-header,
    .search-modal-body {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* =============================================
   ERROR PAGES
   ============================================= */

.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 0 80px;
    background: linear-gradient(180deg, var(--green-mist) 0%, #fff 100%);
}

.error-page__card {
    background: white;
    border-radius: 24px;
    padding: 3.5rem 3rem;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 520px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.error-page__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--green-primary), var(--green-light), var(--gold));
}

.error-page__emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.error-page__code {
    font-family: 'Playfair Display', serif;
    font-size: 7rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.error-page__title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 1rem;
}

.error-page__text {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.error-page__divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--green-primary), var(--green-light));
    border-radius: 3px;
    margin: 0 auto 2rem;
}

.error-page__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.error-page__actions .btn-error-primary {
    padding: 14px 32px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: white;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.error-page__actions .btn-error-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 124, 67, 0.4);
    color: white;
}

.error-page__actions .btn-error-outline {
    padding: 14px 32px;
    border-radius: 50px;
    background: transparent;
    color: var(--green-primary);
    border: 2px solid var(--green-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.error-page__actions .btn-error-outline:hover {
    background: var(--green-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 124, 67, 0.4);
}

@media (max-width: 575.98px) {
    .error-page {
        padding: 140px 1rem 3rem;
    }

    .error-page__card {
        padding: 2.5rem 1.5rem;
    }

    .error-page__code {
        font-size: 5rem;
    }

    .error-page__emoji {
        font-size: 3rem;
    }

    .error-page__actions {
        flex-direction: column;
        align-items: center;
    }

    .error-page__actions .btn-error-primary,
    .error-page__actions .btn-error-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ============================================
   BLOG PAGES
   ============================================ */

/* Blog Section */
.blog-section {
    padding: 60px 0 100px;
}

/* Sidebar */
.blog-sidebar {
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
    padding: 30px;
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--green-mist);
}

.sidebar-widget:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.widget-title {
    font-size: 1.3rem;
    color: var(--green-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-title i {
    color: var(--green-primary);
}

/* Categories Widget */
.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: var(--green-mist);
    border-radius: 10px;
    color: var(--green-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-list a:hover {
    background: var(--green-primary);
    color: white;
}

.category-count {
    background: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.category-list a:hover .category-count {
    background: rgba(255,255,255,0.2);
    color: white;
}

/* Popular Posts Widget */
.popular-post {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--green-mist);
}

.popular-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-post:first-child {
    padding-top: 0;
}

.popular-post-image {
    width: 80px;
    height: 80px;
    aspect-ratio: 1 / 1;
    background: var(--green-mist);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.popular-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-post-image i {
    font-size: 2rem;
    color: var(--green-primary);
}

.popular-post-content h5 {
    font-size: 0.95rem;
    color: var(--green-dark);
    margin-bottom: 5px;
    line-height: 1.4;
}

.popular-post-content h5 a {
    color: inherit;
    text-decoration: none;
}

.popular-post-content h5 a:hover {
    color: var(--green-primary);
}

.popular-post-date {
    font-size: 0.85rem;
    color: var(--brown-light);
}

/* Blog Cards (List Page) */
.blog-card-list {
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

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

.blog-card-image {
    height: 220px;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--green-mist), var(--green-pale));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-image i {
    font-size: 4rem;
    color: var(--green-primary);
    opacity: 0.5;
}

.blog-card-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--green-primary);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-card-body {
    padding: 25px;
}

.blog-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--brown-light);
    font-size: 0.9rem;
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-title {
    font-size: 1.4rem;
    color: var(--green-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--green-primary);
}

.blog-card-excerpt {
    color: var(--brown);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-more {
    color: var(--green-primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 15px;
    color: var(--green-dark);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-buttons a {
    width: 35px;
    height: 35px;
    background: var(--green-mist);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-buttons a:hover {
    background: var(--green-primary);
    color: white;
}

/* Blog Detail */
.blog-detail-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-detail-category {
    display: inline-block;
    background: var(--green-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.blog-detail-title {
    font-size: 2.5rem;
    color: var(--green-dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

.blog-detail-meta {
    display: flex;
    justify-content: center;
    gap: 25px;
    color: var(--brown-light);
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-detail-image {
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 40px;
    max-height: 500px;
    aspect-ratio: 16 / 9;
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-content {
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
    padding: 40px;
    margin-bottom: 40px;
}

.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4 {
    color: var(--green-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-detail-content p {
    color: var(--brown);
    line-height: 1.9;
    margin-bottom: 20px;
}

.blog-detail-content img {
    max-width: 100%;
    border-radius: 15px;
    margin: 20px 0;
}

.blog-detail-content blockquote {
    border-left: 4px solid var(--green-primary);
    padding: 20px 30px;
    background: var(--green-mist);
    border-radius: 0 15px 15px 0;
    margin: 30px 0;
    font-style: italic;
    color: var(--green-dark);
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.pagination-pages {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: white;
    border: 2px solid var(--green-pale);
    border-radius: 10px;
    color: var(--green-dark);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    line-height: 1;
}

.pagination-btn:hover {
    background: var(--green-primary);
    border-color: var(--green-primary);
    color: white;
    text-decoration: none;
}

.pagination-btn--nav {
    gap: 6px;
    padding: 0 14px;
    font-size: 0.85rem;
}

.pagination-btn--nav.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-btn--active {
    background: var(--green-primary);
    border-color: var(--green-primary);
    color: white;
    cursor: default;
}

.pagination-btn--dots {
    border-color: transparent;
    background: transparent;
    cursor: default;
    min-width: 32px;
    padding: 0;
    font-size: 1rem;
    letter-spacing: 2px;
}

.pagination-btn--dots:hover {
    background: transparent;
    border-color: transparent;
    color: var(--green-dark);
}

@media (max-width: 575px) {
    .pagination-container {
        gap: 4px;
    }

    .pagination-pages {
        gap: 2px;
    }

    .pagination-btn {
        min-width: 36px;
        height: 36px;
        padding: 0 8px;
        font-size: 0.82rem;
        border-radius: 8px;
    }

    .pagination-btn--nav {
        padding: 0 10px;
    }

    .pagination-btn__label {
        display: none;
    }
}

/* Blog Responsive */
@media (max-width: 991px) {
    .blog-sidebar {
        position: relative;
        top: 0;
        margin-top: 40px;
    }

    .blog-detail-title {
        font-size: 2rem;
    }

    .blog-detail-content {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .blog-card-image {
        height: 180px;
    }

    .blog-detail-title {
        font-size: 1.6rem;
    }

    .blog-detail-meta {
        gap: 15px;
    }

    .blog-card-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* =============================================
   SEARCH PAGE
   ============================================= */

.search-page-section {
    padding: 60px 0 80px;
}

/* Search Box */
.search-box {
    max-width: 720px;
    margin: 0 auto 40px;
}

.search-box-form {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    padding: 8px 8px 8px 24px;
    gap: 12px;
    transition: box-shadow 0.3s ease;
}

.search-box-form:focus-within {
    box-shadow: var(--shadow-hover);
}

.search-box-icon {
    color: var(--green-pale);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.search-box-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: var(--green-dark);
    min-width: 0;
}

.search-box-input::placeholder {
    color: var(--brown-light);
}

.search-box-btn {
    flex-shrink: 0;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
}

/* Results Summary */
.search-summary {
    text-align: center;
    margin-bottom: 40px;
}

.search-summary-title {
    font-size: 1.5rem;
    color: var(--green-dark);
    margin-bottom: 20px;
}

.search-keyword {
    color: var(--green-primary);
    font-style: italic;
}

/* Search Tabs */
.search-tabs {
    display: inline-flex;
    gap: 10px;
    background: var(--white);
    padding: 6px;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
}

.search-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: none;
    border-radius: 30px;
    background: transparent;
    color: var(--brown-light);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-tab:hover {
    color: var(--green-dark);
    background: var(--green-mist);
}

.search-tab.active {
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: white;
}

.search-tab.active .search-tab-count {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

.search-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 26px;
    padding: 0 8px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    background: var(--green-mist);
    color: var(--green-primary);
}

/* Results Section */
.search-results-header {
    margin-bottom: 25px;
}

.search-results-title {
    font-size: 1.3rem;
    color: var(--green-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-results-count {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--brown-light);
    font-weight: 400;
}

/* Product Card (Search) */
.search-page-section .product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.search-page-section .product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-card-img-link {
    display: block;
    position: relative;
    height: 200px;
    aspect-ratio: 4 / 3;
    background: var(--green-mist);
    overflow: hidden;
}

.product-card-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.search-page-section .product-card:hover .product-card-img-link img {
    transform: scale(1.05);
}

.product-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-mist);
}

.product-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #e74c3c, #ff6b6b);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.product-card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-category {
    color: var(--green-light);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.product-card-title {
    font-size: 1rem;
    color: var(--green-dark);
    margin-bottom: 6px;
    line-height: 1.4;
}

.product-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-card-title a:hover {
    color: var(--green-primary);
}

.product-card-desc {
    font-size: 0.85rem;
    color: var(--brown-light);
    line-height: 1.5;
    margin-bottom: 12px;
    flex: 1;
}

.btn-green {
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    border: none;
    color: white;
    border-radius: 10px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-green:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(74, 124, 67, 0.35);
    color: white;
}

/* Search Blog Card */
.search-blog-card {
    display: flex;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    height: 100%;
}

.search-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.search-blog-card-image {
    width: 200px;
    min-height: 200px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    background: var(--green-mist);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.search-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.search-blog-card:hover .search-blog-card-image img {
    transform: scale(1.05);
}

.search-blog-card-image > i {
    font-size: 3rem;
    color: var(--green-primary);
}

.search-blog-card-image .blog-card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.search-blog-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.search-blog-card-body .blog-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 0.82rem;
    color: var(--brown-light);
}

.search-blog-card-body .blog-card-meta i {
    color: var(--green-primary);
    margin-right: 4px;
}

.search-blog-card-title {
    font-size: 1.15rem;
    color: var(--green-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.search-blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.search-blog-card-title a:hover {
    color: var(--green-primary);
}

.search-blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--brown);
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

/* Empty & No Results States */
.search-empty-section {
    text-align: center;
    padding: 50px 20px;
    color: var(--brown-light);
}

.search-empty-section i {
    font-size: 3rem;
    color: var(--green-pale);
    margin-bottom: 15px;
}

.search-empty-section p {
    font-size: 1rem;
    margin: 0;
}

.search-no-results {
    text-align: center;
    padding: 60px 20px;
}

.search-no-results-icon {
    width: 100px;
    height: 100px;
    background: var(--green-mist);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.search-no-results-icon i {
    font-size: 2.5rem;
    color: var(--green-pale);
}

.search-no-results h3 {
    color: var(--green-dark);
    margin-bottom: 10px;
}

.search-no-results p {
    color: var(--brown-light);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

/* Initial State */
.search-initial {
    text-align: center;
    padding: 60px 20px;
}

.search-initial-icon {
    width: 100px;
    height: 100px;
    background: var(--green-mist);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: float 3s ease-in-out infinite;
}

.search-initial-icon i {
    font-size: 2.5rem;
    color: var(--green-primary);
}

.search-initial h3 {
    color: var(--green-dark);
    margin-bottom: 10px;
}

.search-initial p {
    color: var(--brown-light);
    font-size: 1.05rem;
}

/* Outline Button */
.btn-custom-outline {
    border: 2px solid var(--green-primary);
    padding: 10px 26px;
    border-radius: 30px;
    color: var(--green-primary);
    font-weight: 600;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
}

.btn-custom-outline:hover {
    background: var(--green-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(74, 124, 67, 0.3);
}

/* Search Page Responsive */
@media (max-width: 767px) {
    .search-page-section {
        padding: 40px 0 60px;
    }

    .search-box-form {
        flex-wrap: wrap;
        border-radius: 20px;
        padding: 12px;
        gap: 10px;
    }

    .search-box-icon {
        display: none;
    }

    .search-box-input {
        width: 100%;
        padding: 8px 0;
    }

    .search-box-btn {
        width: 100%;
        justify-content: center;
    }

    .search-tabs {
        flex-direction: column;
        width: 100%;
        border-radius: 20px;
    }

    .search-tab {
        justify-content: center;
    }

    .search-summary-title {
        font-size: 1.2rem;
    }

    .search-blog-card {
        flex-direction: column;
    }

    .search-blog-card-image {
        width: 100%;
        min-height: 180px;
        height: 180px;
    }

    .product-card-img-link {
        height: 160px;
    }
}

@media (max-width: 575px) {
    .product-card-title {
        font-size: 0.9rem;
    }

    .product-card-desc {
        display: none;
    }

    .product-card-body {
        padding: 12px;
    }

    .product-card-img-link {
        height: 140px;
    }
}

/* =============================================
   BLOG COMMENTS
   ============================================= */

.blog-comments-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--green-mist);
}

.blog-comments-title {
    font-size: 1.5rem;
    color: var(--green-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.blog-comments-title i {
    color: var(--green-primary);
}

.blog-comments-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    padding: 0 10px;
    border-radius: 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    background: var(--green-mist);
    color: var(--green-primary);
}

/* Comment Item */
.blog-comment {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.blog-comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.blog-comment-avatar-sm {
    width: 38px;
    height: 38px;
    font-size: 0.75rem;
}

.blog-comment-content {
    flex: 1;
    min-width: 0;
}

.blog-comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.blog-comment-author {
    color: var(--green-dark);
    font-size: 0.95rem;
}

.blog-comment-date {
    color: var(--brown-light);
    font-size: 0.82rem;
}

.blog-comment-body {
    color: var(--brown);
    line-height: 1.7;
    margin-bottom: 10px;
    white-space: pre-wrap;
    word-break: break-word;
}

.blog-comment-reply-btn {
    background: none;
    border: none;
    color: var(--green-primary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.blog-comment-reply-btn:hover {
    color: var(--green-dark);
}

/* Replies */
.blog-comment-replies {
    margin-top: 20px;
    padding-left: 20px;
    border-left: 3px solid var(--green-mist);
}

.blog-comment-reply {
    margin-bottom: 15px;
}

.blog-comment-reply:last-child {
    margin-bottom: 0;
}

/* Reply Form */
.blog-comment-reply-form {
    margin-top: 15px;
    padding: 20px;
    background: var(--green-mist);
    border-radius: 15px;
}

/* Empty State */
.blog-comments-empty {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 30px;
}

.blog-comments-empty i {
    font-size: 3rem;
    color: var(--green-pale);
    margin-bottom: 15px;
    display: block;
}

.blog-comments-empty p {
    color: var(--brown-light);
    font-size: 1rem;
    margin: 0;
}

/* Comment Form */
.blog-comment-form-section {
    margin-top: 40px;
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.blog-comment-form-title {
    font-size: 1.3rem;
    color: var(--green-dark);
    margin-bottom: 25px;
}

.blog-comment-label {
    display: block;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.blog-comment-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--green-mist);
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--green-dark);
    background: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.blog-comment-input:focus {
    border-color: var(--green-primary);
    box-shadow: 0 0 0 3px rgba(74, 124, 67, 0.1);
}

.blog-comment-input::placeholder {
    color: var(--brown-light);
}

.blog-comment-textarea {
    resize: vertical;
    min-height: 100px;
}

.blog-comment-hint {
    display: block;
    margin-top: 4px;
    font-size: 0.8rem;
    color: var(--brown-light);
}

.btn-comment-cancel {
    background: none;
    border: 2px solid var(--green-pale);
    padding: 8px 20px;
    border-radius: 30px;
    color: var(--brown-light);
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-comment-cancel:hover {
    border-color: var(--red);
    color: var(--red);
}

/* Comment Alerts */
.blog-comment-alert {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
}

.blog-comment-alert-success {
    background: var(--green-mist);
    color: var(--green-dark);
    border: 1px solid var(--green-pale);
}

.blog-comment-alert-danger {
    background: #fff5f5;
    color: #c0392b;
    border: 1px solid #fde2e2;
}

/* jQuery Validation Engine - Custom Overrides */
.formError {
    z-index: 990 !important;
}

.formError .formErrorContent {
    background: var(--red, #dc3545);
    border: none;
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8125rem;
    padding: 6px 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.formError .formErrorArrow div {
    background: var(--red, #dc3545);
    border: none;
}

.blog-comment-input.formError,
.blog-comment-input:focus.formError {
    border-color: var(--red, #dc3545) !important;
}

/* Blog Comments Responsive */
@media (max-width: 767px) {
    .blog-comments-section {
        margin-top: 30px;
        padding-top: 25px;
    }

    .blog-comment-form-section {
        padding: 20px;
    }

    .blog-comment-replies {
        padding-left: 12px;
    }

    .blog-comment-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }

    .blog-comment-avatar-sm {
        width: 32px;
        height: 32px;
        font-size: 0.7rem;
    }
}

/* ================================================
   LOGIN PAGE
   ================================================ */
.login-section {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--green-mist) 0%, var(--cream) 100%);
    min-height: 100vh;
}

.login-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(45, 90, 39, 0.12);
}

/* Left Info Panel */
.login-info-panel {
    background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-primary) 50%, var(--green-light) 100%);
    padding: 60px 50px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.login-info-panel::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.login-info-panel::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.login-info-content {
    position: relative;
    z-index: 1;
}

.login-info-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--green-pale);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.login-info-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.login-info-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.login-info-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.login-info-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.login-info-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--green-pale);
}

.login-info-feature strong {
    display: block;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.login-info-feature span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.login-info-quote {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px 24px;
    border-left: 3px solid var(--green-pale);
}

.login-info-quote i {
    color: var(--green-pale);
    font-size: 1.2rem;
    margin-bottom: 8px;
    display: block;
    opacity: 0.6;
}

.login-info-quote p {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Right Form Panel */
.login-form-panel {
    background: #ffffff;
    padding: 60px 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-form-header {
    margin-bottom: 35px;
}

.login-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.login-form-subtitle {
    color: var(--brown-light);
    font-size: 0.95rem;
    margin: 0;
}

.login-field {
    margin-bottom: 22px;
}

.login-label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--brown);
    margin-bottom: 8px;
}

.login-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.login-input-icon {
    position: absolute;
    left: 16px;
    color: var(--brown-light);
    font-size: 0.9rem;
    z-index: 1;
    pointer-events: none;
}

.login-input {
    width: 100%;
    padding: 14px 16px 14px 46px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--brown);
    background: #fafafa;
    transition: all 0.3s ease;
    outline: none;
    font-family: 'DM Sans', sans-serif;
}

.login-input:focus {
    border-color: var(--green-primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(74, 124, 67, 0.1);
}

.login-input--error {
    border-color: var(--red);
}

.login-input--error:focus {
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1);
}

.login-error {
    color: var(--red);
    font-size: 0.8rem;
    margin-top: 6px;
}

.login-toggle-password {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    color: var(--brown-light);
    cursor: pointer;
    padding: 4px;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.login-toggle-password:hover {
    color: var(--green-primary);
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.login-remember {
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--green-primary);
    cursor: pointer;
}

.login-remember label {
    font-size: 0.875rem;
    color: var(--brown);
    cursor: pointer;
    margin: 0;
}

.login-forgot {
    font-size: 0.875rem;
    color: var(--green-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.login-forgot:hover {
    color: var(--green-dark);
    text-decoration: underline;
}

.login-submit-btn {
    width: 100%;
    padding: 15px 24px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.login-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 124, 67, 0.35);
}

.login-submit-btn:active {
    transform: translateY(0);
}

.login-divider {
    display: flex;
    align-items: center;
    margin: 28px 0;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e8e8e8;
}

.login-divider span {
    padding: 0 16px;
    color: var(--brown-light);
    font-size: 0.85rem;
}

.login-register-link {
    text-align: center;
    font-size: 0.95rem;
    color: var(--brown);
    margin: 0;
}

.login-register-link a {
    color: var(--green-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.login-register-link a:hover {
    color: var(--green-dark);
    text-decoration: underline;
}

.forgot-password-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Register Page Overrides */
.register-wrapper {
    max-width: 1100px;
}

.register-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
}

.register-form-grid .login-field:nth-child(3),
.register-form-grid .login-field:nth-child(4) {
    grid-column: 1 / -1;
}

.login-label-required {
    color: var(--red);
    font-weight: 700;
}

.login-label-optional {
    color: var(--brown-light);
    font-weight: 400;
    font-size: 0.8rem;
}

/* Field Feedback */
.login-field-feedback {
    min-height: 22px;
    padding-top: 4px;
}

.login-field-feedback .login-error {
    display: flex;
    align-items: center;
    gap: 4px;
    animation: fieldFadeIn 0.25s ease;
}

.login-input--valid {
    border-color: var(--green-primary) !important;
}

.login-input--valid:focus {
    box-shadow: 0 0 0 4px rgba(74, 124, 67, 0.12) !important;
}

/* Password Strength Bar */
.password-strength {
    display: none;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
}

.password-strength.active {
    display: flex;
}

.password-strength-bar {
    flex: 1;
    height: 6px;
    background: #e8e8e8;
    border-radius: 3px;
    overflow: hidden;
}

.password-strength-fill {
    height: 100%;
    width: 0;
    border-radius: 3px;
    transition: width 0.35s ease, background-color 0.35s ease;
}

.password-strength-fill--very-weak { background: #e74c3c; }
.password-strength-fill--weak      { background: #e67e22; }
.password-strength-fill--medium    { background: #f1c40f; }
.password-strength-fill--strong    { background: var(--green-light); }
.password-strength-fill--very-strong { background: var(--green-dark); }

.password-strength-text {
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 70px;
    text-align: right;
    white-space: nowrap;
}

.password-strength-text--very-weak  { color: #e74c3c; }
.password-strength-text--weak       { color: #e67e22; }
.password-strength-text--medium     { color: #b7950b; }
.password-strength-text--strong     { color: var(--green-light); }
.password-strength-text--very-strong { color: var(--green-dark); }

@keyframes fieldFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Login Responsive */
@media (max-width: 991px) {
    .login-section {
        padding: 120px 0 60px;
    }

    .login-info-panel {
        padding: 40px 30px;
        border-radius: 0;
    }

    .login-info-title {
        font-size: 1.8rem;
    }

    .login-info-subtitle {
        margin-bottom: 24px;
    }

    .login-info-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
        margin-bottom: 24px;
    }

    .login-info-feature {
        flex: 1 1 calc(50% - 8px);
        min-width: 180px;
    }

    .login-info-quote {
        display: none;
    }

    .login-form-panel {
        padding: 40px 30px;
    }
}

@media (max-width: 575px) {
    .login-section {
        padding: 100px 0 40px;
    }

    .login-wrapper {
        border-radius: 16px;
        margin: 0 4px;
    }

    .login-info-panel {
        padding: 30px 24px;
    }

    .login-info-icon {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .login-info-title {
        font-size: 1.5rem;
    }

    .login-info-features {
        flex-direction: column;
    }

    .login-info-feature {
        flex: auto;
        min-width: auto;
    }

    .login-form-panel {
        padding: 30px 24px;
    }

    .login-form-title {
        font-size: 1.5rem;
    }

    .login-input {
        padding: 12px 14px 12px 42px;
    }

    .login-submit-btn {
        padding: 13px 20px;
    }

    .login-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .register-form-grid {
        grid-template-columns: 1fr;
    }

    .register-form-grid .login-field:nth-child(3) {
        grid-column: auto;
    }
}

/* =============================================
   GLOBAL RESULT MODAL
   ============================================= */

.result-modal {
    border: none;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.18);
    text-align: center;
    padding: 40px 32px 32px;
    position: relative;
}

/* Close button */
.result-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: #999;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    z-index: 1;
}

.result-modal-close:hover {
    background: #e0e0e0;
    color: #666;
}

/* Icon circle */
.result-modal-icon-wrap {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: resultModalPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.result-modal-icon-wrap--success {
    background: linear-gradient(145deg, var(--green-light) 0%, var(--green-primary) 50%, var(--green-dark) 100%);
    box-shadow: 0 8px 32px rgba(74, 124, 67, 0.35);
}

.result-modal-icon-wrap--error {
    background: linear-gradient(145deg, #ff6b6b 0%, var(--red) 50%, #c0392b 100%);
    box-shadow: 0 8px 32px rgba(231, 76, 60, 0.35);
}

.result-modal-icon-wrap i {
    font-size: 2.25rem;
    color: var(--white);
}

/* Title */
.result-modal-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    margin: 0 0 12px;
}

.result-modal-title--success {
    color: var(--green-dark);
}

.result-modal-title--error {
    color: #c0392b;
}

/* Body */
.result-modal-body {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--brown-light);
    margin-bottom: 28px;
    padding: 0 8px;
}

/* Button */
.result-modal-btn {
    display: inline-block;
    padding: 12px 48px;
    border: none;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.result-modal-btn:hover {
    transform: translateY(-2px);
}

.result-modal-btn:active {
    transform: translateY(0);
}

.result-modal-btn--success {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
    box-shadow: 0 4px 16px rgba(74, 124, 67, 0.3);
}

.result-modal-btn--success:hover {
    box-shadow: 0 8px 24px rgba(74, 124, 67, 0.4);
}

.result-modal-btn--error {
    background: linear-gradient(135deg, var(--red) 0%, #c0392b 100%);
    box-shadow: 0 4px 16px rgba(231, 76, 60, 0.3);
}

.result-modal-btn--error:hover {
    box-shadow: 0 8px 24px rgba(231, 76, 60, 0.4);
}

.result-modal-icon-wrap--warning {
    background: linear-gradient(145deg, #f9ca24 0%, #f39c12 50%, #e67e22 100%);
    box-shadow: 0 8px 32px rgba(243, 156, 18, 0.35);
}

.result-modal-title--warning {
    color: #e67e22;
}

.result-modal-btn--warning {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    box-shadow: 0 4px 16px rgba(243, 156, 18, 0.3);
}

.result-modal-btn--warning:hover {
    box-shadow: 0 8px 24px rgba(243, 156, 18, 0.4);
}

.result-modal-icon-wrap--info {
    background: linear-gradient(145deg, #74b9ff 0%, #0984e3 50%, #0652DD 100%);
    box-shadow: 0 8px 32px rgba(9, 132, 227, 0.35);
}

.result-modal-title--info {
    color: #0984e3;
}

.result-modal-btn--info {
    background: linear-gradient(135deg, #0984e3 0%, #0652DD 100%);
    box-shadow: 0 4px 16px rgba(9, 132, 227, 0.3);
}

.result-modal-btn--info:hover {
    box-shadow: 0 8px 24px rgba(9, 132, 227, 0.4);
}

/* Pop animation */
@keyframes resultModalPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 575px) {
    .result-modal {
        padding: 36px 24px 28px;
        border-radius: 16px;
        margin: 16px;
    }

    .result-modal-icon-wrap {
        width: 72px;
        height: 72px;
        margin-bottom: 20px;
    }

    .result-modal-icon-wrap i {
        font-size: 1.875rem;
    }

    .result-modal-title {
        font-size: 1.25rem;
    }

    .result-modal-btn {
        width: 100%;
        padding: 12px 24px;
    }
}

/* =============================================
   GLOBAL CONFIRM MODAL
   ============================================= */

.confirm-modal {
    border: none;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.18);
    text-align: center;
    padding: 40px 32px 32px;
    position: relative;
}

/* Close button */
.confirm-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: #999;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    z-index: 1;
}

.confirm-modal__close:hover {
    background: #e0e0e0;
    color: #666;
}

/* Icon circle */
.confirm-modal__icon-wrap {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: confirmModalPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.confirm-modal__icon-wrap--warning {
    background: linear-gradient(145deg, #ffd32a 0%, #f0932b 50%, #e17055 100%);
    box-shadow: 0 8px 32px rgba(240, 147, 43, 0.35);
}

.confirm-modal__icon-wrap--danger {
    background: linear-gradient(145deg, #ff6b6b 0%, var(--red) 50%, #c0392b 100%);
    box-shadow: 0 8px 32px rgba(231, 76, 60, 0.35);
}

.confirm-modal__icon-wrap i {
    font-size: 2.25rem;
    color: var(--white);
}

/* Title */
.confirm-modal__title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--brown);
    margin: 0 0 12px;
}

/* Body */
.confirm-modal__body {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--brown-light);
    margin-bottom: 28px;
    padding: 0 8px;
}

/* Buttons container */
.confirm-modal__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* Buttons */
.confirm-modal__btn {
    flex: 1;
    max-width: 180px;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.confirm-modal__btn:hover {
    transform: translateY(-2px);
}

.confirm-modal__btn:active {
    transform: translateY(0);
}

/* Cancel button */
.confirm-modal__btn--cancel {
    background: #f0f0f0;
    color: var(--brown);
}

.confirm-modal__btn--cancel:hover {
    background: #e4e4e4;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Confirm button */
.confirm-modal__btn--confirm {
    color: var(--white);
}

.confirm-modal__btn--confirm--warning {
    background: linear-gradient(135deg, #f0932b 0%, #e17055 100%);
    box-shadow: 0 4px 16px rgba(240, 147, 43, 0.3);
}

.confirm-modal__btn--confirm--warning:hover {
    box-shadow: 0 8px 24px rgba(240, 147, 43, 0.4);
}

.confirm-modal__btn--confirm--danger {
    background: linear-gradient(135deg, var(--red) 0%, #c0392b 100%);
    box-shadow: 0 4px 16px rgba(231, 76, 60, 0.3);
}

.confirm-modal__btn--confirm--danger:hover {
    box-shadow: 0 8px 24px rgba(231, 76, 60, 0.4);
}

/* Pop animation */
@keyframes confirmModalPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 575px) {
    .confirm-modal {
        padding: 36px 24px 28px;
        border-radius: 16px;
        margin: 16px;
    }

    .confirm-modal__icon-wrap {
        width: 72px;
        height: 72px;
        margin-bottom: 20px;
    }

    .confirm-modal__icon-wrap i {
        font-size: 1.875rem;
    }

    .confirm-modal__title {
        font-size: 1.25rem;
    }

    .confirm-modal__actions {
        flex-direction: column;
    }

    .confirm-modal__btn {
        max-width: 100%;
    }
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */

/* Gallery Section */
.gallery-section { padding: 60px 0 100px; }

/* Tab Navigation */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-tab {
    padding: 18px 40px;
    background: white;
    border: 2px solid var(--green-pale);
    border-radius: 50px;
    color: var(--green-dark);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gallery-tab:hover {
    border-color: var(--green-primary);
    background: var(--green-mist);
}

.gallery-tab.active {
    background: var(--green-primary);
    border-color: var(--green-primary);
    color: white;
}

.gallery-tab i { font-size: 1.3rem; }

/* Gallery Content */
.gallery-content { display: none; }
.gallery-content.active { display: block; }
.gallery-hidden { display: none !important; }

/* Photo Gallery Grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.photo-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    height: 250px;
    background: linear-gradient(135deg, var(--green-mist), var(--green-pale));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.photo-item:nth-child(1),
.photo-item:nth-child(6) {
    grid-column: span 2;
    height: 350px;
}

.photo-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.photo-item > i {
    font-size: 4rem;
    color: var(--green-primary);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.photo-item:hover > i {
    opacity: 0.8;
    transform: scale(1.1);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(45, 90, 39, 0.8) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.photo-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.photo-category {
    color: var(--green-pale);
    font-size: 0.9rem;
}

.photo-zoom {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-primary);
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.photo-item:hover .photo-zoom {
    opacity: 1;
    transform: scale(1);
}

/* Video Gallery Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-item {
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all 0.4s ease;
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.video-thumbnail > i {
    font-size: 3rem;
    color: white;
    opacity: 0.5;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-primary);
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.video-play-btn i {
    margin-left: 5px;
    opacity: 1;
    color: var(--green-primary);
    font-size: 2rem;
}

.video-item:hover .video-play-btn {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.video-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.video-info {
    padding: 25px;
}

.video-title {
    font-size: 1.2rem;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.video-meta {
    display: flex;
    gap: 20px;
    color: var(--brown-light);
    font-size: 0.9rem;
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Category Filter */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    background: white;
    border: 2px solid var(--green-pale);
    border-radius: 30px;
    color: var(--green-dark);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--green-primary);
    background: var(--green-mist);
}

.filter-btn.active {
    background: var(--green-primary);
    border-color: var(--green-primary);
    color: white;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 50px;
}

.lightbox.active { display: flex; }

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    background: var(--green-mist);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px;
    overflow: hidden;
}

.lightbox-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}

.lightbox-image > i {
    font-size: 8rem;
    color: var(--green-primary);
    opacity: 0.5;
}

.lightbox-close {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    color: var(--green-dark);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: var(--red);
    color: white;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: white;
    border: none;
    border-radius: 50%;
    color: var(--green-dark);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: var(--green-primary);
    color: white;
}

.lightbox-prev { left: -80px; }
.lightbox-next { right: -80px; }

.lightbox-caption {
    text-align: center;
    margin-top: 20px;
    color: white;
}

.lightbox-caption h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.lightbox-caption p {
    color: rgba(255,255,255,0.7);
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 50px;
}

.video-modal.active { display: flex; }

.video-modal-content {
    width: 100%;
    max-width: 900px;
    position: relative;
}

.video-container {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container > i {
    font-size: 5rem;
    color: var(--green-primary);
    opacity: 0.5;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    color: var(--green-dark);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: var(--red);
    color: white;
}

/* Gallery Responsive */
@media (max-width: 991px) {
    .photo-grid { grid-template-columns: repeat(2, 1fr); }
    .video-grid { grid-template-columns: repeat(2, 1fr); }
    .photo-item:nth-child(1), .photo-item:nth-child(6) { grid-column: span 1; height: 250px; }
}

@media (max-width: 767px) {
    .gallery-tabs { flex-direction: column; align-items: center; }
    .gallery-tab { width: 100%; max-width: 300px; justify-content: center; }
    .photo-grid { grid-template-columns: 1fr; }
    .video-grid { grid-template-columns: 1fr; }
    .category-filter { gap: 10px; }
    .filter-btn { padding: 10px 18px; font-size: 0.9rem; }
    .lightbox-prev { left: -10px; }
    .lightbox-next { right: -10px; }
    .lightbox-nav { width: 40px; height: 40px; font-size: 1rem; }
    .lightbox-image { padding: 30px; }
}

/* ============================================================
   UTILITY HELPERS
   ============================================================ */
.opacity-low { opacity: 0.3; }
.text-green-dark { color: var(--green-dark); }

/* Shake Animation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}
.animate-shake { animation: shake 0.5s ease; }

/* ===========================
   About / Hakkımızda Page
   =========================== */

/* Story Section */
.about-story-section { padding: 40px 0 80px; }

.about-story-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.about-story-image img { width: 100%; height: auto; }

.about-story-image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--green-mist) 0%, var(--green-pale) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}

.about-story-image-placeholder i {
    font-size: 5rem;
    color: var(--green-primary);
    margin-bottom: 20px;
}

.about-story-image-placeholder span {
    color: var(--green-dark);
    font-weight: 600;
    font-size: 1.2rem;
}

.about-experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: white;
    padding: 25px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(74, 124, 67, 0.4);
    animation: aboutFloat 3s ease-in-out infinite;
}

.about-experience-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    display: block;
    line-height: 1;
}

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

.about-story-content { padding-left: 40px; }

.about-section-tag {
    display: inline-block;
    background: var(--green-mist);
    color: var(--green-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.about-section-tag-light {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.about-story-content h2 {
    font-size: 2.8rem;
    color: var(--green-dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-story-content p {
    color: var(--brown);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-highlight {
    background: var(--green-mist);
    padding: 25px;
    border-radius: 20px;
    border-left: 5px solid var(--green-primary);
    margin: 30px 0;
}

.about-highlight p {
    margin: 0;
    font-style: italic;
    color: var(--green-dark);
}

/* Values Section */
.about-values-section {
    padding: 80px 0;
    background: var(--green-mist);
}

.about-values-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-values-header h2 {
    font-size: 2.8rem;
    color: var(--green-dark);
    margin-bottom: 15px;
}

.about-values-header p {
    color: var(--brown-light);
    font-size: 1.1rem;
}

.about-value-card {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    height: 100%;
}

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

.about-value-icon {
    width: 100px;
    height: 100px;
    background: var(--green-mist);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.about-value-card:hover .about-value-icon {
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
}

.about-value-icon i {
    font-size: 2.5rem;
    color: var(--green-primary);
    transition: all 0.4s ease;
}

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

.about-value-card h4 {
    font-size: 1.4rem;
    color: var(--green-dark);
    margin-bottom: 15px;
}

.about-value-card p {
    color: var(--brown-light);
    line-height: 1.7;
    margin: 0;
}

/* Timeline Section */
.about-timeline-section { padding: 80px 0; }

.about-timeline-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-timeline-header h2 {
    font-size: 2.8rem;
    color: var(--green-dark);
    margin-bottom: 15px;
}

.about-timeline-header p {
    color: var(--brown-light);
    font-size: 1.1rem;
}

.about-timeline {
    position: relative;
    padding: 20px 0;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--green-pale);
    border-radius: 2px;
}

.about-timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.about-timeline-item:last-child { margin-bottom: 0; }

.about-timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--green-primary);
    border-radius: 50%;
    border: 4px solid var(--cream);
    box-shadow: 0 0 0 4px var(--green-pale);
    z-index: 1;
}

.about-timeline-content {
    width: 45%;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.about-timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.about-timeline-item:nth-child(odd) .about-timeline-content {
    margin-left: auto;
}

.about-timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-timeline-content h4 {
    color: var(--green-dark);
    margin-bottom: 10px;
}

.about-timeline-content p {
    color: var(--brown-light);
    margin: 0;
    line-height: 1.7;
}

/* Stats Section */
.about-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
}

.about-stat-item {
    text-align: center;
    color: white;
}

.about-stat-number {
    font-size: 4rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.about-stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Team Section */
.about-team-section {
    padding: 80px 0;
    background: var(--green-dark);
}

.about-team-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-team-header h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 15px;
}

.about-team-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

.about-team-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.about-team-card:hover { transform: translateY(-10px); }

.about-team-photo {
    height: 280px;
    background: var(--green-mist);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-team-photo i {
    font-size: 5rem;
    color: var(--green-pale);
}

.about-team-info {
    padding: 30px;
    text-align: center;
}

.about-team-info h4 {
    font-size: 1.4rem;
    color: var(--green-dark);
    margin-bottom: 5px;
}

.about-team-role {
    color: var(--green-primary);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.about-team-info p {
    color: var(--brown-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* CTA Section */
.about-cta-section {
    padding: 100px 0;
    background: var(--cream);
}

.about-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.about-cta-content h2 {
    font-size: 2.8rem;
    color: var(--green-dark);
    margin-bottom: 20px;
}

.about-cta-content p {
    color: var(--brown-light);
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.about-btn-outline {
    padding: 15px 35px;
    border: 2px solid var(--green-primary);
    background: transparent;
    color: var(--green-primary);
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

/* About Page Responsive */
@media (max-width: 991px) {
    .about-story-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .about-timeline::before { left: 20px; }
    .about-timeline-item::before { left: 20px; }

    .about-timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px;
    }

    .about-experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        display: inline-block;
    }
}

@media (max-width: 767px) {
    .about-story-content h2,
    .about-values-header h2,
    .about-timeline-header h2,
    .about-team-header h2,
    .about-cta-content h2 {
        font-size: 2rem;
    }

    .about-stat-number { font-size: 3rem; }

    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ── Accessibility: Focus Visible ── */
.scroll-top:focus-visible {
    outline: 3px solid var(--green-primary);
    outline-offset: 2px;
}
.whatsapp-float:focus-visible {
    outline: 3px solid white;
    outline-offset: 3px;
    animation: none;
}
.btn-custom:focus-visible,
.btn-outline-custom:focus-visible {
    outline: 3px solid var(--green-primary);
    outline-offset: 2px;
}
.form-control:focus-visible,
.form-select:focus-visible {
    outline: 2px solid var(--green-primary);
    outline-offset: -1px;
}
a:focus-visible {
    outline: 2px solid var(--green-primary);
    outline-offset: 2px;
    border-radius: 2px;
}

/* ── Accessibility: Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


/* =============================================
   POPUP MODAL
   ============================================= */

.popup-modal {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: popupModalIn 0.4s ease-out;
}

.popup-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--green-dark);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.popup-modal__close:hover {
    background: var(--red);
    color: #fff;
    transform: rotate(90deg);
}

.popup-modal__image-wrap {
    width: 100%;
    overflow: hidden;
}

.popup-modal__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.popup-modal__body {
    padding: 28px 32px 32px;
    text-align: center;
}

.popup-modal__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.popup-modal__desc {
    color: #5a6c5a;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.popup-modal__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.popup-modal__btn:hover {
    background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 90, 39, 0.3);
}

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

@media (max-width: 575px) {
    .popup-modal__body {
        padding: 20px 20px 24px;
    }

    .popup-modal__title {
        font-size: 1.25rem;
    }

    .popup-modal__btn {
        padding: 10px 22px;
        font-size: 0.9rem;
    }
}
