/* 
   ORTUS NEW DEMO — PREMIUM DESIGN SYSTEM
   Variables, Typography, and Section Styling
*/

:root {
    /* Brand Colors */
    --ortus-forest: #12372A;
    --ortus-green: #1F6B45;
    --ortus-fresh: #5B9E68;
    --ortus-offwhite: #F7F7F2;
    --ortus-white: #FFFFFF;
    --ortus-charcoal: #171717;
    --ortus-lightgrey: #ECEEE9;
    --ortus-accent: #f8ad2a;
    --ortus-red: #e74c3c;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 6rem;
    
    /* Typography */
    --font-main: 'Manrope', sans-serif;
    
    /* Effects */
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Layout */
    --container-width: 1320px;
    --header-height: 90px;
    --header-scroll-height: 70px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 100px;
}

/* ============================================
   Base Styles
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--ortus-charcoal);
    background-color: var(--ortus-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    position: relative;
    padding: var(--space-xxl) 0;
}

.section-offwhite {
    background-color: var(--ortus-offwhite);
}

.section-forest {
    background-color: var(--ortus-forest);
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-heading {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: var(--ortus-forest);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ortus-green);
    margin-bottom: 1rem;
}

.label-fresh { color: var(--ortus-fresh); }
.label-red { color: var(--ortus-red); }

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--ortus-charcoal);
}

.text-white { color: var(--ortus-white) !important; }
.text-center { text-align: center; }
.opacity-80 { opacity: 0.8; }

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
    gap: 0.75rem;
}

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

.btn-primary:hover {
    background-color: var(--ortus-forest);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(31, 107, 69, 0.2);
}

.btn-outline {
    border: 2px solid var(--ortus-white);
    color: var(--ortus-white);
}

.btn-outline:hover {
    background-color: var(--ortus-white);
    color: var(--ortus-forest);
}

.btn-outline-dark {
    border: 2px solid var(--ortus-forest);
    color: var(--ortus-forest);
}

.btn-outline-dark:hover {
    background-color: var(--ortus-forest);
    color: var(--ortus-white);
}

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

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

.btn-text {
    font-weight: 700;
    color: var(--ortus-green);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-text:hover {
    gap: 0.75rem;
}

/* ============================================
   Header
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

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

.header.scrolled {
    height: var(--header-scroll-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1001;
}

.logo-img {
    height: 42px;
    width: auto;
    border-radius: var(--radius-sm);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--ortus-forest);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--ortus-forest);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.header:not(.scrolled) .nav-link,
.header:not(.scrolled) .logo-text,
.header:not(.scrolled) .action-btn {
    color: var(--ortus-white);
}

.header:not(.scrolled) .logo-text { color: var(--ortus-white); }

.nav-link i {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.action-btn {
    font-size: 1.25rem;
    color: var(--ortus-forest);
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: var(--ortus-accent);
    color: var(--ortus-forest);
    font-size: 0.65rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mega Menu */
.has-megamenu {
    position: static;
}

.megamenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--ortus-white);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 3rem 0;
    border-top: 1px solid var(--ortus-lightgrey);
}

.nav-item:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

.megamenu-col h3 {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ortus-green);
    margin-bottom: 1.5rem;
}

.megamenu-col ul li {
    margin-bottom: 0.75rem;
}

.megamenu-col ul li a {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--ortus-charcoal);
}

.megamenu-col ul li a:hover {
    color: var(--ortus-green);
    padding-left: 0.5rem;
}

.featured-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16/9;
}

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

.featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1.5rem;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--ortus-white);
}

.featured-content h4 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.featured-content p { font-size: 0.9rem; margin-bottom: 1rem; opacity: 0.9; }
.featured-content .btn-text { color: var(--ortus-white); }

/* ============================================
   Hero Section
   ============================================ */

.hero {
    height: 100vh;
    min-height: 700px;
    background-color: var(--ortus-forest);
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 0.6;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
}

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

.hero-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--ortus-accent);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    color: var(--ortus-white);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero-text {
    font-size: 1.25rem;
    color: var(--ortus-white);
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--ortus-white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 10;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--ortus-white);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--ortus-white);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* ============================================
   Stats Strip
   ============================================ */

.stats-strip {
    background-color: var(--ortus-white);
    padding: 3rem 0;
    box-shadow: var(--shadow-sm);
    z-index: 20;
    position: relative;
    margin-top: -50px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--ortus-green);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ortus-charcoal);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

/* ============================================
   About Section
   ============================================ */

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0 3rem;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
}

.feat-item i {
    color: var(--ortus-green);
    font-size: 1.2rem;
}

.about-image {
    position: relative;
}

.img-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.main-img {
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-lg);
}

.main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stat-card {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    background-color: var(--ortus-white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 220px;
}

.stat-card-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ortus-green);
    margin-bottom: 0.5rem;
}

.stat-card-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ortus-charcoal);
}

/* ============================================
   Category Cards
   ============================================ */

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

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    color: var(--ortus-white);
}

.category-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.category-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-card .btn-text {
    color: var(--ortus-white);
}

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

/* ============================================
   Brand Cards
   ============================================ */

.brands-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.brand-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--ortus-offwhite);
    transition: var(--transition);
}

.brand-card.featured {
    grid-row: span 2;
}

.brand-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.brand-card-content {
    position: absolute;
    inset: 0;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(transparent, rgba(18, 55, 42, 0.9));
    color: var(--ortus-white);
}

.brand-card.featured h3 { font-size: 2.5rem; }
.brand-card:not(.featured) h3 { font-size: 1.5rem; }

.brand-card p { margin-bottom: 1.5rem; opacity: 0.8; }

.brand-card:hover .brand-card-img {
    transform: scale(1.05);
}

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

/* ============================================
   Product Showcase
   ============================================ */

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

.category-tabs {
    display: flex;
    gap: 1rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--ortus-forest);
    background-color: var(--ortus-white);
    border: 1px solid var(--ortus-lightgrey);
}

.tab-btn.active {
    background-color: var(--ortus-green);
    color: var(--ortus-white);
    border-color: var(--ortus-green);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    background-color: var(--ortus-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.product-img-wrapper {
    aspect-ratio: 1;
    padding: 2rem;
    background-color: #fcfcfc;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.action-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--ortus-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    color: var(--ortus-forest);
}

.action-icon:hover {
    background-color: var(--ortus-green);
    color: var(--ortus-white);
}

.product-card:hover .product-actions {
    bottom: 0;
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-body {
    padding: 1.5rem;
}

.product-brand {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--ortus-green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    height: 2.8rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--ortus-forest);
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    font-weight: 500;
}

.sale-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--ortus-red);
    color: var(--ortus-white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 800;
}

/* ============================================
   Why Ortus
   ============================================ */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.why-card {
    text-align: center;
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: var(--ortus-offwhite);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--ortus-green);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background-color: var(--ortus-green);
    color: var(--ortus-white);
    transform: rotateY(360deg);
}

.why-card h3 {
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.why-card p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ============================================
   Distribution
   ============================================ */

.distribution-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.dist-stats {
    display: flex;
    gap: 3rem;
    margin: 2.5rem 0 3.5rem;
}

.dist-stat-item .num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ortus-accent);
}

.dist-stat-item .label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ortus-white);
    text-transform: uppercase;
    opacity: 0.7;
}

.dist-map {
    position: relative;
}

.map-img {
    filter: invert(1) brightness(0.8);
    opacity: 0.3;
}

.map-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--ortus-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(248, 173, 42, 0.2);
}

.map-dot::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid var(--ortus-accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.dot-1 { top: 35%; left: 30%; }
.dot-2 { top: 60%; left: 45%; }
.dot-3 { top: 20%; left: 50%; }
.dot-4 { top: 75%; left: 35%; }

/* ============================================
   Quality Section
   ============================================ */

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.quality-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.quality-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.q-card {
    background-color: var(--ortus-offwhite);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.q-card i {
    font-size: 2rem;
    color: var(--ortus-green);
    margin-bottom: 1rem;
    display: block;
}

.q-card h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.q-card:hover {
    background-color: var(--ortus-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

/* ============================================
   Sustainability
   ============================================ */

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

.sustain-card {
    background-color: var(--ortus-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.s-card-img {
    height: 250px;
}

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

.s-card-body {
    padding: 2.5rem;
}

.s-card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--ortus-forest);
}

.s-card-body p {
    font-size: 0.95rem;
    opacity: 0.7;
}

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

/* ============================================
   News Cards
   ============================================ */

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.news-card {
    transition: var(--transition);
}

.news-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16/10;
    margin-bottom: 1.5rem;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-date {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--ortus-green);
    margin-bottom: 0.75rem;
    display: block;
}

.news-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-card p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.news-card:hover .news-img img {
    transform: scale(1.1);
}

/* ============================================
   Careers Section
   ============================================ */

.section-careers {
    background: linear-gradient(rgba(18, 55, 42, 0.7), rgba(18, 55, 42, 0.7)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1600&q=80');
    background-size: cover;
    background-position: center;
    padding: 10rem 0;
    text-align: center;
}

.careers-content {
    max-width: 700px;
    margin: 0 auto;
}

.careers-content .section-heading {
    font-size: clamp(3rem, 6vw, 4.5rem);
}

.careers-content p {
    font-size: 1.25rem;
    margin-bottom: 3.5rem;
}

/* ============================================
   CTA Section
   ============================================ */

.section-cta {
    padding: 8rem 0;
}

.cta-inner {
    background-color: var(--ortus-offwhite);
    padding: 5rem;
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.cta-text {
    max-width: 600px;
}

.cta-btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 300px;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background-color: var(--ortus-forest);
    color: var(--ortus-white);
    padding: 6rem 0 3rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand .logo-text { color: var(--ortus-white); }

.footer-desc {
    opacity: 0.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1.25rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.social-links a:hover {
    background-color: var(--ortus-green);
    transform: translateY(-5px);
}

.footer-col h4 {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    color: var(--ortus-accent);
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    opacity: 0.7;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--ortus-fresh);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

/* ============================================
   Search Overlay
   ============================================ */

.search-overlay {
    position: fixed;
    inset: 0;
    background-color: var(--ortus-forest);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-close {
    position: absolute;
    top: 3rem;
    right: 3rem;
    font-size: 2.5rem;
    color: var(--ortus-white);
}

.search-box {
    width: 100%;
    max-width: 900px;
}

.search-box input {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 0;
    font-size: 3rem;
    font-weight: 700;
    color: var(--ortus-white);
    outline: none;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.search-results {
    margin-top: 3rem;
    max-height: 50vh;
    overflow-y: auto;
}

/* ============================================
   Preloader
   ============================================ */

.preloader {
    position: fixed;
    inset: 0;
    background-color: var(--ortus-white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    height: 60px;
    margin-bottom: 2rem;
    animation: pulse-preloader 1.5s infinite;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background-color: var(--ortus-lightgrey);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.preloader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--ortus-green);
    animation: loading-bar 1.5s infinite;
}

@keyframes pulse-preloader {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes loading-bar {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1200px) {
    .hero-title { font-size: 4.5rem; }
    .about-grid, .distribution-grid, .quality-grid { gap: 3rem; }
}

@media (max-width: 1024px) {
    .nav-desktop { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: block; }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .brands-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    section { padding: 4rem 0; }
    .hero-title { font-size: 3.5rem; }
    .about-grid, .distribution-grid, .quality-grid { grid-template-columns: 1fr; }
    .about-image { order: -1; }
    
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid, .sustain-grid { grid-template-columns: 1fr; }
    
    .cta-inner { flex-direction: column; padding: 3rem; text-align: center; }
    .cta-btns { width: 100%; }
    
    .flex-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .category-tabs { overflow-x: auto; width: 100%; padding-bottom: 0.5rem; }
    
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.8rem; }
    .hero-btns { flex-direction: column; }
    .stats-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ============================================
   Animations (Reveals)
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.4s; }
.reveal-delay-3 { transition-delay: 0.6s; }

/* Hamburger Button */
.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    display: none;
}

.hamburger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--ortus-forest);
    left: 0;
    transition: 0.3s;
}

.header:not(.scrolled) .hamburger span { background-color: var(--ortus-white); }

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

.hamburger.active span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--ortus-forest);
    z-index: 999;
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    padding: 0 3rem;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-link {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ortus-white);
}

.contact-highlight { color: var(--ortus-accent); }

.mobile-social {
    margin-top: 3rem;
    display: flex;
    gap: 2rem;
    font-size: 1.5rem;
    color: var(--ortus-white);
}
