@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Kumbh+Sans:wght@300;400;600;700;800&display=swap');

:root {
    /* Brand Primary Colors */
    --gv-red: #00B5D0;
    --gv-orange: #FAB400;
    --gv-red-dark: #00B5D0;
    --gv-orange-light: #FB6728;

    /* Nutrition Palette (Secondary) */
    --gv-oat-purity: #FFFFFF;
    --gv-vital-green: #A5D733;
    --gv-mindful-purple: #FB6728;
    --gv-zen-blue: #00B5D0;
    --gv-steady-brown: #FAB400;
    --gv-radiant-pink: #A5D733;

    /* Neutrals */
    --gv-dark: #033546;
    --gv-grey: #033546;
    --gv-light-grey: #FFFFFF;
    --gv-white: #FFFFFF;

    /* Borders */
    --br-main: 4px;

    /* Typography */
    --ff-sans: 'Outfit', sans-serif;
    --ff-serif: 'Kumbh Sans', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2.5rem;
    --space-lg: 5rem;
    --space-xl: 10rem;

    /* Transitions */
    --ts-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --ts-slow: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    --ts-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Shadows (Base: #033546) */
    --sh-prime: 0 10px 30px -10px rgba(3, 53, 70, 0.1);
    --sh-hover: 0 20px 40px -15px rgba(0, 181, 208, 0.25);
    --sh-glass: 0 8px 32px 0 rgba(3, 53, 70, 0.07);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-sans);
    background-color: var(--gv-white);
    color: var(--gv-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
.serif {
    font-family: var(--ff-serif);
    line-height: 1.2;
}

a {
    transition: var(--ts-normal);
    text-decoration: none;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-red {
    color: var(--gv-red);
}

/* Graphical Background Elements */
.bg-blob {
    position: absolute;
    z-index: -1;
    filter: blur(80px);
    opacity: 0.15;
    border-radius: 50%;
}

/* Header & Glassmorphism */
.global-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 181, 208, 0.95);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    backdrop-filter: blur(15px) saturate(180%);
    z-index: 1000;
    height: 90px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--ts-normal);
}

/* Page Header Styles */
.page-header {
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--gv-dark);
    color: var(--gv-white);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1490645935967-10de6ba17061?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Specific Header Backgrounds */
.header-products::before {
    background-image: var(--gv-products-header-bg, url('../img/hero_productos.jpg'));
}

.header-recipes::before {
    background-image: var(--gv-recipes-header-bg, url('../img/header-recetas.jpg'));
}

.header-about::before {
    background-image: var(--gv-about-hero-bg, url('../img/home_banner_history.jpg'));
}

.header-contact::before {
    background-image: url('https://images.unsplash.com/photo-1528747045399-3f0402911f1a?auto=format&fit=crop&q=80&w=1920');
}

.global-header.scrolled {
    height: 70px;
    background: var(--gv-red);
    box-shadow: 0 10px 30px rgba(3, 53, 70, 0.15);
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: 52px;
    transition: var(--ts-normal);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
}

.global-header.scrolled .logo img {
    height: 45px;
}



.main-nav ul {
    display: flex;
    gap: 1rem;
    align-items: center;
    list-style: none;
}

.main-nav {
    margin-left: auto;
}

.main-nav a:not(.btn) {
    color: var(--gv-white);
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
    padding: 0.8rem 1.2rem;
    border-radius: var(--br-main);
    transition: var(--ts-normal);
}

.main-nav a:not(.btn):hover {
    background: var(--gv-orange-light);
}

.main-nav a:not(.btn)::after {
    display: none;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gv-white);
}

/* Modern Animated Buttons */
.btn {
    padding: 1.1rem 2.8rem;
    border-radius: var(--br-main);
    font-weight: 700;
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.02em;
    box-shadow: var(--sh-prime);
    transition: var(--ts-bounce);
}

.btn-primary {
    background: var(--gv-orange);
    color: var(--gv-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gv-white);
    opacity: 0;
    transition: var(--ts-normal);
    z-index: -1;
}

.btn-primary:hover {
    color: var(--gv-dark);
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--sh-hover);
}

.btn-primary:hover::before {
    opacity: 1;
}

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

.btn-outline:hover {
    background: var(--gv-red);
    color: var(--gv-white);
    border-color: var(--gv-red);
    transform: translateY(-5px);
}

.btn-accent {
    background: var(--gv-white);
    color: var(--gv-dark);
    border: 2px solid var(--gv-orange);
}

.btn-accent:hover {
    background: var(--gv-red);
    color: var(--gv-white);
    border-color: var(--gv-red);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px -10px rgba(0, 181, 208, 0.3);
}

/* Modern Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: var(--gv-dark);
    /* Dark base for better loading */
    position: relative;
    overflow: hidden;
    color: var(--gv-white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--gv-hero-bg, url('../img/header_home.jpg'));
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(250, 180, 0, 0.28) 0%, rgba(250, 180, 0, 0) 70%);
    z-index: 0;
    border-radius: 100px;
    transform: rotate(-15deg);
}

.hero-content {
    max-width: 850px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 5.5rem);
    max-width: 700px;
    margin-bottom: 2rem;
    color: var(--gv-oat-purity);
}

.hero-title-int {
    font-size: clamp(3rem, 10vw, 5.5rem);
    margin-bottom: 2rem;
    color: var(--gv-dark);
}

.hero-subtitle {
    font-size: 1.875rem;
    font-weight: 300;
    color: var(--gv-oat-purity);
    margin-bottom: 3.5rem;
    max-width: 850px;
}

/* Graphical Value Props */
.props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.prop-item {
    background-color: var(--gv-white);
    background-image: linear-gradient(rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.68)), var(--gv-prop-bg, none);
    background-position: center;
    background-size: cover;
    padding: 4rem 3rem;
    border-radius: 40px;
    box-shadow: var(--sh-prime);
    transition: var(--ts-slow);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.prop-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.1);
}

.prop-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    display: block;
    background: var(--gv-oat-purity);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    margin: 0 auto 2rem;
}

/* Modern Categories (Graphical Cards) */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
}

.cat-card {
    border-radius: var(--br-main);
    padding: 3rem;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: var(--ts-bounce);
    position: relative;
    overflow: hidden;
}

.cat-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--gv-white);
}

.cat-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cat-card .cat-link {
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 0.8rem 2rem;
    border-radius: var(--br-main);
    text-decoration: none;
    font-weight: 700;
    color: var(--gv-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--ts-bounce);
}

.cat-card .cat-link:hover {
    background: var(--gv-white);
    color: var(--gv-dark);
    border-color: var(--gv-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(3, 53, 70, 0.2);
}

/* 2-column benefit grid variant */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

@media (max-width: 768px) {
    .benefit-grid {
        grid-template-columns: 1fr;
    }
}

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

/* Category Backgrounds */
.bg-green {
    background: var(--gv-vital-green);
}

.bg-purple {
    background: var(--gv-orange-light);
}

.bg-blue {
    background: var(--gv-red);
}

.bg-brown {
    background: var(--gv-orange);
}

.cat-card::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--ts-bounce);
}

.cat-card:hover::before {
    transform: scale(8);
    opacity: 0.2;
}

.product-card {
    background: var(--gv-white);
    padding: 3rem;
    border-radius: var(--br-main);
    box-shadow: var(--sh-prime);
    text-align: center;
    transition: var(--ts-bounce);
    border: 1px solid var(--gv-orange);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 240px;
    height: 240px;
    object-fit: contain;
    margin-bottom: 2rem;
    transition: var(--ts-bounce);
}

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

.product-card h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.product-card p {
    color: var(--gv-grey);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

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

.recipe-card {
    background: var(--gv-white);
    border-radius: var(--br-main);
    overflow: hidden;
    box-shadow: var(--sh-prime);
    transition: var(--ts-slow);
    border: 1px solid rgba(3, 53, 70, 0.02);
}

.recipe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -15px rgba(3, 53, 70, 0.1);
}

.recipe-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--ts-slow);
}

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

.recipe-card-content {
    padding: 2.5rem;
}

.recipe-card .recipe-badge {
    display: block;
    width: 100%;
    background: #FCC200;
    color: var(--gv-white);
    padding: 0.85rem 1.25rem;
    border-radius: var(--br-main);
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem;
}

.recipe-card h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.recipe-card p {
    color: var(--gv-grey);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.recipe-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--gv-light-grey);
    padding-top: 1.5rem;
}

.recipe-time {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gv-grey);
}

.recipe-link {
    color: var(--gv-red);
    font-weight: 800;
    font-size: 0.9rem;
}

.retailer-item {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--gv-light-grey);
    transition: var(--ts-normal);
}

.retailer-item:hover {
    transform: translateX(10px);
}

.retailer-item.is-active {
    border-left: 3px solid var(--gv-orange);
    padding-left: 1rem;
}

.retailer-item h4 {
    color: var(--gv-red);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.retailer-item p {
    font-size: 1.25rem;
    color: var(--gv-grey);
    margin-bottom: 1rem;
}

.retailer-item a {
    color: var(--gv-orange);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.retailer-item a.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

.map-container {
    background: var(--gv-white);
    border-radius: var(--br-main);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    box-shadow: var(--sh-prime);
    border: 1px solid rgba(3, 53, 70, 0.05);
    position: relative;
    overflow: hidden;
}

.locator-map-frame {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: 0;
    border-radius: 0;
    display: none;
    position: absolute;
    inset: 0;
}

.map-container.has-map .map-placeholder-text {
    display: none;
}

.map-container.has-map .locator-map-frame {
    display: block;
}

.online-logo-grid {
    display: flex;
    justify-content: center;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}

.online-logo-grid img {
    height: 40px;
    opacity: 0.6;
    filter: grayscale(1);
    transition: var(--ts-normal);
}

.online-logo-grid img:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* Form Styles */
.contact-form {
    background: var(--gv-oat-purity);
    padding: 5rem;
    border-radius: var(--br-main);
    box-shadow: var(--sh-prime);
    border: 1px solid rgba(3, 53, 70, 0.03);
}

.form-group {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 0;
}

.contact-form label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gv-black);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border-radius: var(--br-main);
    border: 2px solid rgba(3, 53, 70, 0.05);
    background: var(--gv-white);
    font-family: inherit;
    font-size: 1.25rem;
    transition: var(--ts-normal);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gv-red);
    box-shadow: 0 0 0 4px rgba(227, 24, 55, 0.1);
}

/* WPForms skin to match template forms */
.wpforms-container.contact-form .wpforms-form {
    background: var(--gv-oat-purity);
    padding: 5rem;
    border-radius: var(--br-main);
    box-shadow: var(--sh-prime);
    border: 1px solid rgba(3, 53, 70, 0.03);
}

.wpforms-container.contact-form .wpforms-field {
    padding: 0;
}

.wpforms-container.contact-form .wpforms-field-label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gv-black);
}

.wpforms-container.contact-form input,
.wpforms-container.contact-form select,
.wpforms-container.contact-form textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border-radius: var(--br-main);
    border: 2px solid rgba(3, 53, 70, 0.05);
    background: var(--gv-white);
    font-family: inherit;
    font-size: 1.25rem;
    transition: var(--ts-normal);
}

.wpforms-container.contact-form input:focus,
.wpforms-container.contact-form select:focus,
.wpforms-container.contact-form textarea:focus {
    outline: none;
    border-color: var(--gv-red);
    box-shadow: 0 0 0 4px rgba(227, 24, 55, 0.1);
}

.wpforms-container.contact-form .wpforms-submit-container {
    padding-top: 0.5rem;
}

.wpforms-container.contact-form button.wpforms-submit {
    width: 100%;
    padding: 1.1rem 2.8rem;
    border-radius: var(--br-main);
    font-weight: 700;
    font-size: 1.25rem;
    border: none;
    cursor: pointer;
    background: var(--gv-orange);
    color: var(--gv-dark);
    box-shadow: var(--sh-prime);
}

.quick-contact-grid {
    display: flex;
    justify-content: center;
    gap: 8rem;
    flex-wrap: wrap;
}

.quick-item h4 {
    color: var(--gv-red);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.quick-item p {
    font-size: 1.6rem;
    font-weight: 600;
}

/* FAQ Styles */
.faq-item {
    background: var(--gv-white);
    padding: 2.5rem;
    border-radius: var(--br-main);
    margin-bottom: 2rem;
    box-shadow: var(--sh-prime);
    border: 1px solid rgba(3, 53, 70, 0.02);
    transition: var(--ts-normal);
}

.faq-item h3 {
    font-size: 1.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item h3::after {
    content: '+';
    font-size: 1.8rem;
    color: var(--gv-red);
    transition: var(--ts-normal);
}

.faq-item.active h3::after {
    transform: rotate(45deg);
}

.faq-item p {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gv-light-grey);
    color: var(--gv-grey);
    line-height: 1.8;
}

.featured-recipes {
    position: relative;
    padding: var(--space-lg) 0;
    background: var(--gv-dark);
    color: var(--gv-white);
    overflow: hidden;
}

.featured-recipes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/header-recetas.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.featured-recipes .container {
    position: relative;
    z-index: 1;
}

/* Typography Helpers */
.text-orange {
    color: var(--gv-orange);
}

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

/* Section Styling */
section {
    padding: var(--space-xl) 0;
}

.page-header {
    background: var(--gv-oat-purity);
    padding: 12rem 0 8rem;
    text-align: center;
    /*border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;*/
}

.page-header h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
}

.section-title {
    margin-bottom: var(--space-lg);
    text-align: center;
}

.section-title h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--gv-orange);
    max-width: 700px;
    margin: 0 auto;
}

.featured-recipes .section-title p,
.featured-recipes .recipes-preview p {
    font-size: 1.25rem;
}

.categories-benefits .section-title p {
    font-size: 1.875rem;
}

.value-props {
    padding: 7rem 0 4.5rem;
}

.categories-benefits {
    padding: 4.5rem 0 6rem;
}

.categories-benefits .section-title {
    margin-bottom: 4rem;
}

.brand-leadership {
    padding: 7rem 0;
}

.featured-recipes {
    padding: 7rem 0;
}

/* Footer Overhaul */
.global-footer {
    background: var(--gv-dark);
    padding: var(--space-xl) 0 4rem;
    color: var(--gv-white);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.global-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/black-linen.png');
    /* Subtle texture */
    opacity: 0.1;
    z-index: -1;
}

.global-footer::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 181, 208, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

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

.footer-brand h3 {
    font-size: 2.5rem;
    color: var(--gv-white);
    margin-bottom: 1rem;
}

.footer-brand-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1.5rem;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 400px;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--br-main);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.6rem;
    transition: var(--ts-bounce);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--gv-red);
    color: var(--gv-white);
    border-color: transparent;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 181, 208, 0.4);
}

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

.footer-col h4 {
    color: var(--gv-orange);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    transition: var(--ts-normal);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-col a i {
    font-size: 0.9rem;
    opacity: 0.5;
    transition: var(--ts-normal);
}

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='%23CA6539' d='M7 9 0 0h14z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 14px 9px;
    padding-right: 3rem;
}

.contact-form select::-ms-expand {
    display: none;
}

.footer-col a:hover {
    color: var(--gv-white);
    transform: translateX(8px);
}

.footer-col a:hover i {
    opacity: 1;
    color: var(--gv-red);
}

.footer-menu li + li {
    margin-top: 0.7rem;
}

.footer-menu a {
    position: relative;
    padding-left: 22px;
}

.footer-menu a::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0.5;
    transition: var(--ts-normal);
}

.footer-menu a:hover::before {
    opacity: 1;
    color: var(--gv-red);
}

.footer-bottom {
    margin-top: 6rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 1rem;
}

.footer-bottom a:hover {
    color: var(--gv-white);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUp 0.8s forwards;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-actions {
    display: flex;
    justify-content: space-around;
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding-top: 140px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: calc(100% + 1.2rem);
        left: 1rem;
        right: 1rem;
        background: var(--gv-zen-blue);
        border-radius: 14px;
        padding: 1.25rem;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    }

    .main-nav.is-open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
    }

    .main-nav a:not(.btn),
    .main-nav .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .footer-bottom-main {
        display: block;
    }

    .footer-bottom-links {
        display: block;
        margin-top: 0.25rem;
    }

    .footer-bottom-links a:first-child {
        margin-left: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .global-footer {
        border-top-left-radius: 50px;
        border-top-right-radius: 50px;
    }
}

/* =============================================
   PRODUCT DETAIL PAGE STYLES
   ============================================= */

.product-hero {
    padding: 140px 0 32px;
    background: var(--gv-oat-purity);
    display: flex;
    align-items: flex-start;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.product-image-container {
    position: relative;
    z-index: 1;
}

.product-image-container img {
    width: 100%;
    height: auto;
    border-radius: var(--br-main);
    box-shadow: 0 30px 60px rgba(3, 53, 70, 0.1);
    transition: var(--ts-slow);
    display: block;
}

.product-main-image {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: transparent;
}

.product-gallery-thumbs {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.product-gallery-thumb {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    background: transparent;
    overflow: hidden;
    transition: var(--ts-normal);
}

.product-gallery-thumb:hover {
    border-color: var(--gv-orange);
}

.product-gallery-thumb.is-active {
    border-color: var(--gv-orange);
    box-shadow: 0 0 0 2px rgba(250, 180, 0, 0.24);
}

.product-gallery-thumb img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

.product-image-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: var(--gv-oat-purity);
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.1;
}

.product-image-container--purple::before {
    background: var(--gv-orange-light);
    opacity: 0.1;
}

.product-meta .category-tag {
    color: var(--gv-red);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.product-meta h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 0.5rem;
    color: var(--gv-dark);
}

.product-flavor {
    font-family: var(--ff-serif);
    font-size: 1.8rem;
    color: var(--gv-product-accent, var(--gv-orange));
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-claim {
    font-size: 1.875rem;
    line-height: 1.6;
    color: var(--gv-grey);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

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

.feature-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.feature-item i {
    color: var(--gv-red);
}

.product-quick-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.info-block h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--gv-grey);
    margin-bottom: 0.5rem;
}

.info-block p {
    font-weight: 700;
    color: var(--gv-dark);
}

/* Detail Sections */
.section-split {
    padding: var(--space-lg) 0;
}

.product-highlight-section {
    padding-top: 2rem;
}

.highlight-box {
    background: var(--gv-orange);
    color: var(--gv-white);
    padding: 5rem;
    border-radius: var(--br-main);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.highlight-box--red {
    background: var(--gv-red);
}

.highlight-box h2 {
    font-size: 3rem;
    color: var(--gv-white);
}

.highlight-box p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Normative Seals */
.normative-seals {
    padding: 5rem 0;
    background: var(--gv-white);
    border-top: 1px solid var(--gv-light-grey);
}

.seals-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.seal-item {
    text-align: center;
    max-width: 120px;
}

.seal-badge-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    box-sizing: border-box;
    padding: 12px;
    display: block;
    margin: 0 auto 1rem;
}

.seal-placeholder {
    width: 100px;
    height: 100px;
    background: var(--gv-white);
    border-radius: var(--br-main);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gv-dark);
    color: var(--gv-dark);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.seal-whole-grain {
    border-color: var(--gv-orange);
    color: var(--gv-dark);
}

.seal-halal {
    border-color: var(--gv-vital-green);
    color: var(--gv-dark);
}

.seal-kosher {
    border-color: var(--gv-dark);
    color: var(--gv-dark);
}

.seal-nongmo {
    border-color: #FB6728;
    color: var(--gv-dark);
}

/* Logistics Section */
.logistics-section {
    background: var(--gv-oat-purity);
    padding: 80px 0;
}

.logistics-card {
    background: var(--gv-white);
    padding: 4rem;
    border-radius: var(--br-main);
    box-shadow: var(--sh-prime);
}

.logistics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 3rem;
}

.logistics-item h4 {
    color: var(--gv-red);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Product pages responsive */
@media (max-width: 992px) {

    .product-grid,
    .highlight-box,
    .logistics-grid {
        grid-template-columns: 1fr;
    }

    .product-hero {
        padding-top: 100px;
        text-align: center;
    }

    .highlight-box {
        padding: 3rem;
    }

    .product-gallery-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* =============================================
   UTILITY CLASSES (replacing inline styles)
   ============================================= */

/* Spacing utilities */
.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-4rem {
    margin-top: 4rem;
}

.mt-2-5rem {
    margin-top: 2.5rem;
}

.mb-1rem {
    margin-bottom: 1rem;
}

.mb-1-2rem {
    margin-bottom: 1.2rem;
}

.mb-2rem {
    margin-bottom: 2rem;
}

.my-2-5rem {
    margin: 2.5rem 0;
}

/* about.html Specific Styles */
.about-section {
    padding: 100px 0;
}

.about-section--large {
    padding: 120px 0;
}

.about-title-standard {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-title-medium {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-title-large {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.about-title-xl {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.color-dark {
    color: var(--gv-dark);
}

.color-white {
    color: var(--gv-white);
}

.about-text-lead {
    font-size: 1.5rem;
    font-weight: 600;
}

.about-text-standard {
    font-size: 1.15rem;
    line-height: 1.8;
}

.about-text-xl {
    font-size: 1.8rem;
    font-weight: 300;
    opacity: 0.9;
}

.about-tagline-box {
    background: var(--gv-red);
    color: var(--gv-white);
    border-top-left-radius: var(--br-main);
    border-top-right-radius: var(--br-main);
}

.max-900 {
    max-width: 900px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.flex-column-centered {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Width utilities */
.w-full {
    width: 100%;
}

/* Text color utilities */
.text-grey {
    color: var(--gv-grey);
}

.text-oat-purity {
    color: var(--gv-oat-purity);
}

/* =============================================
   PAGE-SPECIFIC COMPONENT STYLES
   ============================================= */

/* --- index.html --- */
.brand-leadership {
    padding: 100px 0;
    background: var(--gv-white);
}

.brand-leadership .container {
    display: block;
    max-width: 1320px;
}

.brand-leadership__certifications {
    width: 100%;
}

.certifications {
    padding: 0;
    background: var(--gv-white);
}

.certifications__title {
    font-size: 2.5rem;
    color: var(--gv-dark);
    text-align: center;
    font-family: var(--ff-serif);
    margin-bottom: 2.5rem;
}

.certifications__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: nowrap;
    width: 100%;
}

.certifications__item {
    background: var(--gv-white);
    padding: 16px;
    border-radius: 8px;
    box-shadow: var(--sh-prime);
    transition: var(--ts-bounce);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(3, 53, 70, 0.05);
}

.certifications__item:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-hover);
    border-color: rgba(0, 181, 208, 0.2);
}

.certifications__item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 1200px) {
    .certifications__grid {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .certifications {
        padding: 0;
    }

    .certifications__title {
        font-size: 2rem;
    }

    .certifications__item {
        width: 100px;
        height: 100px;
        padding: 10px;
    }

    .certifications__grid {
        gap: 16px;
        flex-wrap: wrap;
    }
}

.parallax-showcase {
    width: 1256px;
    max-width: 100%;
    height: 785px;
    background: transparent;
    position: relative;
    overflow: hidden;
    margin: var(--space-md) auto;
    border-radius: var(--br-main);
    box-shadow: var(--sh-prime);
    padding: 0;
}

.parallax-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    will-change: transform;
}

.parallax-layer img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
    transform: scale(1);
}

.layer-mid img,
.layer-front img {
    width: auto;
    object-fit: contain;
}

.layer-bg {
    z-index: 1;
}

.layer-mid {
    z-index: 2;
}

.layer-front {
    z-index: 3;
}

@media (max-width: 768px) {
    .parallax-showcase {
        height: auto;
        aspect-ratio: 16 / 10;
    }
}

/* --- about.html --- */
.history .container,
.about-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-rounded {
    width: 100%;
    border-radius: var(--br-main);
    box-shadow: var(--sh-prime);
}

.about-diversified-title {
    margin-top: 40px;
    color: var(--gv-red);
    font-family: var(--ff-serif);
}

.expansion {
    padding: 100px 0;
}

.expansion .container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-quote-box {
    background: var(--gv-orange);
    padding: 60px;
    border-radius: var(--br-main);
    border-left: 8px solid var(--gv-red);
}

.about-quote-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-quote-text {
    font-size: 1.2rem;
    color: var(--gv-grey);
}

/* --- b2b.html --- */
.b2b-leadership {
    padding: 100px 0;
}

.b2b-leadership .container {
    text-align: center;
    max-width: 900px;
}

.b2b-leadership__title {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.b2b-leadership__text {
    font-size: 1.2rem;
    color: var(--gv-grey);
    line-height: 1.8;
}

.b2b-content .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.b2b-prop-list {
    margin: 2.5rem 0;
    list-style: none;
}

.b2b-prop-list ul,
.b2b-prop-list ol {
    margin: 0;
    padding-left: 1.2rem;
}

.b2b-prop-list li {
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.b2b-form-title {
    margin-bottom: 2rem;
}

/* --- contact.html --- */
.contact-form-section .container {
    max-width: 900px;
}

/* --- faq.html --- */
.faq-accordion .container {
    max-width: 900px;
}

/* --- where-to-buy.html --- */
.locator .container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.retailer-list {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 20px;
}

.map-placeholder-text {
    color: #999;
    text-align: center;
}

/* --- products.html --- */
.filter-pill-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-pill-container .btn-disabled,
.filter-pill-container .btn-disabled:hover {
    background: #e2e2e2;
    border: 2px solid #c6c6c6;
    color: #777;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

.category-filters {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.products-grid-section {
    padding-top: 0;
}

/* --- Logistics item note text --- */
.logistics-note {
    margin-top: 10px;
    color: var(--gv-grey);
}

/* Responsive: about, b2b, brand-leadership, where-to-buy grids */
@media (max-width: 992px) {

    .brand-leadership .container,
    .history .container,
    .about-grid-2col,
    .expansion .container,
    .b2b-content .container,
    .locator .container {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   RECIPE SINGLE PAGE
   ============================================= */

/* --- Hero --- */
.recipe-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    padding: 0 0 5rem;
    background: var(--gv-recipe-hero-bg, url('../img/empanadas-de-avena.jpg')) center center / cover no-repeat;
}

.recipe-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 53, 70, 0.6);
    z-index: 1;
}

.recipe-hero__content {
    position: relative;
    z-index: 2;
    color: var(--gv-white);
    max-width: 850px;
}

.recipe-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    transition: var(--ts-normal);
}

.recipe-hero__back:hover {
    color: var(--gv-white);
    transform: translateX(-5px);
}

.recipe-hero__badges {
    display: flex;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.recipe-hero .recipe-badge {
    background: var(--gv-orange);
    color: var(--gv-white);
    padding: 0.4rem 1.2rem;
    border-radius: var(--br-main);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.recipe-badge--dark {
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.recipe-hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.recipe-hero__tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 650px;
    line-height: 1.6;
}

.recipe-hero__meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.recipe-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: var(--br-main);
    min-width: 140px;
}

.recipe-meta-item i {
    font-size: 1.4rem;
    color: var(--gv-orange);
}

.recipe-meta-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.7;
    letter-spacing: 0.05em;
}

.recipe-meta-value {
    display: block;
    font-weight: 700;
    font-size: 1.25rem;
}

/* --- Content Layout --- */
.recipe-content {
    padding: 5rem 0;
}

.recipe-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 4rem;
    align-items: start;
}

/* --- Ingredients Sidebar --- */
.recipe-ingredients__card {
    background: #A5D733;
    border-radius: var(--br-main);
    padding: 2.5rem;
    box-shadow: var(--sh-prime);
    border: 0;
    position: sticky;
    top: 120px;
}

.recipe-ingredients__card h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: var(--gv-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.recipe-ingredients__card h2 i {
    color: var(--gv-orange-light);
}

.recipe-ingredients__subtitle {
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gv-orange-light);
    margin-bottom: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gv-light-grey);
}

.recipe-ingredients__subtitle:first-of-type {
    border-top: none;
    padding-top: 0;
}

.recipe-ingredients__list {
    list-style: none;
    margin-bottom: 1rem;
}

.recipe-ingredients__list li {
    padding: 0.6rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.65);
    font-size: 1.25rem;
    color: var(--gv-dark);
}

.recipe-ingredients__list li:last-child {
    border-bottom: none;
}

.recipe-wysiwyg ul,
.recipe-wysiwyg ol {
    margin: 0;
    padding-left: 1.2rem;
}

.recipe-wysiwyg li {
    padding: 0.45rem 0;
    color: var(--gv-dark);
    line-height: 1.6;
}

.recipe-qty {
    font-weight: 700;
    color: var(--gv-orange-light);
    margin-right: 6px;
}

.recipe-product-callout {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--gv-white);
    border-radius: var(--br-main);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-left: 4px solid var(--gv-orange-light);
    box-shadow: var(--sh-prime);
}

.recipe-product-callout i {
    color: var(--gv-vital-green);
    font-size: 1.3rem;
    margin-top: 2px;
}

.recipe-product-callout p {
    font-size: 0.9rem;
    color: var(--gv-grey);
    line-height: 1.5;
}

/* --- Steps --- */
.recipe-steps h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--gv-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.recipe-steps h2 i {
    color: var(--gv-red);
}

.recipe-step-group {
    margin-bottom: 3rem;
}

.recipe-step-group__title {
    font-size: 1.2rem;
    color: var(--gv-orange);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--gv-oat-purity);
}

.recipe-step-list {
    list-style: none;
    counter-reset: step-counter;
}

.recipe-step-list li {
    margin-bottom: 1rem;
}

.recipe-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 1.2rem 1.5rem;
    background: var(--gv-white);
    border-radius: var(--br-main);
    border: 1px solid var(--gv-light-grey);
    transition: var(--ts-normal);
}

.recipe-step:hover {
    border-color: var(--gv-orange-light);
    box-shadow: 0 4px 20px rgba(3, 53, 70, 0.04);
    transform: translateX(4px);
}

.recipe-step__number {
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gv-red);
    color: var(--gv-white);
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: var(--br-main);
    flex-shrink: 0;
}

.recipe-step p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--gv-dark);
    padding-top: 5px;
}

/* --- Tips --- */
.recipe-tips {
    margin-top: 2rem;
    padding: 2rem 2.5rem;
    background: var(--gv-mindful-purple);
    border-radius: var(--br-main);
    border-left: 5px solid var(--gv-orange);
}

.recipe-tips h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--gv-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.recipe-tips h3 i {
    color: var(--gv-orange);
}

.recipe-tips ul {
    list-style: none;
}

.recipe-tips ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.25rem;
    color: var(--gv-grey);
    line-height: 1.6;
}

.recipe-tips ul li::before {
    content: '💡';
    position: absolute;
    left: 0;
    top: 0.5rem;
}

/* --- Tags --- */
.recipe-tags-section {
    padding: 4rem 0 5rem;
    text-align: center;
}

.recipe-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.recipe-tag {
    background: var(--gv-white);
    color: var(--gv-grey);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--gv-light-grey);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.recipe-tag i {
    color: var(--gv-orange);
    font-size: 0.8rem;
}

.recipe-cta {
    text-align: center;
}

.recipe-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.recipe-cta p {
    font-size: 1.1rem;
    color: var(--gv-grey);
    margin-bottom: 2rem;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .recipe-layout {
        grid-template-columns: 1fr;
    }

    .recipe-ingredients__card {
        position: static;
    }

    .recipe-hero__meta {
        gap: 1rem;
    }

    .recipe-meta-item {
        min-width: 120px;
        padding: 0.8rem 1rem;
    }
}

@media (max-width: 576px) {
    .recipe-hero {
        min-height: 60vh;
        padding-bottom: 3rem;
    }

    .recipe-hero__meta {
        flex-direction: column;
    }

    .recipe-meta-item {
        min-width: 100%;
    }
}

.hidden {
    display: none;
}
