/* ================================
   NUTRICIÓN BRONCE - STYLES
   ================================ */

/* CSS Variables */
:root {
    --color-primary: #1966A4;
    --color-accent: #D6EC65;
    --color-white: #ffffff;
    --color-black: #0a0a0a;
    --color-gray-100: #f7f7f7;
    --color-gray-200: #e5e5e5;
    --color-gray-300: #d4d4d4;
    --color-gray-400: #a3a3a3;
    --color-gray-500: #737373;
    --color-gray-600: #525252;
    --color-gray-700: #404040;
    --color-gray-800: #262626;
    --color-gray-900: #171717;
    
    --font-body: 'DM Sans', sans-serif;
    --font-heading: 'Bai Jamjuree', 'DM Sans', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* Font Face */
@font-face {
    font-family: 'Bai Jamjuree';
    src: url('assets/fonts/BaiJamjuree-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bai Jamjuree';
    src: url('assets/fonts/BaiJamjuree-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-gray-800);
    background-color: var(--color-white);
    overflow-x: hidden;
    max-width: 100vw;
}

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

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-black);
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(25, 102, 164, 0.1), rgba(214, 236, 101, 0.2));
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.highlight {
    color: var(--color-primary);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--color-accent);
    z-index: -1;
    opacity: 0.6;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: #145285;
    border-color: #145285;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* ================================
   NAVIGATION
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-primary);
    backdrop-filter: blur(20px);
    padding: 16px 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-lg);
    background: var(--color-primary);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    color: var(--color-white);
    font-weight: 500;
    font-size: 0.9375rem;
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition-normal);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta .btn {
    padding: 10px 20px;
    font-size: 0.875rem;
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.nav-cta .btn:hover {
    background: var(--color-gray-100);
    border-color: var(--color-gray-100);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition-normal);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(25, 102, 164, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(214, 236, 101, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(25, 102, 164, 0.1) 0%, transparent 40%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231966A4' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    flex: 1;
    padding: 0 60px;
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-badge span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(214, 236, 101, 0.1);
    border: 1px solid rgba(214, 236, 101, 0.3);
    border-radius: var(--radius-full);
    color: var(--color-accent);
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--color-white);
    margin-bottom: 24px;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
}

.hero-title .highlight {
    color: var(--color-accent);
}

.hero-title .highlight::after {
    display: none;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-400);
    max-width: 540px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-buttons .btn-outline {
    color: var(--color-white);
    border-color: var(--color-white);
}

.hero-buttons .btn-outline:hover {
    background: var(--color-white);
    color: var(--color-black);
}

.hero-stats {
    display: flex;
    gap: 48px;
    opacity: 0;
    transform: translateY(30px);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-400);
    margin-top: 4px;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60%;
    max-width: none;
    opacity: 0;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 20%, rgba(0,0,0,0.7) 50%, black 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 20%, rgba(0,0,0,0.7) 50%, black 100%);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
}

.hero-scroll span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gray-500);
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ================================
   PRODUCTS SECTION
   ================================ */
.products {
    padding: 120px 0;
    background: var(--color-white);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, var(--color-gray-100), transparent);
}

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

.product-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(25, 102, 164, 0.1), rgba(214, 236, 101, 0.1));
    border-radius: var(--radius-lg);
    color: var(--color-primary);
    transition: var(--transition-normal);
}

.product-icon svg {
    width: 40px;
    height: 40px;
}

.product-card:hover .product-icon {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
}

.product-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.product-card p {
    color: var(--color-gray-500);
    font-size: 0.9375rem;
}

/* Product Cards with Images */
.product-card-img {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
}

.product-card-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transition: var(--transition-normal);
    z-index: 2;
}

.product-card-img:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.product-card-img:hover::before {
    transform: scaleX(1);
}

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

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.product-info {
    padding: 24px;
    text-align: center;
    background: var(--color-white);
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--color-black);
}

.product-info p {
    color: var(--color-gray-500);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ================================
   BRANDS SECTION
   ================================ */
.brands {
    padding: 100px 0;
    background: var(--color-gray-900);
    overflow: hidden;
}

.brands .section-tag {
    background: rgba(214, 236, 101, 0.1);
    color: var(--color-accent);
}

.brands .section-title {
    color: var(--color-white);
}

.brands .highlight::after {
    background: var(--color-primary);
}

.brands-marquee {
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.brands-marquee::before,
.brands-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
}

.brands-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--color-gray-900), transparent);
}

.brands-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--color-gray-900), transparent);
}

.marquee-track {
    display: flex;
    animation: marquee 20s linear infinite;
}

.marquee-track.reverse {
    animation: marquee-reverse 20s linear infinite;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
}

.brand-logo {
    flex-shrink: 0;
    width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    margin: 0 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.brand-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.brand-logo img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: var(--transition-normal);
}

.brand-logo:hover img {
    opacity: 1;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Mobile brands - 2 rows */
@media (max-width: 768px) {
    .brands-marquee {
        margin-top: 40px;
    }
    
    .brands-marquee::before,
    .brands-marquee::after {
        width: 40px;
    }
    
    .marquee-track {
        animation-duration: 12s;
        margin-bottom: 16px;
    }
    
    .marquee-track:last-child {
        margin-bottom: 0;
    }
    
    .brand-logo {
        width: 120px;
        height: 60px;
        padding: 12px 16px;
        margin: 0 8px;
    }
    
    .brand-logo img {
        max-height: 35px;
    }
}

/* ================================
   SHOP SECTION
   ================================ */
.shop {
    padding: 120px 0;
    background: var(--color-white);
}

.shop-gallery {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
}

.shop-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.shop-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.shop-main:hover img {
    transform: scale(1.05);
}

.shop-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: var(--transition-normal);
}

.shop-main:hover .shop-overlay,
.shop-item:hover .shop-overlay {
    opacity: 1;
}

.shop-overlay span {
    color: var(--color-white);
    font-weight: 600;
    font-size: 1.125rem;
}

.shop-grid {
    display: grid;
    gap: 24px;
}

.shop-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/9;
}

.shop-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.shop-item:hover img {
    transform: scale(1.05);
}

/* ================================
   COMMUNITY SECTION
   ================================ */
.community {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--color-gray-100) 0%, var(--color-white) 100%);
}

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

.partner-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.partner-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.partner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.partner-info {
    padding: 24px;
    text-align: center;
}

.partner-info h3 {
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.partner-title {
    display: block;
    font-size: 0.8125rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.partner-info p {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    line-height: 1.5;
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */
.testimonials {
    padding: 120px 0;
    background: var(--color-white);
}

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

.testimonial-card {
    background: var(--color-gray-100);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    transition: var(--transition-normal);
}

.testimonial-card.featured {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.05);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.testimonial-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.testimonial-stars {
    font-size: 1.25rem;
    color: var(--color-accent);
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card.featured .testimonial-text {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.testimonial-card.featured .author-avatar {
    background: var(--color-accent);
    color: var(--color-black);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-card.featured .author-name {
    color: var(--color-white);
}

.author-role {
    font-size: 0.8125rem;
    color: var(--color-gray-500);
}

.testimonial-card.featured .author-role {
    color: rgba(255, 255, 255, 0.7);
}

/* ================================
   CONTACT SECTION
   ================================ */
.contact {
    padding: 120px 0;
    background: var(--color-gray-100);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.contact-info {
    padding-right: 40px;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.contact-description {
    color: var(--color-gray-600);
    font-size: 1.125rem;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: var(--color-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.8125rem;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-gray-800);
}

.contact-value:hover {
    color: var(--color-primary);
}

.contact-hours {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--color-gray-200);
}

.contact-hours h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--color-gray-800);
}

.contact-hours ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9375rem;
}

.contact-hours li span {
    color: var(--color-gray-500);
}

.contact-hours li strong {
    color: var(--color-gray-800);
}

.contact-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    min-height: 500px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

/* ================================
   LOYALTY PROGRAM SECTION
   ================================ */
.loyalty {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--color-gray-900) 0%, var(--color-black) 100%);
    position: relative;
    overflow: hidden;
}

.loyalty::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(214, 236, 101, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(25, 102, 164, 0.15) 0%, transparent 50%);
}

.loyalty-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.loyalty-content .section-tag {
    background: rgba(214, 236, 101, 0.1);
    color: var(--color-accent);
}

.loyalty-content .section-title {
    color: var(--color-white);
    text-align: left;
    margin-bottom: 24px;
}

.loyalty-description {
    font-size: 1.125rem;
    color: var(--color-gray-400);
    margin-bottom: 40px;
    line-height: 1.7;
}

.loyalty-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.loyalty-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

.step-text h4 {
    font-size: 1.125rem;
    color: var(--color-white);
    margin-bottom: 4px;
}

.step-text p {
    font-size: 0.9375rem;
    color: var(--color-gray-400);
}

.loyalty-card {
    display: flex;
    justify-content: center;
}

.card-inner {
    background: linear-gradient(145deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(214, 236, 101, 0.1);
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-tagline {
    display: block;
    font-size: 0.875rem;
    color: var(--color-accent);
    font-style: italic;
    margin-bottom: 8px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--color-accent);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.card-phone {
    font-size: 1rem;
    color: var(--color-gray-400);
}

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

.card-offer {
    font-size: 0.875rem;
    color: var(--color-gray-300);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.5;
    margin-bottom: 24px;
}

.card-stamps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.stamp {
    width: 48px;
    height: 48px;
    border: 2px solid var(--color-gray-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-gray-500);
    transition: var(--transition-normal);
}

.stamp.filled {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-black);
}

@media (max-width: 992px) {
    .loyalty-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .loyalty-content {
        text-align: center;
    }
    
    .loyalty-content .section-title {
        text-align: center;
    }
    
    .loyalty-steps {
        align-items: center;
    }
    
    .loyalty-step {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .card-inner {
        padding: 24px;
    }
    
    .card-stamps {
        gap: 8px;
    }
    
    .stamp {
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }
}

/* ================================
   CTA SECTION
   ================================ */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #145285 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(214, 236, 101, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-white);
    margin-bottom: 16px;
}

.cta-content .highlight {
    color: var(--color-accent);
}

.cta-content .highlight::after {
    display: none;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--color-accent);
    color: var(--color-black);
    border-color: var(--color-accent);
}

.cta-buttons .btn-primary:hover {
    background: #c5db55;
    border-color: #c5db55;
}

.cta-buttons .btn-outline {
    color: var(--color-white);
    border-color: var(--color-white);
}

.cta-buttons .btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--color-black);
    color: var(--color-gray-400);
    padding: 80px 0 40px;
}

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

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 300px;
}

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

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-400);
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 0.9375rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-contact a {
    color: var(--color-gray-400);
}

.footer-contact a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    font-size: 0.875rem;
}

.footer-bottom p:last-child {
    color: var(--color-primary);
    font-weight: 600;
}

/* ================================
   LEGAL PAGES
   ================================ */
.legal-page {
    padding: 140px 0 80px;
    background: var(--color-white);
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-gray-200);
}

.legal-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-black);
    margin-bottom: 16px;
}

.legal-header p {
    color: var(--color-gray-500);
    font-size: 0.9375rem;
}

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

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-gray-200);
}

.legal-section h3 {
    font-size: 1.125rem;
    color: var(--color-gray-800);
    margin: 24px 0 12px;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-gray-600);
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-gray-600);
    margin-bottom: 8px;
    list-style-type: disc;
}

.legal-section li strong {
    color: var(--color-gray-800);
}

.legal-section a {
    color: var(--color-primary);
    text-decoration: underline;
}

.legal-section a:hover {
    color: #145285;
}

.cookie-table {
    overflow-x: auto;
    margin: 24px 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--color-gray-200);
}

.cookie-table th {
    background: var(--color-gray-100);
    font-weight: 600;
    color: var(--color-gray-800);
}

.cookie-table td {
    color: var(--color-gray-600);
}

@media (max-width: 768px) {
    .legal-page {
        padding: 120px 0 60px;
    }
    
    .legal-header {
        margin-bottom: 40px;
        padding-bottom: 24px;
    }
    
    .legal-section {
        margin-bottom: 32px;
    }
    
    .legal-section h2 {
        font-size: 1.25rem;
    }
}

/* ================================
   ANIMATIONS (GSAP triggered)
   ================================ */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
}

.fade-in {
    opacity: 0;
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1200px) {
    .hero-image {
        width: 50%;
        right: -50px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--color-primary);
        flex-direction: column;
        padding: 40px;
        gap: 24px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 24px 80px;
    }
    
    .hero-content {
        padding: 0;
    }
    
    .hero-image {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        max-width: none;
        margin-top: 0;
        opacity: 0.3;
    }
    
    .hero-image img {
        mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-scroll {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shop-gallery {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card.featured {
        transform: none;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 24px;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}
