:root {
    --primary-color: #800020;
    --primary-dark: #5a0016;
    --primary-light: #a52a4a;
    --secondary-color: #fdf5f5;
    --accent-gold: #d4af37;
    --accent-gold-light: #e8c868;
    --text-dark: #2c2c2c;
    --text-muted: #666666;
    --text-light: #ffffff;
    --border-color: #e0e0e0;
    --shadow-soft: 0 4px 15px rgba(128, 0, 32, 0.08);
    --shadow-hover: 0 12px 30px rgba(128, 0, 32, 0.15);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Lato', Helvetica, Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: #fafafa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button, input, textarea {
    font-family: inherit;
    font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
}

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

.cherry {
    display: inline-block;
    margin: 0 4px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

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

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

.section {
    padding: 90px 0;
}

.bg-light {
    background-color: var(--secondary-color);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '🍒';
    display: block;
    font-size: 1.8rem;
    margin-top: 15px;
    animation: cherryBounce 2s ease-in-out infinite;
}

@keyframes cherryBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

header {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(128, 0, 32, 0.2);
}

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

.brand {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.brand .cherry {
    font-size: 1.4rem;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    margin-left: 35px;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

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

nav a:hover::after {
    width: 100%;
}

.hero {
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.92) 0%, rgba(90, 0, 22, 0.88) 50%, rgba(128, 0, 32, 0.85) 100%), url('https://images.unsplash.com/photo-1519741497674-611481863552?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
}

.hero::before {
    content: '🍒';
    position: absolute;
    top: 40px;
    left: 40px;
    font-size: 3rem;
    opacity: 0.3;
    animation: floatCherry 4s ease-in-out infinite;
}

.hero::after {
    content: '🍒';
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-size: 3rem;
    opacity: 0.3;
    animation: floatCherry 4s ease-in-out infinite reverse;
}

@keyframes floatCherry {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3.8rem;
    color: var(--text-light);
    margin-bottom: 25px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.35rem;
    font-weight: 300;
    margin-bottom: 45px;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero .btn {
    animation: fadeInUp 1s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.product-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '🍒';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.product-card:hover::before {
    opacity: 0.4;
}

.product-img-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(145deg, var(--secondary-color) 0%, #f5e8e8 50%, var(--secondary-color) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    transition: var(--transition);
}

.product-card:hover .product-img-placeholder {
    background: linear-gradient(145deg, #fce8e8 0%, #fadddd 50%, #fce8e8 100%);
}

.product-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.product-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-family: var(--font-serif);
}

.product-card .desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 22px;
    line-height: 1.6;
}

.product-card .btn {
    width: 100%;
}

.contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-wrapper > p {
    color: var(--text-muted);
    margin-bottom: 35px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.contact-card {
    background: var(--secondary-color);
    padding: 25px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.contact-card:hover {
    border-left-color: var(--accent-gold);
    box-shadow: var(--shadow-soft);
}

.contact-card h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-card a {
    color: var(--primary-color);
    font-weight: 600;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
    background-color: #fff;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(128, 0, 32, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form .btn {
    align-self: center;
    min-width: 200px;
}

footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    padding: 40px 0;
    margin-top: 60px;
    position: relative;
}

footer::before {
    content: '🍒';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    background-color: var(--primary-color);
    padding: 0 10px;
}

footer p {
    font-size: 0.95rem;
    opacity: 0.9;
}

footer .cherry {
    font-size: 1.1em;
}

@media (max-width: 992px) {
    .hero-content h1 { font-size: 3rem; }
    .section-title { font-size: 2rem; }
    nav a { margin-left: 20px; font-size: 0.85rem; }
}

@media (max-width: 768px) {
    .header-flex { flex-direction: column; gap: 15px; }
    nav { flex-direction: column; gap: 10px; }
    nav a { margin-left: 0; }
    nav a::after { display: none; }
    
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1.1rem; }
    .hero::before, .hero::after { display: none; }
    
    .product-grid { grid-template-columns: 1fr; gap: 25px; }
    .section { padding: 60px 0; }
    .section-title { font-size: 1.8rem; margin-bottom: 40px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.8rem; }
    .hero-content p { font-size: 0.95rem; }
    .btn { padding: 12px 24px; font-size: 0.8rem; }
    .contact-info { grid-template-columns: 1fr; }
}