:root {
    --primary: #d42458; /* Elegant Rose Red */
    --accent: #f8c2d1; /* Soft Pink */
    --text-main: #1a1a1a;
    --text-muted: #888;
    --bg-main: #ffffff;
    --bg-secondary: #fffafb;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-main);
    overflow-x: hidden;
}

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

/* Header */
.main-header {
    background: white;
    padding: 2.5rem 0;
    text-align: center;
    border-bottom: 5px solid var(--accent);
    margin-bottom: 2rem;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.logo span {
    font-weight: 300;
    color: var(--text-main);
}

/* Category Selection */
.category-nav {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 0;
    overflow-x: auto;
    scrollbar-width: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-bottom: 1px solid #eee;
}

.category-nav::-webkit-scrollbar {
    display: none;
}

.cat-btn {
    padding: 0.5rem 1.2rem;
    border: 2px solid #eee;
    background: white;
    border-radius: 50px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
    white-space: nowrap;
}

.cat-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 36, 88, 0.2);
}

/* Product Grid */
.catalog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Sections & Categories */
.category-section {
    margin-bottom: 5rem;
    animation: fadeIn 0.8s ease-out;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .section-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .section-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
}

.product-card {
    background: white;
    transition: var(--transition);
}

.product-image-container {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.product-info {
    padding: 1rem 0;
    text-align: center;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.wa-btn {
    background: #25d366;
    color: white;
    display: inline-flex;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.wa-btn:hover {
    background: #128c7e;
    transform: scale(1.05);
}

/* Footer */
.main-footer {
    padding: 5rem 1rem;
    text-align: center;
    border-top: 1px solid #eee;
    margin-top: 5rem;
    background: var(--bg-secondary);
}

.share-btn {
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(212, 36, 88, 0.3);
    margin-bottom: 1.5rem;
}
