:root {
    --bg-main: #F9F8F6;
    --bg-white: #ffffff;
    --primary-red: #8B0000;
    --primary-red-hover: #a00000;
    --text-dark: #1A1A1A;
    --text-muted: #666666;
    --accent-orange: #f27a0f;
    --border-light: #e0e0e0;
    --transition: 0.3s ease;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --section-padding: 80px 0;
}

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

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

h1, h2, h3, h4, .serif-font {
    font-family: var(--font-serif);
    font-weight: 700;
}

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

.text-center { text-align: center; }
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border-radius: 4px;
}

.btn-primary {
    background-color: var(--primary-red);
    color: #fff;
}

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

.btn-outline {
    border: 1px solid var(--border-light);
    color: var(--text-dark);
}

.btn-outline:hover { background-color: rgba(0,0,0,0.05); }

/* Header */
.glass-header {
    background: var(--bg-white);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 800;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover { color: var(--primary-red); }

.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Hero Section */
.hero-section {
    padding: 60px 0;
    display: flex;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-image {
    flex: 1;
    position: relative;
}

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

.hero-content .subtitle {
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 20px;
    display: block;
}

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

.hero-content h1 b {
    color: var(--primary-red);
    font-style: italic;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Products Section */
.section { padding: var(--section-padding); }

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-title h2 { font-size: 2.5rem; }
.section-title p { color: var(--text-muted); }
.view-all { color: var(--primary-red); text-decoration: none; font-weight: 600; }

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

.product-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 1px solid transparent;
}

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

.product-img {
    height: 300px;
    background-color: #f0f0f0;
    position: relative;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-info {
    padding: 20px;
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #FFEFEE;
    color: var(--primary-red);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.product-card .price {
    font-weight: 700;
    color: var(--primary-red);
    font-size: 1.1rem;
}

.add-to-cart {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--accent-orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
}

.ads-panel {
    color: #fff;
    padding: 55px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
}

.ads-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.ads-panel h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.ads-panel p {
    max-width: 640px;
    margin-bottom: 24px;
}

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

.marketing-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 28px;
}

.marketing-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.marketing-card p {
    color: var(--text-muted);
    margin-bottom: 18px;
}

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

.post-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    overflow: hidden;
}

.post-card-thumb {
    display: block;
    height: 210px;
}

.post-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-card-content {
    padding: 22px;
}

.post-card-date {
    display: inline-block;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.post-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.post-card h3 a {
    color: var(--text-dark);
    text-decoration: none;
}

.post-card h3 a:hover {
    color: var(--primary-red);
}

.post-card p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* Icons Section */
.icons-section {
    background: #fff;
    padding: 60px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.icons-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.icon-item {
    flex: 1;
    padding: 0 20px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: #FFEFEE;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.icon-item h4 { margin-bottom: 10px; }
.icon-item p { font-size: 0.9rem; color: var(--text-muted); }

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.stars { color: #f27a0f; margin-bottom: 20px; }
.testimonial-text { font-style: italic; margin-bottom: 30px; color: var(--text-dark); }
.author { display: flex; align-items: center; gap: 15px; }
.author-avatar { width: 50px; height: 50px; background: #eee; border-radius: 50%; }
.author-info h5 { margin: 0; }
.author-info span { font-size: 0.8rem; color: var(--text-muted); }

/* Footer */
footer {
    padding: 80px 0 40px;
    background: #fff;
    border-top: 1px solid var(--border-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 { margin-bottom: 25px; font-size: 1.1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { text-decoration: none; color: var(--text-muted); font-size: 0.9rem; transition: var(--transition); }
.footer-col a:hover { color: var(--primary-red); }

.newsletter-input {
    display: flex;
    gap: 0;
    margin-top: 20px;
}

.newsletter-input input {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--border-light);
    border-right: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-btn {
    background: var(--primary-red);
    color: #fff;
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.social-links { display: flex; gap: 20px; }

@media (max-width: 968px) {
    .hero-section { flex-direction: column; text-align: center; }
    .hero-content { padding-right: 0; margin-bottom: 50px; }
    .hero-content h1 { font-size: 3rem; }
    .icons-grid { flex-direction: column; gap: 40px; }
    .marketing-grid { grid-template-columns: 1fr; }
    .post-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
    .ads-panel { padding: 35px 24px; }
    .ads-panel h2 { font-size: 1.8rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .header-actions .cta-btn { display: none; }
}
