/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #ffffff;
    background: url('https://wallpapers.com/images/featured/39hzfg9nvuarivt1.jpg') center center / cover no-repeat fixed;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}

/* Mobile background fix - Vibrant Blackberry Leaves Wallpaper */
@media (max-width: 768px) {
    body {
        background: url('https://media.livewallpapers.com/images/high/vibrant-blackberry-leaves-wallpaper.webp') center center / cover no-repeat scroll !important;
        background-attachment: scroll !important;
        min-height: 100vh !important;
    }
}

/* Additional mobile background fix for smaller screens */
@media (max-width: 480px) {
    body {
        background: url('https://media.livewallpapers.com/images/high/vibrant-blackberry-leaves-wallpaper.webp') center center / cover no-repeat scroll !important;
        background-attachment: scroll !important;
        min-height: 100vh !important;
    }
}

/* Dark overlay for better text readability */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    z-index: 1;
}



/* Container and layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

/* Main Navigation */
.main-navigation {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.nav-dropdown {
    position: relative;
}

.nav-toggle {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border: 3px solid #15803d;
    border-radius: 16px;
    padding: 14px 20px;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 
        0 6px 20px rgba(34, 197, 94, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 0 rgba(21, 128, 61, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-toggle:hover {
    background: linear-gradient(135deg, #15803d 0%, #22c55e 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(34, 197, 94, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(21, 128, 61, 0.4);
}

.nav-icon {
    font-size: 1.3rem;
}

.nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border: 3px solid #22c55e;
    border-radius: 16px;
    box-shadow: 
        0 10px 30px rgba(34, 197, 94, 0.25),
        inset 0 2px 0 rgba(255, 255, 255, 0.8);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
    margin-top: 8px;
}

.nav-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    color: #14532d;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.nav-link:last-child {
    border-bottom: none;
}

.nav-link:hover {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #15803d;
    transform: translateX(8px);
    font-weight: 600;
}

.nav-link-icon {
    font-size: 1.3rem;
}

/* Header and hero section */
.hero {
    text-align: center;
    padding: 0;
    position: relative;
    margin-bottom: 60px;
}

.main-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.8rem, 8vw, 4.5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
    position: relative;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(16, 185, 129, 0.1) 50%, rgba(34, 197, 94, 0.15) 100%);
    padding: 40px 50px;
    border: 4px solid #22c55e;
    border-radius: 24px;
    box-shadow: 
        0 0 0 3px #16a34a,
        0 16px 50px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.1),
        inset 0 -2px 0 rgba(34, 197, 94, 0.2);
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    backdrop-filter: blur(10px);
}

.main-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 25%, #22c55e 50%, #16a34a 75%, #22c55e 100%);
    border-radius: 24px 24px 0 0;
}

.main-title::after {
    content: '🌿';
    position: absolute;
    top: -25px;
    right: -25px;
    font-size: 3rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 3px solid #22c55e;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: leaf-sway 3s ease-in-out infinite;
    box-shadow: 
        0 0 0 2px #16a34a,
        0 10px 25px rgba(34, 197, 94, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.9);
}

@keyframes leaf-sway {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.controls {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 0 60px 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.08) 50%, rgba(34, 197, 94, 0.1) 100%);
    padding: 35px 45px;
    border: 3px solid #22c55e;
    border-top: none;
    border-radius: 0 0 24px 24px;
    box-shadow: 
        0 0 0 2px #16a34a,
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.1),
        inset 0 -2px 0 rgba(34, 197, 94, 0.2);
    position: relative;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(34, 197, 94, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
    backdrop-filter: blur(10px);
}

.controls::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 25%, #22c55e 50%, #16a34a 75%, #22c55e 100%);
    border-radius: 0 0 24px 24px;
}

.country-selector, .month-selector, .category-selector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.country-selector label, .month-selector label, .category-selector label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.country-selector select, .month-selector select, .category-selector select {
    padding: 16px 22px;
    border: 3px solid #22c55e;
    border-radius: 16px;
    font-size: 1.1rem;
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 253, 244, 0.9) 100%);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(34, 197, 94, 0.1);
    transition: all 0.3s ease;
    min-width: 180px;
    color: #14532d;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.country-selector select:focus, .month-selector select:focus, .category-selector select:focus {
    outline: none;
    border-color: #15803d;
    box-shadow: 
        0 0 0 4px rgba(21, 128, 61, 0.25), 
        0 8px 25px rgba(34, 197, 94, 0.35),
        inset 0 2px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(34, 197, 94, 0.15);
    transform: translateY(-3px);
}

.country-selector select:hover, .month-selector select:hover, .category-selector select:hover {
    border-color: #15803d;
    box-shadow: 
        0 8px 22px rgba(34, 197, 94, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(34, 197, 94, 0.15);
    transform: translateY(-3px);
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

/* Content area */
.content {
    padding: 0;
    margin-bottom: 60px;
}

/* Items list */
.items-table-container {
    padding: 40px 50px;
    margin: 0;
}

.items-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.item-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 253, 244, 0.9) 100%);
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    border-radius: 20px;
    padding: 25px;
    border: 2px solid #22c55e;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    font-family: 'Space Grotesk', sans-serif;
    backdrop-filter: blur(10px);
}

.item-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 253, 244, 0.95) 100%);
    z-index: 10;
    border-color: #16a34a;
}

.item-preview {
    display: flex;
    align-items: center;
    gap: 20px;
}

.item-image-preview {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #22c55e;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-info {
    flex: 1;
}

.item-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.item-category-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.05em;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.item-category-badge.fruits {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
    color: #ffffff;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.item-category-badge.herbs {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
    color: #ffffff;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.item-category-badge.nuts {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
    color: #ffffff;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Items table (kept for modal) */
.items-table-container table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.items-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.items-table th,
.items-table td {
    padding: 16px 12px;
    text-align: left;
    border-bottom: 1px solid rgba(113, 128, 150, 0.2);
}

.items-table th {
    font-weight: 600;
    color: #ffffff;
    background: rgba(113, 128, 150, 0.05);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.items-table tr:hover {
    background: rgba(104, 211, 145, 0.05);
}

.item-name {
    font-weight: 600;
    color: #ffffff;
}

.item-category {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.item-category.fruits {
    background: linear-gradient(135deg, #fed7d7, #feb2b2);
    color: #c53030;
}

.item-category.herbs {
    background: linear-gradient(135deg, #c6f6d5, #9ae6b4);
    color: #22543d;
}

.item-category.nuts {
    background: linear-gradient(135deg, #fef5e7, #fed7aa);
    color: #c05621;
}

.item-category.mushrooms {
    background: linear-gradient(135deg, #e9d8fd, #d6bcfb);
    color: #553c9a;
}

/* Image styles */
.item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(113, 128, 150, 0.2);
}

.item-image:hover {
    transform: scale(1.1);
    border-color: #68d391;
    box-shadow: 0 4px 12px rgba(104, 211, 145, 0.3);
}

.image-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #a0aec0;
    border: 2px solid rgba(113, 128, 150, 0.2);
}

/* Item Detail Modal */
.item-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(139, 69, 19, 0.8); */
    backdrop-filter: blur(10px);
}

.item-modal .modal-content {
    position: relative;
    margin: 2% auto;
    padding: 0;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
    border: 1px solid rgba(34, 197, 94, 0.3);
    font-family: 'Space Grotesk', sans-serif;
}

.item-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(34, 197, 94, 0.3);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
    position: relative;
}

.item-modal .modal-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(34, 197, 94, 0.5) 50%, transparent 100%);
}

.item-modal .modal-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.item-modal .close {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.item-modal .close:hover {
    color: #ffffff;
    background: rgba(34, 197, 94, 0.3);
    transform: scale(1.05);
    border-color: rgba(34, 197, 94, 0.5);
}

.item-modal .modal-body {
    padding: 32px;
    max-height: calc(90vh - 140px);
    overflow-y: auto;
    background: transparent;
    font-family: 'Poppins', sans-serif;
}

.item-details .item-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.item-details .item-season {
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 400;
    text-align: left;
    margin: 8px 0 16px 0;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-left: 3px solid rgba(34, 197, 94, 0.5);
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.item-details .item-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    padding: 24px;
    background: rgba(248, 250, 252, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(113, 128, 150, 0.1);
}

.item-details .modal-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.item-details .modal-image-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.item-details .modal-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.item-info-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
}

.item-info-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.5) 0%, rgba(16, 185, 129, 0.3) 50%, rgba(34, 197, 94, 0.5) 100%);
}

.info-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid rgba(34, 197, 94, 0.3);
    padding-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.info-section h3::before {
    content: '◆';
    color: rgba(34, 197, 94, 0.8);
    font-size: 1.2rem;
}

.info-section p {
    color: #ffffff;
    line-height: 1.8;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    text-align: justify;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.detailed-content {
    border-top: 1px solid rgba(34, 197, 94, 0.3);
    padding-top: 32px;
    margin-top: 8px;
    position: relative;
}

.detailed-content::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(34, 197, 94, 0.3) 50%, transparent 100%);
}

.content-section {
    margin-bottom: 32px;
}

.content-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(34, 197, 94, 0.3);
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.content-section h3::before {
    content: '▶';
    color: #14532d;
    font-size: 1.2rem;
}

.content-section p {
    color: #ffffff;
    line-height: 1.8;
    font-size: 1.2rem;
    margin-bottom: 18px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    text-align: justify;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.content-section ul {
    color: #ffffff;
    line-height: 1.8;
    font-size: 1.2rem;
    padding-left: 24px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.content-section li {
    margin-bottom: 12px;
    position: relative;
}

.content-section li::marker {
    color: #14532d;
    font-weight: bold;
}

.no-warnings {
    color: #14532d;
    font-style: italic;
    font-weight: 400;
    margin: 0;
    padding: 16px 20px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-left: 3px solid rgba(34, 197, 94, 0.5);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    text-align: center;
}

/* Zoom Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(113, 128, 150, 0.2);
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.close {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ffffff;
}

.modal-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.modal-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.modal-image-container:hover {
    transform: translateY(-5px);
}

.modal-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Full-size image modal */
.full-image-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.full-image-content {
    position: relative;
    margin: 2% auto;
    width: 95%;
    height: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.full-image-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1002;
}

.full-image-close:hover {
    color: #68d391;
}

/* Item detail page styles */
.item-meta {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
    font-family: 'Space Grotesk', sans-serif;
}

.item-season {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
    border: 1px solid rgba(34, 197, 94, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.item-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.item-link:hover {
    color: #68d391;
}

.back-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-radius: 25px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.back-link:hover {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3) 0%, rgba(16, 185, 129, 0.2) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.item-detail-container {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.item-detail-container section {
    margin-bottom: 40px;
}

.item-detail-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid rgba(34, 197, 94, 0.3);
    padding-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.item-detail-container p {
    color: #ffffff;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.item-detail-container ul {
    color: #ffffff;
    line-height: 1.7;
    font-size: 1.1rem;
    padding-left: 20px;
    font-family: 'Poppins', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.item-detail-container li {
    margin-bottom: 10px;
}

/* Images gallery */
.images-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(34, 197, 94, 0.2);
    backdrop-filter: blur(10px);
}

.gallery-image-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    border-color: rgba(34, 197, 94, 0.4);
}

.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

/* Responsive design for item pages */
@media (max-width: 768px) {
    .item-detail-container {
        padding: 20px;
    }
    
    .item-detail-container h2 {
        font-size: 1.5rem;
    }
    
    .images-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .item-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .item-detail-container {
        padding: 15px;
    }
    
    .item-detail-container h2 {
        font-size: 1.3rem;
    }
    
    .item-detail-container p,
    .item-detail-container ul {
        font-size: 1rem;
    }
}

/* No items state */
.no-items {
    text-align: center;
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.no-items-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.no-items h2 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.no-items p {
    color: #ffffff;
    font-size: 1.1rem;
}

/* Loading state */
.loading-state {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-family: 'Space Grotesk', sans-serif;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(34, 197, 94, 0.3);
    border-top: 4px solid rgba(34, 197, 94, 0.8);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

.loading-state p {
    color: #ffffff;
    font-size: 1.2rem;
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Error state */
.error-state {
    text-align: center;
    padding: 40px 20px;
    /* background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%); */
    border-radius: 16px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-family: 'Space Grotesk', sans-serif;
}

.error-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.error-state h2 {
    font-size: 1.8rem;
    color: #e53e3e;
    margin-bottom: 12px;
}

.error-state p {
    color: #ffffff;
    font-size: 1.2rem;
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Footer */
.footer {
    text-align: center;
    padding: 50px 0;
    border-top: 2px solid rgba(34, 197, 94, 0.3);
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(16, 185, 129, 0.03) 100%);
    border-radius: 24px 24px 0 0;
    backdrop-filter: blur(10px);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer p {
    color: #ffffff;
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.social-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 20px;
    border: 2px solid #22c55e;
    border-radius: 16px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(16, 185, 129, 0.15) 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    border-color: #15803d;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
}

.social-icon {
    font-size: 1.2rem;
}

.admin-link {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 18px;
    border: 2px solid #22c55e;
    border-radius: 16px;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(16, 185, 129, 0.15) 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.admin-link:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    border-color: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.25);
}

/* About and Feedback Pages */
.about-container, .feedback-container {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #f0fdf4 100%);
    border-radius: 24px;
    padding: 50px;
    margin: 30px 0;
    border: 3px solid #22c55e;
    box-shadow: 
        0 0 0 2px #16a34a,
        0 12px 40px rgba(34, 197, 94, 0.25),
        inset 0 2px 0 rgba(255, 255, 255, 0.9);
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.04) 0%, transparent 50%);
}

.about-section, .feedback-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(76, 175, 80, 0.2);
}

.about-section:last-child, .feedback-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.about-section h2, .feedback-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    border-bottom: 3px solid #22c55e;
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-section h2::before, .feedback-section h2::before {
    content: '🌿';
    font-size: 1.8rem;
}

.about-section p, .feedback-section p {
    color: #ffffff;
    line-height: 1.8;
    font-size: 1.2rem;
    margin-bottom: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.about-section ul, .feedback-section ul {
    color: #ffffff;
    line-height: 1.8;
    font-size: 1.2rem;
    padding-left: 28px;
    font-family: 'Poppins', sans-serif;
}

.about-section li, .feedback-section li {
    margin-bottom: 15px;
    position: relative;
}

.about-section li::marker, .feedback-section li::marker {
    color: #22c55e;
    font-weight: bold;
}

.contact-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #15803d;
    box-shadow: 
        0 6px 20px rgba(34, 197, 94, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.contact-link:hover {
    background: linear-gradient(135deg, #15803d 0%, #22c55e 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(34, 197, 94, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.contact-icon {
    font-size: 1.2rem;
}

/* Feedback Form */
.feedback-form {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    padding: 40px;
    border-radius: 20px;
    border: 3px solid #22c55e;
    box-shadow: 
        0 8px 25px rgba(34, 197, 94, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.9);
    margin: 40px 0;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 3px solid #22c55e;
    border-radius: 12px;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    color: #14532d;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 12px rgba(34, 197, 94, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #15803d;
    box-shadow: 
        0 0 0 4px rgba(21, 128, 61, 0.25),
        0 6px 20px rgba(34, 197, 94, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

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

.rating-group {
    display: flex;
    gap: 5px;
    align-items: center;
}

.rating-group input[type="radio"] {
    display: none;
}

.rating-group label {
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
    text-transform: none;
    letter-spacing: normal;
}

.rating-group label:hover {
    transform: scale(1.2);
}

.rating-group input[type="radio"]:checked + label {
    color: #ffc107;
    transform: scale(1.3);
}

.submit-btn {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border: 3px solid #15803d;
    border-radius: 16px;
    padding: 18px 36px;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    box-shadow: 
        0 6px 20px rgba(34, 197, 94, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #15803d 0%, #22c55e 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(34, 197, 94, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.submit-icon {
    font-size: 1.2rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .controls {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero {
        padding: 60px 0 40px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .items-table-container {
        padding: 20px;
    }
    
    .items-list {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .item-card {
        padding: 16px;
    }
    
    .item-preview {
        gap: 12px;
    }
    
    .item-image-preview {
        width: 60px;
        height: 60px;
    }
    
    .item-info h3 {
        font-size: 1.1rem;
    }
    
    .item-modal .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .item-modal .modal-header {
        padding: 20px;
    }
    
    .item-modal .modal-body {
        padding: 20px;
    }
    
    .item-details .item-images {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .item-info-grid {
        gap: 20px;
        padding: 20px;
    }
    
    .items-table {
        font-size: 0.85rem;
    }
    
    .items-table th,
    .items-table td {
        padding: 12px 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 40px 0 30px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .items-table {
        font-size: 0.8rem;
    }
    
    .items-table th,
    .items-table td {
        padding: 8px 6px;
    }
}

/* Seasonal color variations */
.spring .floating-circle.circle-1 { background: linear-gradient(45deg, #68d391, #9ae6b4); }
.spring .floating-circle.circle-2 { background: linear-gradient(45deg, #f6ad55, #fbbf24); }

.summer .floating-circle.circle-1 { background: linear-gradient(45deg, #fbbf24, #f59e0b); }
.summer .floating-circle.circle-2 { background: linear-gradient(45deg, #68d391, #48bb78); }

.autumn .floating-circle.circle-1 { background: linear-gradient(45deg, #ed8936, #dd6b20); }
.autumn .floating-circle.circle-2 { background: linear-gradient(45deg, #f687b3, #ed64a6); }

.winter .floating-circle.circle-1 { background: linear-gradient(45deg, #63b3ed, #4299e1); }
.winter .floating-circle.circle-2 { background: linear-gradient(45deg, #a0aec0, #718096); }
