body {
    font-family: 'Inter', sans-serif;
}

.hidden-section {
    display: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #d97706;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    color: #111827;
}

.logo-text span {
    color: #d97706;
}

.nav-item, .nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    transition: color 0.2s;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-item:hover, .nav-link:hover {
    color: #d97706;
}

/* Lang Switcher */
.lang-dropdown {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 9999px;
    background-color: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #1f2937;
    transition: background-color 0.2s;
}

.lang-btn:hover {
    background-color: #e5e7eb;
}

.flag-circle {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 9999px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.lang-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    overflow: hidden;
    padding: 0.25rem 0;
    z-index: 50;
    min-width: 160px;
}

.lang-dropdown:hover .lang-menu {
    display: block;
}

.lang-option {
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: background-color 0.2s;
    background: none;
    border: none;
    cursor: pointer;
}

.lang-option:hover {
    background-color: #f9fafb;
}

/* Mobile Menu */
.mobile-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.5rem 0.75rem;
    font-weight: 500;
    color: #374151;
    border-radius: 0.375rem;
    text-decoration: none;
}

.mobile-link:hover {
    background-color: #f3f4f6;
}

/* Hero */
.cta-button {
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: white;
    color: #111827;
    transform: scale(1.05);
}

/* Headings */
.section-label {
    color: #d97706;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

/* Category Cards */
.category-card {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    background-color: #f3f4f6;
    height: 20rem;
    text-decoration: none;
    display: block;
}

.cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .cat-img {
    transform: scale(1.1);
}

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    transition: background 0.3s;
}

.category-card:hover .cat-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.cat-info {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    color: white;
}

/* Filter Buttons */
.filter-btn {
    padding: 0.75rem 1rem;
    text-align: left;
    border-radius: 0.5rem;
    color: #4b5563;
    transition: all 0.2s;
    font-weight: 500;
    white-space: nowrap;
}

.filter-btn:hover {
    background-color: #f3f4f6;
    color: #d97706;
}

.filter-btn.active-filter {
    background-color: #fff7ed;
    color: #d97706;
    font-weight: 700;
    border-left: 3px solid #d97706;
}

/* Product Cards */
.product-card {
    text-decoration: none;
    color: inherit;
}

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

/* Sub Filter Buttons */
.sub-filter-btn {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background-color: white;
    color: #4b5563;
    transition: all 0.2s;
    border: 1px solid #e5e7eb;
    font-weight: 500;
}

.sub-filter-btn:hover {
    background-color: #f9fafb;
    color: #1f2937;
    border-color: #d1d5db;
}

.sub-filter-btn.active-sub {
    background-color: #d97706;
    color: white;
    border-color: #d97706;
}

/* Animation */
.page-view {
    animation: fadeIn 0.5s ease-in-out;
}

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