/* ===== HERO ===== */
.hero {
    padding: 9rem 2rem 5rem;
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(192,22,31,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--red);
    background: var(--red-light);
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: fadeUp 0.5s ease 0.2s forwards;
}
.hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.12;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: fadeUp 0.5s ease 0.3s forwards;
}
.hero h1 .red { color: var(--red); }
.hero h1 .green { color: var(--green); }
.hero-sub {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.5s ease 0.4s forwards;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.5s ease 0.5s forwards;
}
.hero-image {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--red-light) 0%, #fef2f2 50%, var(--green-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.4s forwards;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}
.hero-image-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--white);
    background: rgba(192,22,31,0.85);
    padding: 0.35rem 0.7rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    opacity: 0;
    animation: fadeUp 0.5s ease 0.6s forwards;
}
.hero-stat-val { font-size: 1.6rem; font-weight: 800; color: var(--red); }
.hero-stat-lbl { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); margin-top: 0.15rem; }

/* ===== ABOUT ===== */
.about { background: var(--gray-50); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-text p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1rem; }
.about-text p:first-of-type { font-size: 1rem; color: var(--text); font-weight: 600; }
.division-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.division-tag i { color: var(--green); }
.about-images { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-images .img-placeholder { aspect-ratio: 1; }
.about-images .img-placeholder:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 1.5rem; }
.about-feat {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--border);
}
.about-feat i { font-size: 1.1rem; color: var(--red); flex-shrink: 0; }
.about-feat span { font-size: 0.82rem; font-weight: 700; color: var(--text); }

/* ===== VARIETIES ===== */
.varieties { background: var(--white); }
.varieties-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 1.2rem; }
.variety-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(12px);
}
.variety-card.visible { opacity: 1; transform: translateY(0); }
.variety-card:hover {
    border-color: var(--gray-300);
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}
.variety-img {
    height: 180px;
    background: var(--gray-100);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.variety-img img { width: 100%; height: 100%; object-fit: cover; }
.variety-header { padding: 1.2rem 1.3rem 0; display: flex; align-items: center; justify-content: space-between; }
.variety-tag {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.25rem 0.6rem;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.tag-red { color: var(--red); background: var(--red-light); }
.tag-green { color: var(--green); background: var(--green-light); }
.heat-tag {
    font-size: 0.62rem;
    font-weight: 800;
    padding: 0.2rem 0.5rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.heat-mild { color: #16A34A; background: #F0FDF4; }
.heat-medium { color: #EA580C; background: #FFF7ED; }
.heat-hot { color: var(--red); background: var(--red-light); }
.heat-very-hot { color: var(--green); background: var(--green-light); }
.variety-body { padding: 0.8rem 1.3rem 1.3rem; }
.variety-name { font-size: 1.15rem; font-weight: 800; color: var(--text); margin-bottom: 0.4rem; }
.variety-desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.variety-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; padding-top: 1rem; border-top: 1px solid var(--gray-100); }
.spec-label { font-size: 0.62rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.spec-value { font-size: 0.82rem; font-weight: 700; color: var(--text); }

/* ===== BANNER ===== */
.banner {
    padding: 3rem 2rem;
    background: var(--red);
    position: relative;
    overflow: hidden;
}
.banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.banner-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}
.banner-text h3 { font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 0.3rem; }
.banner-text p { font-size: 0.88rem; color: rgba(255,255,255,0.8); }
.banner .btn { background: var(--white); color: var(--red); }
.banner .btn:hover { background: var(--gray-100); }

/* ===== PROCESSED ===== */
.processed { background: var(--gray-50); }
.processed-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.2rem; }
.processed-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(10px);
}
.processed-card.visible { opacity: 1; transform: translateY(0); }
.processed-card:hover {
    border-color: var(--gray-300);
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}
.processed-img {
    height: 160px;
    background: var(--gray-100);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.processed-img img { width: 100%; height: 100%; object-fit: cover; }
.processed-body { padding: 1.2rem 1.3rem 1.3rem; }
.processed-body h3 { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 0.4rem; }
.processed-body p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 0.8rem; }
.processed-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.processed-tags span { font-size: 0.62rem; font-weight: 700; padding: 0.2rem 0.5rem; border-radius: 5px; }
.ptag-red { color: var(--red); background: var(--red-light); }
.ptag-green { color: var(--green); background: var(--green-light); }

/* ===== FRESH ===== */
.fresh { background: var(--white); }
.fresh-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.fresh-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s;
}
.fresh-card:hover {
    border-color: var(--gray-300);
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}
.fresh-img {
    height: 220px;
    background: var(--gray-100);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.fresh-img img { width: 100%; height: 100%; object-fit: cover; }
.fresh-body { padding: 1.5rem; }
.fresh-body h3 { font-size: 1.15rem; font-weight: 800; color: var(--text); margin-bottom: 0.4rem; }
.fresh-body p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.fresh-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; padding-top: 1rem; border-top: 1px solid var(--gray-100); }

/* ===== QUALITY ===== */
.quality { background: var(--gray-50); }
.quality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.quality-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.quality-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.2s;
}
.quality-item:hover { border-color: var(--gray-300); }
.qi-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.qi-icon-red { background: var(--red-light); }
.qi-icon-red i { color: var(--red); }
.qi-icon-green { background: var(--green-light); }
.qi-icon-green i { color: var(--green); }
.quality-item h4 { font-size: 0.88rem; font-weight: 800; color: var(--text); margin-bottom: 0.15rem; }
.quality-item p { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.5; }
.certs-panel {
    background: var(--white);
    border-radius: 14px;
    padding: 1.8rem;
    border: 1px solid var(--border);
}
.certs-panel h3 { font-size: 1.1rem; font-weight: 800; color: var(--text); margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.4rem; }
.certs-panel h3 i { color: var(--green); }
.certs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-bottom: 1.5rem; }
.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.8rem;
    background: var(--gray-50);
    border-radius: 8px;
    border: 1px solid var(--gray-100);
}
.cert-badge i { font-size: 0.9rem; color: var(--green); }
.cert-badge span { font-size: 0.75rem; font-weight: 800; color: var(--text); }
.certs-img {
    height: 180px;
    background: var(--gray-100);
    border: 2px dashed var(--gray-300);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.certs-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }

/* ===== MARKETS ===== */
.markets {
    background: var(--green);
    padding: 3.5rem 2rem;
    position: relative;
    overflow: hidden;
}
.markets::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.markets-inner { max-width: 1280px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.markets .section-label { color: rgba(255,255,255,0.7); }
.markets .section-title { color: var(--white); }
.markets .section-desc { color: rgba(255,255,255,0.7); margin: 0 auto 2rem; }
.markets-tags { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.5rem; }
.market-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--white);
    background: rgba(255,255,255,0.12);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);
}
.market-tag i { font-size: 0.9rem; }

/* ===== SPICES ===== */
.spices { background: var(--white); }
.spices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.spices-text p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1.2rem; }
.spices-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; }
.spices-list li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 0.4rem 0;
}
.spices-list li i { color: var(--green); font-size: 0.85rem; }
.spices-images { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.spices-images .img-placeholder { aspect-ratio: 1; }
.spices-images .img-placeholder:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; }

/* ===== PACKAGING ===== */
.packaging { background: var(--gray-50); }
.packaging-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; }
.pkg-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}
.pkg-card:hover {
    border-color: var(--gray-300);
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.pkg-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pkg-icon-red { background: var(--red-light); }
.pkg-icon-red i { font-size: 1.3rem; color: var(--red); }
.pkg-icon-green { background: var(--green-light); }
.pkg-icon-green i { font-size: 1.3rem; color: var(--green); }
.pkg-card h3 { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 0.3rem; }
.pkg-card p { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.5; }

/* ===== CONTACT LAYOUT ===== */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; }
.contact-info h3 { font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: 0.6rem; }
.contact-info > p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.5rem; }

/* ===== RESPONSIVE (page-specific) ===== */
@media (max-width: 1024px) {
    .hero-inner, .about-grid, .quality-grid, .contact-grid, .spices-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .hero { padding: 7rem 1.5rem 3rem; }
    .varieties-grid, .processed-grid { grid-template-columns: 1fr; }
    .fresh-grid { grid-template-columns: 1fr; }
    .packaging-grid { grid-template-columns: 1fr 1fr; }
    .about-features, .spices-list, .certs-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .packaging-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
}
