:root {
    --bg-beige: #f9f7f2;
    --primary: #1a1a1a;
    --accent: #c19a6b;
    --white: #ffffff;
    --text-light: #666666;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 10px 30px rgba(0,0,0,0.03);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-beige);
    color: var(--primary);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
    opacity: 0;
    animation: fadeInPage 1.2s ease forwards;
}

@keyframes fadeInPage {
    to { opacity: 1; }
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 100px 0;
}

/* Navbar */
.navbar {
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(249, 247, 242, 0.9);
    backdrop-filter: blur(10px);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.logo img {
    height: 45px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-icons {
    display: flex;
    gap: 20px;
}

.nav-icons a {
    color: var(--primary);
    font-size: 1.1rem;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 150px;
    padding-bottom: 50px;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pre-title {
    font-size: 0.8rem;
    letter-spacing: 5px;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.btn {
    padding: 16px 35px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-dark {
    background: var(--primary);
    color: var(--white);
}

.btn-dark:hover {
    background: #333;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat i {
    font-size: 1.5rem;
    color: var(--accent);
}

.stat span {
    font-size: 0.9rem;
    font-weight: 600;
}

.stat small {
    font-weight: 400;
    color: var(--text-light);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 200px 200px 20px 20px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.05);
}

.floating-badge {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: var(--white);
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow);
}

.floating-badge span {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.floating-badge small {
    font-size: 0.5rem;
    letter-spacing: 1px;
    font-weight: 600;
}

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

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.filter-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.filter-btn {
    padding: 8px 25px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--text-light);
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.filter-btn.active {
    color: var(--primary);
    border-color: var(--accent);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    transition: var(--transition);
}

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

.product-img {
    height: 300px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.product-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* About Section */
.about {
    background: #f0ede6;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img img {
    width: 100%;
    border-radius: 8px;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.about-features {
    list-style: none;
    margin-top: 30px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-features i {
    color: var(--accent);
}

/* Contact Section */
.contact-card {
    background: var(--white);
    padding: 60px;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    box-shadow: var(--shadow);
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent);
}

.contact-btns {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn-wa {
    background: #25d366;
    color: var(--white);
}

.btn-ig {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: var(--white);
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid #eee;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-logo img {
    height: 30px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid, .about-grid, .contact-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content h1 { font-size: 3.5rem; }
    .hero-desc { margin: 0 auto 40px; }
    .hero-stats { justify-content: center; }
    .nav-links.active_mobile {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: var(--bg-beige);
        padding: 40px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        gap: 20px;
    }
    .menu-toggle { display: block; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.8rem; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}
