
:root {
    --primary-pink: #fce4ec;
    --accent-gold: #c5a059;
    --text-dark: #4a4a4a;
    --text-light: #888;
    --white: #ffffff;
    --bg-soft: #fafafa;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-serif: 'Georgia', serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

.beauty-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 100;
    backdrop-filter: blur(5px);
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: var(--text-dark);
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    margin: 0 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--accent-gold);
}

.header-actions span {
    margin-left: 1rem;
    cursor: pointer;
    font-size: 1.2rem;
}

/* Hero */
.hero-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 0;
    gap: 2rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--text-dark);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background-color: var(--accent-gold);
}

.hero-image-wrapper {
    flex: 1;
    height: 500px;
    overflow: hidden;
    border-radius: 100px 100px 0 0;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Products */
.product-section {
    padding: 4rem 0;
    background-color: var(--bg-soft);
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    padding: 1rem;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent-gold);
    color: white;
    padding: 0.2rem 0.6rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    z-index: 10;
}

.badge.hot {
    background: #e57373;
}

.prod-img {
    height: 350px;
    overflow: hidden;
    margin-bottom: 1rem;
}

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

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

.prod-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    height: 2.8em;
    overflow: hidden;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.price {
    font-weight: bold;
    font-size: 1.1rem;
}

.add-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--text-dark);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.add-btn:hover {
    background: var(--text-dark);
    color: white;
}

/* Services */
.service-section {
    padding: 5rem 0;
}

.service-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.service-list {
    list-style: none;
    margin-bottom: 2rem;
}

.service-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.s-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.s-text h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

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

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: white;
}

.service-visual {
    flex: 1;
    height: 500px;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* Footer */
.site-footer {
    background-color: #f5f5f5;
    padding: 4rem 2rem 2rem;
    margin: 0 -20px;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.col h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.col p, .col a {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.col a:hover {
    color: var(--accent-gold);
}

.copyright {
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 2rem;
    font-size: 0.8rem;
    color: #aaa;
}

@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        gap: 1rem;
    }
    .main-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    .main-nav a {
        margin: 0 0.5rem;
    }
    .hero-banner {
        flex-direction: column-reverse;
        text-align: center;
    }
    .hero-image-wrapper {
        width: 100%;
        height: 300px;
    }
    .service-layout {
        flex-direction: column;
    }
    .service-visual {
        width: 100%;
        height: 300px;
    }
}
