/* AGRIZON - Smart Agriculture & Marketplace System */
:root {
    --primary: #2d6a4f;
    --primary-dark: #1b4332;
    --primary-light: #52b788;
    --secondary: #f9c74f;
    --accent: #e63946;
    --light: #f8f9fa;
    --dark: #1a1a2e;
    --gray: #6c757d;
    --gradient-1: linear-gradient(135deg, #2d6a4f, #52b788);
    --gradient-2: linear-gradient(135deg, #f9c74f, #f4a261);
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-sm: 8px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: #f0f4f0;
    color: var(--dark);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background: var(--gradient-1) !important;
    padding: 0.8rem 0;
    box-shadow: var(--shadow);
    z-index: 1000;
}
.navbar-brand .brand-icon {
    font-size: 1.5rem;
    color: var(--secondary);
}
.navbar-brand .brand-text {
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 1px;
}
.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s;
    border-radius: var(--radius-sm);
    margin: 0 0.1rem;
}
.nav-link:hover, .nav-link.active {
    background: rgba(255,255,255,0.15);
}
.user-avatar {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border: 2px solid var(--secondary);
}
.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.65rem;
    border-radius: 50%;
    padding: 0.2rem 0.4rem;
}
.nav-spacer { height: 72px; }

/* Hero Section */
.hero {
    background: var(--gradient-1);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.hero h1 {
    font-weight: 800;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.hero h1 span {
    color: var(--secondary);
}
.hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}
.hero-btn {
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}
.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.hero-image {
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Section Headers */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}
.section-title h2 {
    font-weight: 700;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-2);
    border-radius: 2px;
}
.section-title p {
    color: var(--gray);
    margin-top: 1rem;
}

/* Cards */
.card {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.3s;
    overflow: hidden;
    background: white;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.card-feature {
    text-align: center;
    padding: 2.5rem 1.5rem;
}
.card-feature .icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}
.card-feature h4 {
    font-weight: 600;
    margin-bottom: 0.8rem;
}
.card-feature p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Product Cards */
.product-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.product-card:hover .product-image img {
    transform: scale(1.1);
}
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}
.product-badge.fruit { background: #e63946; }
.product-badge.vegetable { background: #2a9d8f; }
.product-badge.seed { background: #f4a261; }
.product-badge.fertilizer { background: #6f4e37; }
.product-badge.approved { background: var(--primary); }
.product-badge.pending { background: #f4a261; }
.product-badge.rejected { background: #e63946; }

.product-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-body h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}
.product-body .category {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.product-body .farmer {
    color: var(--gray);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}
.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.product-price .unit {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 400;
}
.product-rating {
    color: var(--secondary);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}
.product-rating .count {
    color: var(--gray);
    font-size: 0.75rem;
}
.product-actions {
    margin-top: auto;
    display: flex;
    gap: 0.5rem;
}

/* Buttons */
.btn {
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    transition: all 0.3s;
}
.btn-primary {
    background: var(--gradient-1);
    border: none;
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.btn-warning {
    background: var(--gradient-2);
    border: none;
    color: var(--dark);
}
.btn-success {
    background: #2a9d8f;
    border: none;
}
.btn-danger {
    background: #e63946;
    border: none;
}
.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
}

/* Stats Cards */
.stat-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}
.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}
.stat-card .stat-info h3 {
    font-weight: 700;
    margin-bottom: 0.2rem;
}
.stat-card .stat-info p {
    color: var(--gray);
    font-size: 0.85rem;
    margin: 0;
}

/* Dashboard */
.dashboard-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.dashboard-card .card-header {
    background: var(--gradient-1);
    color: white;
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    border: none;
}
.dashboard-card .card-header h5 {
    margin: 0;
    font-weight: 600;
}
.dashboard-card .card-body {
    padding: 1.5rem;
}
.dashboard-sidebar {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.sidebar-menu {
    list-style: none;
    padding: 0;
}
.sidebar-menu li a {
    display: flex;
    align-items: center;
    padding: 0.9rem 1.5rem;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}
.sidebar-menu li a:hover, .sidebar-menu li a.active {
    background: rgba(45, 106, 79, 0.08);
    color: var(--primary);
    border-left-color: var(--primary);
}
.sidebar-menu li a i {
    width: 24px;
    margin-right: 0.8rem;
    text-align: center;
}
.sidebar-header {
    background: var(--gradient-1);
    color: white;
    padding: 1.5rem;
    text-align: center;
}
.sidebar-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary);
    margin-bottom: 0.8rem;
}

/* Forms */
.form-control, .form-select {
    border-radius: var(--radius-sm);
    border: 2px solid #e9ecef;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 0.2rem rgba(45, 106, 79, 0.15);
}
.form-label {
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 0.4rem;
}
.form-floating > .form-control {
    border-radius: var(--radius-sm);
}
.input-group-text {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

/* Tables */
.table-container {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.table {
    margin-bottom: 0;
}
.table thead th {
    background: var(--gradient-1);
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    padding: 1rem 1.2rem;
    white-space: nowrap;
}
.table tbody td {
    padding: 1rem 1.2rem;
    font-size: 0.9rem;
    vertical-align: middle;
}
.table tbody tr {
    transition: all 0.2s;
}
.table tbody tr:hover {
    background: rgba(45, 106, 79, 0.04);
}

/* Auth Pages */
.auth-page {
    min-height: 100vh;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.auth-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 450px;
    overflow: hidden;
}
.auth-card .auth-header {
    background: var(--gradient-1);
    color: white;
    padding: 2rem;
    text-align: center;
}
.auth-card .auth-header h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.auth-card .auth-body {
    padding: 2rem;
}
.auth-brand {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.auth-brand i {
    color: var(--secondary);
}

/* Cart */
.cart-item {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}
.cart-item:hover {
    box-shadow: var(--shadow-lg);
}
.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}
.cart-item .cart-item-info {
    flex: 1;
}
.cart-item .cart-item-info h6 {
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.cart-item .cart-item-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}
.qty-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.qty-control button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: white;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
}
.qty-control button:hover {
    background: var(--primary-dark);
}
.qty-control .qty-value {
    width: 40px;
    text-align: center;
    font-weight: 600;
}

/* Order Status */
.status-badge {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.status-pending { background: #fff3cd; color: #856404; }
.status-shipped { background: #cce5ff; color: #004085; }
.status-delivered { background: #d4edda; color: #155724; }
.status-cancelled { background: #f8d7da; color: #721c24; }

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #e9ecef;
    border-radius: 3px;
}
.timeline-item {
    position: relative;
    padding-bottom: 1.5rem;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.3rem;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary-light);
    transform: translateX(-6px);
}
.timeline-item.completed::before {
    background: var(--primary);
}
.timeline-item.pending::before {
    background: #ccc;
    box-shadow: 0 0 0 3px #ddd;
}

/* Reviews */
.review-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}
.review-card .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}
.review-card .reviewer {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.review-card .reviewer img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}
.review-card .reviewer-info h6 {
    margin: 0;
    font-weight: 600;
}
.review-card .reviewer-info .date {
    font-size: 0.8rem;
    color: var(--gray);
}
.stars {
    color: #ffc107;
    font-size: 0.9rem;
}

/* Search & Filter */
.search-bar {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    margin-bottom: 2rem;
}
.search-bar .input-group {
    border-radius: var(--radius-sm);
    overflow: hidden;
}

/* Notifications */
.notification-item {
    background: white;
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    margin-bottom: 0.8rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
    border-left: 4px solid var(--primary);
}
.notification-item:hover {
    transform: translateX(5px);
}
.notification-item.unread {
    border-left-color: var(--secondary);
    background: #fffdf5;
}
.notification-item .notif-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}
.notification-item .notif-content {
    flex: 1;
}
.notification-item .notif-content p {
    margin: 0;
    font-size: 0.9rem;
}
.notification-item .notif-content .time {
    font-size: 0.75rem;
    color: var(--gray);
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e9ecef;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Weather Widget */
.weather-widget {
    background: var(--gradient-1);
    border-radius: var(--radius);
    padding: 2rem;
    color: white;
    text-align: center;
}
.weather-widget .weather-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}
.weather-widget .temperature {
    font-size: 3rem;
    font-weight: 700;
}
.weather-widget .weather-desc {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Disease Detection */
.upload-area {
    border: 3px dashed var(--primary-light);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(45, 106, 79, 0.03);
}
.upload-area:hover {
    border-color: var(--primary);
    background: rgba(45, 106, 79, 0.08);
}
.upload-area i {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}
.result-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
}
.result-card .result-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}
.result-card .disease-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}
.treatment-box {
    background: #f8f9fa;
    border-radius: var(--radius-sm);
    padding: 1.2rem;
    text-align: left;
    margin-top: 1rem;
}
.treatment-box h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.treatment-box ul {
    margin: 0;
    padding-left: 1.2rem;
}
.treatment-box li {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

/* Calculator */
.calc-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem;
}
.calc-result {
    background: var(--gradient-1);
    border-radius: var(--radius);
    padding: 1.5rem;
    color: white;
    text-align: center;
    margin-top: 1.5rem;
}
.calc-result h4 {
    font-weight: 700;
    margin-bottom: 0.3rem;
}
.calc-result .amount {
    font-size: 2rem;
    font-weight: 800;
}

/* Admin */
.admin-page {
    background: #f0f4f0;
    min-height: 100vh;
}
.admin-sidebar {
    background: var(--dark);
    min-height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    width: 260px;
    z-index: 1000;
    overflow-y: auto;
}
.admin-sidebar .sidebar-brand {
    padding: 1.5rem;
    text-align: center;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.admin-sidebar .sidebar-brand h4 {
    font-weight: 800;
    margin: 0;
}
.admin-sidebar .sidebar-brand h4 i {
    color: var(--secondary);
}
.admin-sidebar .nav-link {
    color: rgba(255,255,255,0.7);
    padding: 0.9rem 1.5rem !important;
    border-radius: 0;
    border-left: 3px solid transparent;
    font-size: 0.9rem;
}
.admin-sidebar .nav-link:hover, .admin-sidebar .nav-link.active {
    background: rgba(255,255,255,0.08);
    color: white;
    border-left-color: var(--secondary);
}
.admin-sidebar .nav-link i {
    width: 24px;
    text-align: center;
    margin-right: 0.5rem;
}
.admin-main {
    margin-left: 260px;
    padding: 2rem;
}
.admin-header {
    background: white;
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Charts Container */
.chart-container {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.chart-container canvas {
    max-height: 350px;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.slide-in {
    animation: slideIn 0.4s ease-out;
}
@keyframes slideIn {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Breadcrumb */
.breadcrumb-section {
    background: var(--gradient-1);
    padding: 2rem 0;
    color: white;
}
.breadcrumb-section h2 {
    font-weight: 700;
    margin: 0;
}
.breadcrumb-section .breadcrumb {
    margin: 0;
    padding: 0;
    background: none;
}
.breadcrumb-section .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}
.breadcrumb-section .breadcrumb-item.active {
    color: var(--secondary);
}

/* Pagination */
.pagination .page-link {
    border: none;
    color: var(--primary);
    font-weight: 500;
    border-radius: var(--radius-sm);
    margin: 0 0.2rem;
}
.pagination .page-item.active .page-link {
    background: var(--primary);
}

/* Footer */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
}
.footer-main {
    padding: 4rem 0 2rem;
}
.footer-brand h4 {
    color: white;
    margin-bottom: 1rem;
}
.footer-brand h4 i {
    color: var(--secondary);
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 0.6rem;
}
.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}
.footer-contact {
    list-style: none;
    padding: 0;
}
.footer-contact li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.9rem;
}
.footer-contact i {
    color: var(--secondary);
    margin-top: 0.3rem;
}
.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}
.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}
.social-links a:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
}
.footer h5 {
    color: white;
    margin-bottom: 1.2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}
.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* Responsive */
@media (max-width: 991px) {
    .admin-sidebar {
        width: 100%;
        position: relative;
        min-height: auto;
    }
    .admin-main {
        margin-left: 0;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .nav-spacer { height: 66px; }
}
@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
        text-align: center;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .section-title {
        margin-bottom: 2rem;
    }
    .cart-item {
        flex-direction: column;
        text-align: center;
    }
    .cart-item .qty-control {
        justify-content: center;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--gray);
}
.empty-state i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #ddd;
}
.empty-state h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}
