/* ===== GugoPro - Warm Lifestyle Theme ===== */

:root {
    --color-bg: #FDF8F4;
    --color-bg-alt: #FFF9F5;
    --color-primary: #8B6544;
    --color-primary-light: #A67C5B;
    --color-accent: #E8956D;
    --color-accent-light: #F4B89A;
    --color-text: #3D2E1F;
    --color-text-light: #6B5A4E;
    --color-text-muted: #9B8B7E;
    --color-border: #E8DDD5;
    --color-card: #FFFFFF;
    --color-card-hover: #FFF5EE;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Lora', serif;
    --shadow-sm: 0 2px 8px rgba(139, 101, 68, 0.08);
    --shadow-md: 0 4px 16px rgba(139, 101, 68, 0.12);
    --shadow-lg: 0 8px 32px rgba(139, 101, 68, 0.16);
    --radius: 12px;
    --radius-lg: 20px;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ===== Header ===== */
.header {
    background: var(--color-card);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 24px;
    color: var(--color-accent);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
}

.nav {
    display: flex;
    gap: 28px;
}

.nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-light);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav a:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-accent);
}

.lang-switch {
    display: flex;
    gap: 8px;
}

.lang-btn {
    padding: 6px 12px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    background: transparent;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-text-muted);
}

.lang-btn.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.lang-btn:hover:not(.active) {
    border-color: var(--color-primary-light);
    color: var(--color-primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--color-primary);
}

/* ===== Hero ===== */
.hero {
    background: linear-gradient(135deg, #FDF8F4 0%, #F9EDE4 50%, #FFF0E6 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 149, 109, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 101, 68, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-family: var(--font-accent);
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 36px;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: var(--color-primary);
    color: white;
    border-radius: 30px;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== Sections ===== */
.section-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 8px;
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: 16px;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: 48px;
}

/* ===== Featured Products ===== */
.featured {
    padding: 80px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--color-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent-light);
}

.product-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-info {
    padding: 24px;
}

.product-category {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
    margin-bottom: 8px;
    display: inline-block;
}

.product-info h3 {
    font-family: var(--font-accent);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-info p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.product-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.product-link:hover {
    color: var(--color-accent);
}

/* ===== Categories Section ===== */
.categories-section {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.category-card {
    background: var(--color-card);
    border-radius: var(--radius);
    padding: 32px 20px;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent-light);
}

.category-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.category-card h3 {
    font-family: var(--font-accent);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.category-card p {
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ===== Latest Reviews ===== */
.latest-reviews {
    padding: 80px 0;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.review-card {
    background: var(--color-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.review-image {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.review-info {
    padding: 24px;
}

.review-date {
    font-size: 12px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.review-info h3 {
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    margin: 8px 0 10px;
    line-height: 1.4;
}

.review-info p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ===== Footer ===== */
.footer {
    background: var(--color-primary);
    color: white;
    padding: 60px 0 30px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-icon,
.footer-brand .logo-text {
    color: white;
}

.footer-brand p {
    margin-top: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-links h4 {
    font-family: var(--font-accent);
    font-size: 16px;
    margin-bottom: 16px;
    color: white;
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-card);
    z-index: 200;
    padding: 24px;
    display: none;
    flex-direction: column;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--color-text);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav a {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text);
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.mobile-lang-switch {
    margin-top: 32px;
    display: flex;
    gap: 12px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .nav {
        display: none;
    }

    .lang-switch {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .product-grid,
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero {
        padding: 60px 0;
    }

    .featured,
    .categories-section,
    .latest-reviews {
        padding: 50px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .product-grid,
    .review-grid {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
