* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #3d3226;
    background: linear-gradient(135deg, #f5f0e8 0%, #e8dcc8 50%, #d4c4a8 100%);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(138, 112, 75, 0.1);
    border-bottom: 1px solid rgba(212, 196, 168, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 600;
    color: #8a704b;
    letter-spacing: -0.5px;
    font-style: italic;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #8a704b;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 2rem;
    transition: right 0.4s ease;
    box-shadow: -5px 0 20px rgba(138, 112, 75, 0.1);
    list-style: none;
}

.nav-menu.active {
    right: 0;
}

.nav-menu a {
    color: #3d3226;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    letter-spacing: 0.3px;
}

.nav-menu a:hover {
    color: #8a704b;
}

.hero {
    background: linear-gradient(135deg, rgba(245, 240, 232, 0.8) 0%, rgba(232, 220, 200, 0.8) 100%);
    padding: 120px 40px;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.fade-in {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 300;
    color: #3d3226;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 1.15rem;
    color: #5a4a3a;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 3rem;
    color: #8a704b;
    font-style: italic;
    font-weight: 300;
    margin-top: 2.5rem;
}

.animated-text {
    display: inline-block;
    animation: glow 2s ease-in-out infinite alternate, float 3s ease-in-out infinite;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(138, 112, 75, 0.4),
                     0 0 20px rgba(138, 112, 75, 0.3),
                     0 0 30px rgba(138, 112, 75, 0.2);
    }
    to {
        text-shadow: 0 0 20px rgba(138, 112, 75, 0.6),
                     0 0 30px rgba(138, 112, 75, 0.5),
                     0 0 40px rgba(138, 112, 75, 0.4),
                     0 0 50px rgba(138, 112, 75, 0.3);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.categorii {
    padding: 100px 40px;
    background: rgba(255, 255, 255, 0.6);
}

.page-header {
    background: linear-gradient(135deg, rgba(245, 240, 232, 0.9) 0%, rgba(232, 220, 200, 0.9) 100%);
    padding: 80px 40px 60px;
    text-align: center;
    margin-top: 0;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #3d3226;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.page-header p {
    font-size: 1.1rem;
    color: #5a4a3a;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.section-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section-title h2 {
    font-size: 2.4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #3d3226;
    letter-spacing: -0.5px;
}

.section-description {
    color: #5a4a3a;
    font-size: 1.05rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.category-card {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(138, 112, 75, 0.15);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(50px);
    text-decoration: none;
}

.category-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.category-card:nth-child(1).animate-in { transition-delay: 0.1s; }
.category-card:nth-child(2).animate-in { transition-delay: 0.2s; }
.category-card:nth-child(3).animate-in { transition-delay: 0.3s; }
.category-card:nth-child(4).animate-in { transition-delay: 0.4s; }

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(138, 112, 75, 0.25);
}

.category-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(61, 50, 38, 0.9) 0%, rgba(61, 50, 38, 0.3) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-overlay h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.3px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.category-card:hover .category-overlay h3 {
    transform: translateY(0);
}

.produse-section {
    padding: 100px 40px;
    background: rgba(255, 255, 255, 0.4);
}

.produse-section.alternate {
    background: rgba(245, 240, 232, 0.6);
}

.produse-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.produs-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(138, 112, 75, 0.12);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

.produs-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.produs-card:nth-child(1).animate-in { transition-delay: 0.1s; }
.produs-card:nth-child(2).animate-in { transition-delay: 0.2s; }
.produs-card:nth-child(3).animate-in { transition-delay: 0.3s; }

.produs-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(138, 112, 75, 0.2);
}

.produs-image {
    background: #f8f5f0;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.produs-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.produs-card:hover .produs-image img {
    transform: scale(1.05);
}

.produs-info {
    padding: 1.8rem;
}

.produs-info h3 {
    color: #3d3226;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.produs-info p {
    color: #5a4a3a;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.produs-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pret {
    font-size: 1.3rem;
    font-weight: 600;
    color: #8a704b;
}

.btn-cumpara {
    display: inline-block;
    background: #8a704b;
    color: white;
    padding: 10px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}

.btn-cumpara:hover {
    background: #6d5739;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(138, 112, 75, 0.3);
}

.despre {
    padding: 100px 40px;
    background: rgba(255, 255, 255, 0.6);
}

.despre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.despre-text {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.despre-text.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.despre-text h2 {
    font-size: 2.2rem;
    font-weight: 300;
    color: #3d3226;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.despre-text p {
    color: #5a4a3a;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.btn-secondary {
    display: inline-block;
    border: 2px solid #8a704b;
    color: #8a704b;
    padding: 12px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}

.btn-secondary:hover {
    background: #8a704b;
    color: white;
}

.despre-img {
    height: 450px;
    background: #f8f5f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out 0.2s;
    box-shadow: 0 8px 30px rgba(138, 112, 75, 0.15);
}

.despre-img.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.despre-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.contact {
    padding: 100px 40px 80px;
    background: rgba(245, 240, 232, 0.8);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.contact.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.contact h2 {
    font-size: 2.2rem;
    font-weight: 300;
    color: #3d3226;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.contact p {
    font-size: 1.05rem;
    color: #5a4a3a;
    margin-bottom: 2.5rem;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #8a704b;
    color: white;
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}

.btn-instagram:hover {
    background: #6d5739;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(138, 112, 75, 0.3);
}

@media (max-width: 968px) {
    .nav-menu {
        width: 300px;
        right: -300px;
    }
    
    .container,
    .nav-container,
    .hero,
    .categorii,
    .produse-section,
    .despre,
    .contact {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 2.2rem;
    }
    
    .despre-content {
        grid-template-columns: 1fr;
    }
    
    .categories-grid,
    .produse-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .logo-text {
        font-size: 1.3rem;
    }
    
    .hero {
        padding: 70px 20px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .categorii,
    .produse-section,
    .despre,
    .contact {
        padding: 60px 20px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .category-image {
        height: 280px;
    }
    
    .produs-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .btn-cumpara {
        text-align: center;
    }
    
    .despre-img {
        height: 300px;
    }
}