/* ChaiMan - Custom Styles */

:root {
    --primary: #2d7a4f;
    --primary-dark: #1f5538;
    --primary-light: #5cb179;
    --gradient-primary: linear-gradient(135deg, #2d7a4f 0%, #5cb179 100%);
    --gradient-glow: radial-gradient(circle at 50% 0%, rgba(45, 122, 79, 0.15) 0%, transparent 50%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

/* Utilities */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
}

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

.desktop-only {
    display: inline-flex;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    z-index: 1000;
    padding: 1rem 0;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

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

.navbar-brand img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

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

.nav-link {
    font-weight: 500;
    color: #333;
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.875rem;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 122, 79, 0.3);
}

.btn-gradient {
    background: var(--gradient-primary);
    color: white;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 122, 79, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(0,0,0,0.1);
}

.btn-icon:hover {
    background: rgba(45, 122, 79, 0.1);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 20px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, rgba(45, 122, 79, 0.05) 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: var(--gradient-glow);
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content.hero-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(45, 122, 79, 0.1);
    color: var(--primary);
    border: 1px solid rgba(45, 122, 79, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #666;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
}

.hero-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 20px;
    background: rgba(45, 122, 79, 0.03);
}

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

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
}

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

.benefit-card {
    padding: 2rem;
    transition: var(--transition);
    text-align: center;
}

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

.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    background: rgba(45, 122, 79, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    color: var(--primary);
}

.benefit-card:hover .benefit-icon {
    background: rgba(45, 122, 79, 0.2);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: #666;
    margin: 0;
}

/* Categories Section */
.categories-section {
    padding: 80px 20px;
}

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

.category-card {
    display: block;
    position: relative;
    height: 400px;
    border-radius: 1rem;
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition);
}

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

.category-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.category-card:hover .category-image {
    transform: scale(1.1);
}

.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4), transparent);
    z-index: 1;
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: white;
    z-index: 2;
}

.category-count {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(45, 122, 79, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.category-desc {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
}

.category-card:hover .category-link {
    gap: 0.75rem;
}

/* Products Section */
.products-section {
    padding: 80px 20px;
    background: rgba(45, 122, 79, 0.03);
}

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

.product-card {
    display: block;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

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

.product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(45, 122, 79, 0);
    transition: var(--transition);
}

.product-card:hover .product-image::after {
    background: rgba(45, 122, 79, 0.1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.badge-popular {
    background: var(--gradient-primary);
    color: white;
}

.badge-new {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.badge-premium {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.product-rating {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
    color: #f59e0b;
}

.product-body {
    padding: 1.5rem;
}

.product-category {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.product-card:hover .product-title {
    color: var(--primary);
}

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

.product-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
}

.product-arrow {
    color: #999;
    transition: var(--transition);
}

.product-card:hover .product-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

/* About Section */
.about-section, .section {
    padding: 80px 20px;
}

/* Page header used on static pages */
.page-header {
    padding: 140px 20px 40px;
    background: rgba(45, 122, 79, 0.03);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
}
.page-header .lead {
    color: #666;
}

/* Grid for about content */
.about-grid, .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.about-grid.reverse .about-content { order: 2; }
.about-grid.reverse .about-image { order: 1; }

.about-image img, .image-col img {
    width: 100%;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}
.about-image img:hover, .image-col img:hover {
    transform: scale(1.02);
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.image-col:nth-child(2) { margin-top: 3rem; }

/* Values grid cards */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}
.value-card {
    padding: 2rem;
    border-radius: 1rem;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.value-icon {
    width: 56px; height: 56px; border-radius: 0.75rem; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: var(--primary); background: rgba(45,122,79,0.08);
}

/* Inline stats */
.stats-inline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1.5rem; }
.stat-item { text-align: center; }
.stat-value { font-size: 2rem; font-weight: 900; }
.stat-label { color: #666; font-size: 0.875rem; }

/* Story text helpers */
.about-text .lead { font-size: 1.125rem; color: #666; margin-bottom: 1.25rem; }

.about-text .lead {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: #333;
}

.feature-list svg {
    flex-shrink: 0;
    color: var(--primary);
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: rgba(45, 122, 79, 0.03);
}

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

.contact-card {
    display: block;
    padding: 3rem 2rem;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    text-align: center;
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.contact-icon.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.contact-card:hover .contact-icon.whatsapp {
    background: rgba(37, 211, 102, 0.2);
}

.contact-icon.instagram {
    background: var(--gradient-primary);
    color: white;
}

.contact-card:hover .contact-icon.instagram {
    box-shadow: 0 8px 20px rgba(45, 122, 79, 0.3);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 1rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.contact-card:hover .contact-link {
    gap: 0.75rem;
}

/* Contact Page Styles */
.contact-hero {
    padding: 140px 20px 80px;
    background: rgba(45, 122, 79, 0.03);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: var(--gradient-glow);
    z-index: 0;
}

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

.contact-section {
    padding: 80px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

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

.info-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    background: rgba(45, 122, 79, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary);
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #666;
    margin-bottom: 1rem;
}

.info-card .btn {
    width: 100%;
    justify-content: center;
}

.contact-form-wrapper .glass-card {
    padding: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.875rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 122, 79, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Footer */
.footer {
    background: rgba(45, 122, 79, 0.03);
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 60px 20px 30px;
}

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

.footer-column h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-logo {
    margin-bottom: 1rem;
	height: 50px;
}

.footer-desc {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: #666;
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column ul li a:hover {
    color: var(--primary);
}

.footer-contact li span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.875rem;
}

.footer-contact svg {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #666;
    font-size: 0.875rem;
    margin: 0;
}

.footer-made {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.footer-made svg {
    color: #ef4444;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
        gap: 0;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        justify-content: center;
    }
    
    .nav-link {
        width: 100%;
        padding: 0.5rem 0;
        font-size: 1.125rem;
        text-align: center;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .section-header-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-grid.reverse .about-content,
    .about-grid.reverse .about-image {
        order: 0;
    }
    
    .about-image img {
        animation: none;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-inline {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .page-header {
        padding: 120px 20px 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .image-col:nth-child(2) {
        margin-top: 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* Product Page Styles */
.product-section { padding: 120px 20px 80px; }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-bottom: 4rem; }
.product-image-wrapper { position: sticky; top: 100px; }
.product-detail-image { position: relative; border-radius: 1rem; overflow: hidden; box-shadow: var(--shadow-lg); }
.product-detail-image img { width: 100%; display: block; }
.badge-category { display: inline-block; padding: 0.5rem 1rem; background: rgba(45,122,79,0.1); color: var(--primary); border-radius: 2rem; font-size: 0.875rem; font-weight: 600; margin-bottom: 1rem; }
.product-info h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 1rem; }
.product-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.product-rating-large { display: flex; align-items: center; gap: 0.5rem; color: #f59e0b; font-weight: 700; font-size: 1.25rem; }
.reviews-count { color: #666; font-size: 0.875rem; }
.product-price-large { font-size: 3rem; font-weight: 900; color: var(--primary); margin-bottom: 1.5rem; }
.product-description { font-size: 1.125rem; color: #666; line-height: 1.8; margin-bottom: 2rem; }
.product-details-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 2rem; }
.detail-card { display: flex; align-items: center; gap: 1rem; padding: 1.5rem; background: rgba(45,122,79,0.05); border-radius: 1rem; }
.detail-card svg { color: var(--primary); flex-shrink: 0; }
.detail-card small { display: block; font-size: 0.75rem; color: #666; text-transform: uppercase; }
.detail-card strong { display: block; font-size: 1.125rem; font-weight: 700; }
.product-actions { display: flex; gap: 1rem; margin-bottom: 2rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-success { background: #25D366; color: white; }
.btn-success:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: white; }
.product-features h3 { display: flex; align-items: center; gap: 0.5rem; font-size: 1.25rem; margin-bottom: 1rem; }
.product-features h3 svg { color: var(--primary); }
.product-features ul { list-style: none; }
.product-features li { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.product-features li svg { color: var(--primary); flex-shrink: 0; }
.product-tabs { margin-top: 4rem; }
.tabs-nav { display: flex; gap: 1rem; border-bottom: 2px solid rgba(0,0,0,0.05); margin-bottom: 2rem; }
.tab-btn { padding: 1rem 2rem; background: none; border: none; font-size: 1rem; font-weight: 600; color: #666; cursor: pointer; position: relative; transition: var(--transition); }
.tab-btn.active { color: var(--primary); }
.tab-btn.active::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--primary); }
.tab-pane { display: none; padding: 2rem 0; }
.tab-pane.active { display: block; }
.tab-pane .lead { font-size: 1.125rem; line-height: 1.8; color: #666; }
.brewing-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.brewing-item { text-align: center; padding: 2rem; background: rgba(45,122,79,0.05); border-radius: 1rem; }
.brewing-item h3 { font-size: 2rem; font-weight: 900; color: var(--primary); margin-bottom: 0.5rem; }
.brewing-item p { color: #666; margin: 0; }

/* Catalog improvements */
.catalog-section { background: #fff; }
.bg-light { background: rgba(45, 122, 79, 0.03); }
.text-center { text-align: center; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }
.lead { font-size: 1.125rem; line-height: 1.6; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: white; }
.social-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--primary); text-decoration: none; transition: var(--transition); }
.social-link:hover { color: var(--primary-dark); }
.footer-col h4 { font-weight: 700; margin-bottom: 1.5rem; color: #333; }
.footer-links { list-style: none; }

/* About page improvements */
.about-grid h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 1.5rem; }
.about-grid p { font-size: 1.0625rem; line-height: 1.8; color: #555; margin-bottom: 1.25rem; }
.value-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.value-card p { color: #666; margin: 0; line-height: 1.6; }

@media (max-width: 968px) {
    .product-layout { grid-template-columns: 1fr; gap: 2rem; }
    .product-image-wrapper { position: relative; top: 0; }
    .product-actions { flex-direction: column; }
    .product-actions .btn { width: 100%; justify-content: center; }
    .brewing-info { grid-template-columns: 1fr; }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in { animation: fadeIn 0.6s ease-out; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.float { animation: float 3s ease-in-out infinite; }


/* Стили применяются только в секции #contact и только к гриду с модификатором */
#contact .contact-grid.contact-grid--split-50 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* 50% + 50% */
  gap: 30px;
}

#contact .contact-grid.contact-grid--split-50 .contact-card {
  width: 100%;              /* на всякий случай: растягиваемся на всю колонку */
  border-radius: 20px;
  padding: 40px 30px;
  background: #fff;
  text-align: center;
  transition: box-shadow .2s ease, transform .2s ease;
}

/* Адаптив: на мобилках в один столбец */
@media (max-width: 768px) {
  #contact .contact-grid.contact-grid--split-50 {
    grid-template-columns: 1fr;
  }
}
