/*
Theme Name: Nabi Cosmética Coreana
Theme URI: https://nabicosmetica.com
Author: Nabi Team
Author URI: https://nabicosmetica.com
Description: Tema profesional para Nabi Cosmética Coreana - K-Beauty en Vigo. Optimizado para SEO y accesibilidad, con diseño elegante y responsive.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nabi-theme
Tags: responsive, accessibility-ready, custom-logo, custom-menu, featured-images, translation-ready

Nabi Cosmética Coreana - Tu tienda de K-Beauty en Vigo
*/

/* ========================================
   VARIABLES CSS
======================================== */
:root {
    --pink-primary: #E84C8A;
    --pink-light: #FFE4EF;
    --pink-lighter: #FFF5F9;
    --black: #1a1a1a;
    --gray-dark: #4a4a4a;
    --gray: #888888;
    --gray-light: #e8e8e8;
    --white: #ffffff;
    --cream: #fdfbf9;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* ========================================
   RESET Y BASE
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--black);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

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

/* ========================================
   ACCESIBILIDAD
======================================== */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--pink-primary);
    color: var(--white);
    padding: 12px 24px;
    z-index: 10000;
    font-weight: 500;
}

.skip-link:focus {
    top: 0;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* ========================================
   HEADER
======================================== */
.header {
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img,
.custom-logo {
    height: 50px;
    width: auto;
}

.site-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin: 0;
}

.site-title a {
    color: var(--black);
}

.site-title a:hover {
    color: var(--pink-primary);
}

/* ========================================
   NAVEGACIÓN
======================================== */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--black);
    margin: 6px 0;
    transition: all 0.3s ease;
}

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

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

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

.main-nav ul,
.main-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.main-nav a,
.main-menu a {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--black);
    position: relative;
    padding: 5px 0;
}

.main-nav a::after,
.main-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pink-primary);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after,
.main-menu a:hover::after,
.main-menu .current-menu-item > a::after {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active,
.main-menu a:hover,
.main-menu .current-menu-item > a {
    color: var(--pink-primary);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--pink-lighter) 0%, var(--white) 50%, var(--cream) 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(232, 76, 138, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: var(--pink-primary);
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(232, 76, 138, 0.15);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 25px;
}

.hero h1 em {
    font-style: italic;
    color: var(--pink-primary);
}

.hero p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 35px;
    max-width: 480px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.hero-float-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--white);
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-float-card .icon {
    width: 50px;
    height: 50px;
    background: var(--pink-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.hero-float-card .text h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.hero-float-card .text p {
    font-size: 12px;
    color: var(--gray);
    margin: 0;
}

/* ========================================
   BOTONES
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: #d43d7a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 76, 138, 0.35);
}

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

.btn-secondary:hover {
    background: var(--black);
    color: var(--white);
}

/* ========================================
   SECCIONES COMUNES
======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--pink-primary);
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    color: var(--black);
}

/* ========================================
   PAGE HEADER
======================================== */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--pink-lighter) 0%, var(--white) 100%);
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--black);
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 13px;
}

.breadcrumb a {
    color: var(--gray);
}

.breadcrumb a:hover {
    color: var(--pink-primary);
}

.breadcrumb span {
    color: var(--pink-primary);
}

/* ========================================
   FEATURES
======================================== */
.features {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--cream);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(232, 76, 138, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--pink-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--black);
}

.feature-card p {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.7;
}

/* ========================================
   PRODUCTOS
======================================== */
.products {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--pink-lighter) 0%, var(--white) 100%);
}

.products-page {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--pink-primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.product-content p {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--pink-primary);
}

/* ========================================
   CATEGORÍAS (PÁGINA PRODUCTOS)
======================================== */
.categories {
    padding: 80px 0;
    background: var(--cream);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-card:hover,
.category-card.active {
    border-color: var(--pink-primary);
    transform: translateY(-5px);
}

.category-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--black);
}

/* ========================================
   INGREDIENTES
======================================== */
.ingredients {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
}

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

.ingredient-item {
    padding: 30px;
}

.ingredient-icon {
    width: 100px;
    height: 100px;
    background: rgba(232, 76, 138, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 50px;
}

.ingredient-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.ingredient-item p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.7;
}

/* ========================================
   CTA PRODUCTOS
======================================== */
.cta-products {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--pink-lighter) 0%, var(--white) 100%);
    text-align: center;
}

.cta-products h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-products p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   GALERÍA
======================================== */
.gallery {
    padding: 100px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
}

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(232, 76, 138, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
}

/* ========================================
   STORE GALLERY (CONTACTO)
======================================== */
.store-gallery {
    padding: 80px 0;
    background: var(--cream);
}

.contact-gallery {
    grid-template-columns: repeat(3, 1fr);
}

.contact-gallery .gallery-item {
    aspect-ratio: 4/3;
}

.contact-gallery .gallery-item:first-child {
    grid-column: span 1;
    grid-row: span 1;
}

/* ========================================
   CTA
======================================== */
.cta {
    padding: 100px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--pink-primary), #f06292);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-text {
    color: var(--white);
}

.cta-text h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
}

.cta-info-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.cta-info-item span {
    font-size: 15px;
}

/* ========================================
   INSTAGRAM
======================================== */
.instagram {
    padding: 80px 0;
    background: var(--cream);
    text-align: center;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
    color: var(--white);
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(225, 48, 108, 0.4);
}

.instagram-link svg {
    width: 28px;
    height: 28px;
}

/* ========================================
   ABOUT (NOSOTROS)
======================================== */
.about-content {
    padding: 100px 0;
}

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

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--black);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray-dark);
    line-height: 1.9;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: var(--pink-light);
    border-radius: 20px;
    z-index: -1;
}

/* ========================================
   VALUES (NOSOTROS)
======================================== */
.values {
    padding: 100px 0;
    background: var(--cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(232, 76, 138, 0.15);
}

.value-icon {
    font-size: 50px;
    margin-bottom: 25px;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--gray-dark);
    line-height: 1.7;
}

/* ========================================
   STORY (NOSOTROS)
======================================== */
.story {
    padding: 100px 0;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.story-year {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--pink-primary);
    font-weight: 600;
    min-width: 120px;
}

.story-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.story-text p {
    color: var(--gray-dark);
    line-height: 1.8;
}

/* ========================================
   TEAM (NOSOTROS)
======================================== */
.team {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--pink-lighter) 100%);
}

.team-image {
    max-width: 800px;
    margin: 0 auto;
}

.team-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

/* ========================================
   CONTACT (CONTACTO)
======================================== */
.contact {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--pink-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-text h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--black);
}

.contact-text p {
    color: var(--gray-dark);
    line-height: 1.6;
}

.contact-text a {
    color: var(--pink-primary);
    font-weight: 500;
}

.contact-text a:hover {
    text-decoration: underline;
}

/* ========================================
   SOCIAL SECTION (CONTACTO)
======================================== */
.social-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-light);
}

.social-section h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.4);
}

.social-links svg {
    width: 24px;
    height: 24px;
}

/* ========================================
   MAP (CONTACTO)
======================================== */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    height: 100%;
    min-height: 500px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
}

/* ========================================
   LEGAL PAGES
======================================== */
.legal-content {
    padding: 80px 0;
}

.legal-content .container {
    max-width: 800px;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--black);
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--black);
}

.legal-content p {
    margin-bottom: 15px;
    color: var(--gray-dark);
    line-height: 1.8;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
    color: var(--gray-dark);
}

.legal-content li {
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--pink-primary);
}

.last-update {
    background: var(--cream);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--gray);
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--black);
    color: var(--white);
    padding-top: 80px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
    height: 60px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--pink-primary);
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links,
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li,
.footer-menu li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-menu a {
    font-size: 14px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-menu a:hover {
    opacity: 1;
    color: var(--pink-primary);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.footer-kit {
    padding: 40px 0;
    display: flex;
    justify-content: center;
    background: rgba(255,255,255,0.02);
}

.footer-kit img {
    width: 70%;
    max-width: 900px;
    opacity: 0.9;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.6;
}

.footer-legal {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-legal a {
    font-size: 13px;
    opacity: 0.6;
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--pink-primary);
}

/* ========================================
   WORDPRESS SPECIFIC
======================================== */
.wp-block-image img {
    border-radius: 15px;
}

.aligncenter {
    text-align: center;
    margin: 0 auto;
}

.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

.entry-content {
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 1.5em;
}

.entry-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin: 2em 0 1em;
}

.entry-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 1.5em 0 0.75em;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:first-child {
        grid-column: span 1;
        grid-row: span 1;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .map-container {
        min-height: 400px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--white);
        padding: 100px 40px 40px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul,
    .main-menu {
        flex-direction: column;
        gap: 0;
    }

    .main-nav li,
    .main-menu li {
        border-bottom: 1px solid var(--gray-light);
    }

    .main-nav a,
    .main-menu a {
        display: block;
        padding: 20px 0;
        font-size: 15px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-float-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

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

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

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

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

    .story-item {
        flex-direction: column;
        gap: 15px;
    }

    .story-year {
        min-width: auto;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-gallery {
        grid-template-columns: 1fr;
    }

    .cta::before {
        display: none;
    }

    .cta {
        background: linear-gradient(135deg, var(--black) 0%, var(--pink-primary) 100%);
    }

    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-text h2 {
        font-size: 2.2rem;
    }

    .cta-info {
        align-items: center;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand img {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 14px 24px;
        font-size: 12px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}
