/* common/utilities.css */
:root {
    --stone-50: #ffffff;
    --stone-100: #f3efe8;
    --stone-200: #e7e0d3;
    --stone-300: #d2c8b8;
    --stone-600: #5f5f5d;
    --stone-700: #4e4d4a;
    --stone-900: #181715;
    --brand-50: #eef9f4;
    --brand-100: #dbf2e6;
    --brand-500: #0b6b46;
    --brand-600: #005f3f;
    --brand-700: #0f6d49;
    --brand-800: #0b5b3c;
    --brand-900: #083e2b;
    --brand-950: #072c1e;
    --shadow-soft: 0 20px 70px -40px rgba(15, 23, 42, 0.3);
}

body {
    background: var(--stone-50);
    color: var(--stone-900);
}

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

a {
    color: inherit;
    text-decoration: none;
}

.section-padding {
    padding-top: calc(3.5rem * 0.7);
    padding-bottom: calc(3.5rem * 0.7);
}

@media (min-width: 1024px) {
    .section-padding {
        padding-top: calc(3.5rem * 0.7);
        padding-bottom: calc(3.5rem * 0.7);
    }
}

@media (min-width: 1024px) {
    .export-markets-page.section-padding {
        padding-bottom: 2rem;
    }
}

.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; }
.max-w-\[920px\] { max-width: 920px; }
.max-w-\[1200px\] { max-width: 1200px; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-white { color: #ffffff; }
.text-stone-900 { color: var(--stone-900); }
.text-stone-600 { color: var(--stone-600); }
.text-stone-700 { color: var(--stone-700); }
.text-gray-900 { color: #111827; }
.text-gray-600 { color: #4b5563; }
.text-brand-700 { color: var(--brand-700); }
.text-brand-800 { color: var(--brand-800); }

.text-sm { font-size: 0.875rem; line-height: 1.5; }
.text-base { font-size: 1rem; line-height: 1.6; }
.text-lg { font-size: 1.125rem; line-height: 1.75; }
.text-2xl { font-size: 1.5rem; line-height: 1.2; }
.text-3xl { font-size: 1.875rem; line-height: 1.2; }
.text-4xl { font-size: 2.25rem; line-height: 1.15; }
.leading-relaxed { line-height: 1.75; }
.leading-7 { line-height: 1.75; }
.leading-8 { line-height: 2; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }
.tracking-tight { letter-spacing: -0.02em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.justify-center { justify-content: center; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-y-8 { row-gap: 2rem; }

.rounded-2xl { border-radius: 1rem; }
.rounded-\[20px\] { border-radius: 20px; }
.rounded-\[2rem\] { border-radius: 2rem; }
.rounded-full { border-radius: 9999px; }
.border { border: 1px solid rgba(15, 23, 42, 0.08); }
.border-stone-200 { border-color: rgba(15, 23, 42, 0.08); }
.border-gray-200 { border-color: #e5e7eb; }
.border-brand-200 { border-color: rgba(11, 107, 70, 0.16); }
.bg-white { background-color: #ffffff; }
.bg-stone-50 { background-color: var(--stone-50); }
.bg-stone-900 { background-color: #111827; }

.p-5 { padding: 1.25rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pr-6 { padding-right: 1.5rem; }
.pl-6 { padding-left: 1.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mb-12 { margin-bottom: 3rem; }

.shadow-sm { box-shadow: 0 10px 30px -20px rgba(15, 23, 42, 0.22); }

.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { inset: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.z-10 { z-index: 10; }

@media (min-width: 640px) {
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
    .lg\:pr-4 { padding-right: 1rem; }
}

@media (min-width: 1280px) {
    .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.manufacturing-process-section {
    background: linear-gradient(135deg, #f6fff8 0%, #fdfdfd 100%);
    position: relative;
}

.manufacturing-timeline {
    position: relative;
}

.manufacturing-card-wrapper {
    position: relative;
}

.manufacturing-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(11, 107, 70, 0.08);
    background: #ffffff;
    box-shadow: 0 20px 70px -40px rgba(15, 23, 42, 0.35);
}

.manufacturing-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #eef4eb;
}

.manufacturing-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manufacturing-badge {
    position: absolute;
    right: 0.75rem;
    top: 0.75rem;
    z-index: 2;
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--brand-600);
    color: #ffffff;
    font-weight: 700;
}

.manufacturing-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.9rem 1.5rem;
    background: var(--brand-600);
    color: #ffffff;
    font-weight: 600;
}

@media (min-width: 1024px) {
    #why-choose ul {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}
