/* ============================================================
   Pasta Mumu — Kurumsal tasarım
   Lacivert / altın · Outfit + Cormorant Garamond
   ============================================================ */

/* ==================== RESET & BASE ==================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Kurumsal renkler */
    --primary-color: #1A365D;
    --secondary-color: #2C4A6E;
    --accent-color: #B8956B;
    --highlight-color: #C9A962;
    --dark-color: #0F1419;
    --text-color: #1E293B;
    --muted-color: #64748B;
    --white: #ffffff;

    /* Backgrounds */
    --bg-body: #F8FAFC;
    --bg-section: #F1F5F9;
    --light-color: var(--bg-body);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1A365D 0%, #2C4A6E 100%);
    --gradient-rose: linear-gradient(135deg, #1A365D 0%, #2C4A6E 100%);
    --gradient-hero: linear-gradient(180deg, rgba(15, 20, 25, 0.4) 0%, rgba(15, 20, 25, 0.15) 100%);
    --gradient-text: linear-gradient(135deg, #C9A962 0%, #1A365D 100%);
    --gradient-dark: linear-gradient(135deg, #0F1419 0%, #1A365D 100%);

    /* Navigation */
    --nav-height: 80px;
    --nav-glass: rgba(15, 20, 25, 0.95);
    --nav-glass-scrolled: rgba(15, 20, 25, 0.98);
    --text-on-dark: #F8FAFC;

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-heading: 'Cormorant Garamond', serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 24px;
    --radius-card: 20px;

    /* Motion */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 2px 12px rgba(42, 38, 53, 0.06);
    --shadow-md: 0 8px 28px rgba(42, 38, 53, 0.1);
    --shadow-lg: 0 16px 48px rgba(42, 38, 53, 0.14);
    --shadow-rose: 0 8px 24px rgba(26, 54, 93, 0.25);

    /* Legacy aliases */
    --gray-color: var(--muted-color);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
}

ul {
    list-style: none;
}

/* ==================== UTILITIES ==================== */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.navbar.scrolled {
    background: #000000;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.nav-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: var(--nav-height);
    padding: 0.5rem 0;
    gap: 1rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu-left {
    grid-column: 1;
    justify-self: start;
}

.nav-menu-right {
    grid-column: 3;
    justify-self: end;
}

.logo {
    grid-column: 2;
    justify-self: center;
    z-index: 2;
}

.nav-mobile-menu {
    display: none;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo a:hover {
    transform: scale(1.04);
}

.logo a:hover img {
    filter: brightness(1.1) drop-shadow(0 4px 16px rgba(26, 54, 93, 0.35));
}

.logo img {
    height: 52px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition);
}

.nav-link {
    text-decoration: none;
    color: var(--text-on-dark);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--highlight-color);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--highlight-color);
}

.btn-buy {
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 0.65rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-rose);
    white-space: nowrap;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(26, 54, 93, 0.35);
    filter: brightness(1.06);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1002;
    grid-column: 3;
    justify-self: end;
    background: none;
    border: none;
    padding: 8px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--text-on-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-primary);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.2;
}

.btn-primary {
    background: var(--gradient-rose);
    color: var(--white);
    box-shadow: var(--shadow-rose);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(26, 54, 93, 0.35);
    filter: brightness(1.08);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

/* Light-section button overrides */
.about .btn-secondary,
.products .btn-secondary,
.contact .btn-secondary,
.testimonials .btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    backdrop-filter: none;
}

.about .btn-secondary:hover,
.products .btn-secondary:hover,
.contact .btn-secondary:hover,
.testimonials .btn-secondary:hover {
    background: var(--gradient-rose);
    color: var(--white);
    border-color: transparent;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* ==================== HERO — görsel + sipariş butonu ==================== */
.hero {
    margin: 0;
    padding: 0;
    display: block;
    background: transparent;
}

.hero-visual {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    line-height: 0;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.hero-image-link {
    display: block;
    position: relative;
    width: 100%;
    cursor: pointer;
    text-decoration: none;
    line-height: 0;
    z-index: 2;
    pointer-events: auto;
}

.hero-image-link::after {
    content: "Satın Almak İçin Tıklayın";
    position: absolute;
    left: 50%;
    bottom: 1.25rem;
    transform: translateX(-50%) translateY(6px);
    padding: 0.55rem 1.1rem;
    border-radius: 50px;
    background: rgba(15, 20, 25, 0.88);
    color: #F8FAFC;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-image-link:hover::after,
.hero-image-link:focus-visible::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.hero-image,
.hero-bg img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Sipariş butonu — görselden tamamen ayrı bölüm */
.hero-buy {
    display: block;
    width: 100%;
    margin: 0;
    padding: 1rem 16px 1.25rem;
    background: var(--bg-body);
    clear: both;
    box-sizing: border-box;
}

.hero-buy-actions {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 100%;
}

.hero-buy .btn,
.hero-buy #hero-satin-al,
#hero-satin-al {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    float: none !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 !important;
    flex: 0 1 auto;
    white-space: nowrap;
}

/* Eski yapı: buton görselin içindeyse gizle (sunucu önbelleği) */
.hero-visual .btn,
.hero-visual #hero-satin-al {
    display: none !important;
}

.hero-overlay,
.hero-content,
.scroll-down {
    display: none !important;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--highlight-color);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.75rem, 7vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(18, 16, 26, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.25rem);
    margin-bottom: 1.75rem;
    font-weight: 400;
    color: rgba(255, 251, 252, 0.92);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 0.5rem;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 251, 252, 0.85);
    font-weight: 400;
}

.hero-trust i {
    color: var(--highlight-color);
    font-size: 1rem;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
    color: var(--text-on-dark);
    font-size: 1.5rem;
    opacity: 0.85;
    transition: var(--transition);
}

.scroll-down:hover {
    opacity: 1;
    color: var(--highlight-color);
}

.scroll-down a,
.scroll-down {
    color: var(--text-on-dark);
    font-size: 1.75rem;
    text-decoration: none;
    opacity: 0.85;
    transition: var(--transition);
}

.scroll-down:hover {
    opacity: 1;
    color: var(--highlight-color);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Hero primary CTA — slightly brighter on dark */
.hero .btn-primary {
    background: var(--gradient-rose);
    color: var(--white);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out both;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.25s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.5s both;
}

/* ==================== SECTIONS ==================== */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-rose);
    color: var(--white);
    padding: 0.45rem 1.35rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
    line-height: 1.2;
}

.title-underline {
    width: 72px;
    height: 4px;
    background: var(--gradient-rose);
    margin: 0 auto 1.5rem;
    border-radius: 4px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--muted-color);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ==================== ABOUT ==================== */
.about {
    background: var(--bg-section);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-md);
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.about-badge i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.about-badge span {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--muted-color);
    line-height: 1.85;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-color);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(155, 139, 180, 0.12);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.stat-item i {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 0.85rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.35rem;
    line-height: 1.1;
}

.stat-item p {
    color: var(--muted-color);
    font-size: 0.95rem;
}

/* ==================== PRODUCTS ==================== */
.products {
    background: var(--bg-body);
}

.products-grid-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

@media (min-width: 1200px) {
    .products-grid-simple {
        grid-template-columns: repeat(6, 1fr);
    }
}

.product-card-simple {
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(155, 139, 180, 0.1);
}

.product-card-simple:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image-simple {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    width: 100%;
}

.product-image-simple img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-simple:hover .product-image-simple img {
    transform: scale(1.06);
}

.product-overlay-simple {
    position: absolute;
    inset: 0;
    background: rgba(18, 16, 26, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card-simple:hover .product-overlay-simple {
    opacity: 1;
}

.overlay-btn-buy {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-rose);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: var(--transition);
    box-shadow: var(--shadow-rose);
}

.overlay-btn-buy:hover {
    transform: scale(1.05);
    filter: brightness(1.08);
}

.overlay-btn-simple {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition);
    text-decoration: none;
}

.overlay-btn-simple:hover {
    transform: scale(1.12);
    background: var(--primary-color);
    color: var(--white);
}

.products-cta {
    text-align: center;
    padding-top: 1rem;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    background: var(--bg-section);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(155, 139, 180, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: var(--highlight-color);
    font-size: 0.95rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--muted-color);
    margin-bottom: 1.5rem;
    line-height: 1.85;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.testimonial-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(26, 54, 93, 0.2);
}

.testimonial-author h4 {
    color: var(--text-color);
    margin-bottom: 0.2rem;
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--muted-color);
    font-size: 0.88rem;
}

/* ==================== CONTACT ==================== */
.contact {
    background: var(--bg-body);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-rose);
}

.contact-icon i {
    color: var(--white);
    font-size: 1.25rem;
}

.contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: var(--text-color);
    font-weight: 600;
}

.contact-details p,
.contact-details a {
    color: var(--muted-color);
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.7;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.social-media h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: var(--gradient-rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.15rem;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

.social-links a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-rose);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(155, 139, 180, 0.12);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.95rem 1.1rem;
    border: 2px solid #E8E4EC;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text-color);
    background: var(--bg-body);
    transition: var(--transition);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(26, 54, 93, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.text-danger,
.validation-summary-errors,
.field-validation-error {
    color: #D43D5C;
    font-size: 0.88rem;
}

.validation-summary-errors {
    background: #FFF0F3;
    border: 1px solid #F5C6D0;
    border-radius: 12px;
    padding: 0.9rem 1rem;
}

.validation-summary-errors ul {
    margin-left: 1.25rem;
    list-style: disc;
}

.input-validation-error,
.form-group input.input-validation-error,
.form-group select.input-validation-error,
.form-group textarea.input-validation-error {
    border-color: #D43D5C;
}

.notification {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1100;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 420px;
    padding: 1rem 1.35rem;
    border-radius: 14px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    animation: fadeIn 0.4s ease-out;
}

.notification.success {
    background: linear-gradient(135deg, #2E9B6A 0%, #1F7A52 100%);
}

.notification.error {
    background: linear-gradient(135deg, #D43D5C 0%, #A82E45 100%);
}

/* ==================== MAP ==================== */
.map {
    padding: 0;
    line-height: 0;
}

.map iframe {
    display: block;
    width: 100%;
    min-height: 400px;
    border: 0;
    filter: grayscale(15%) contrast(1.02);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark-color);
    color: rgba(255, 251, 252, 0.85);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.footer-logo i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.footer-about p {
    line-height: 1.85;
    margin-bottom: 1.5rem;
    color: rgba(255, 251, 252, 0.72);
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-on-dark);
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--gradient-rose);
    border-color: transparent;
    transform: translateY(-4px);
}

.footer-links h3,
.footer-newsletter h3 {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    color: var(--white);
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: rgba(255, 251, 252, 0.72);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--highlight-color);
    padding-left: 6px;
}

.footer-links i {
    font-size: 0.65rem;
    color: var(--primary-color);
}

.footer-newsletter p {
    margin-bottom: 1.25rem;
    color: rgba(255, 251, 252, 0.72);
    font-size: 0.95rem;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-family: var(--font-primary);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 251, 252, 0.45);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: var(--gradient-rose);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-rose);
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.footer-badges img {
    height: 36px;
    opacity: 0.85;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 251, 252, 0.55);
}

/* ==================== FLOATING UI ==================== */
.scroll-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 50px;
    height: 50px;
    background: var(--gradient-rose);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-rose);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-4px);
}

.whatsapp-float {
    position: fixed;
    bottom: 96px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.85rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    transition: var(--transition);
    z-index: 999;
    text-decoration: none;
    animation: pulse-wa 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    color: var(--white);
}

@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
    50% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ==================== LOADING ==================== */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.loading {
    background: linear-gradient(to right, #F4F0F5 8%, #E8E4EC 18%, #F4F0F5 33%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* ==================== LEGAL PAGES ==================== */
.legal-page {
    padding: calc(var(--nav-height) + 48px) 0 60px;
    background: var(--bg-section);
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 48px;
    padding: 40px 24px;
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(155, 139, 180, 0.12);
}

.legal-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-header h1 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.legal-date {
    color: var(--muted-color);
    font-size: 0.95rem;
    font-style: italic;
}

.legal-content {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-md);
    line-height: 1.85;
    border: 1px solid rgba(155, 139, 180, 0.1);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--text-color);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-color);
    font-weight: 700;
}

.legal-section h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin: 24px 0 14px;
    font-weight: 600;
}

.legal-section h4 {
    font-size: 1.05rem;
    color: var(--text-color);
    margin: 14px 0 10px;
    font-weight: 600;
}

.legal-section p {
    margin-bottom: 14px;
    color: var(--muted-color);
    text-align: justify;
}

.legal-section ul,
.legal-section ol {
    margin: 14px 0 14px 24px;
    padding-left: 18px;
    color: var(--muted-color);
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.65;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.legal-section a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-box {
    background: linear-gradient(135deg, #FFF5F7 0%, #F4F0F5 100%);
    padding: 24px;
    border-radius: 14px;
    border-left: 4px solid var(--primary-color);
    margin: 20px 0;
}

.contact-box p {
    margin-bottom: 8px;
    text-align: left;
}

.contact-box i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 20px;
}

.info-box {
    background: #F0F4FF;
    padding: 20px;
    border-radius: 14px;
    border-left: 4px solid var(--accent-color);
    margin: 20px 0;
}

.info-box i {
    color: var(--accent-color);
    margin-right: 10px;
}

.warning-box {
    background: #FFF8F0;
    padding: 20px;
    border-radius: 14px;
    border-left: 4px solid var(--highlight-color);
    margin: 20px 0;
}

.warning-box i {
    color: var(--highlight-color);
    margin-right: 10px;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.06) 0%, rgba(155, 139, 180, 0.08) 100%);
    padding: 28px;
    border-radius: var(--radius-card);
    border: 2px solid rgba(26, 54, 93, 0.25);
    margin: 24px 0;
    text-align: center;
}

.highlight-box h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.highlight-box h3 i {
    margin-right: 8px;
}

.checklist {
    list-style: none;
    padding-left: 0;
}

.checklist li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 10px;
}

.checklist li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #2E9B6A;
    font-size: 1.1rem;
}

.info-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.info-table td {
    padding: 12px;
    border-bottom: 1px solid #E8E4EC;
}

.info-table td:first-child {
    width: 180px;
    color: var(--muted-color);
    font-weight: 500;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin: 24px 0;
}

.method-item {
    background: var(--bg-body);
    padding: 20px;
    border-radius: 14px;
    border: 2px solid #E8E4EC;
    text-align: center;
    transition: var(--transition);
}

.method-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.method-item i {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.method-item h4 {
    margin: 8px 0;
    color: var(--text-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 18px;
    margin: 28px 0;
}

.step {
    background: var(--bg-body);
    padding: 20px;
    border-radius: 14px;
    border: 2px solid #E8E4EC;
    text-align: center;
    transition: var(--transition);
}

.step:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-rose);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.35rem;
    font-weight: 700;
}

.step h4 {
    font-size: 0.95rem;
    margin: 8px 0;
    color: var(--text-color);
}

.step p {
    font-size: 0.85rem;
    color: var(--muted-color);
    margin: 0;
}

.document-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
    margin: 24px 0;
}

.document-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: var(--bg-section);
    border-radius: 14px;
    border-left: 4px solid var(--primary-color);
}

.document-item i {
    font-size: 1.75rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.document-item h4 {
    margin: 0 0 4px;
    color: var(--text-color);
}

.document-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted-color);
}

.signature-box {
    background: var(--bg-section);
    padding: 24px;
    border-radius: 14px;
    border: 2px dashed rgba(26, 54, 93, 0.4);
    text-align: center;
    margin: 28px 0 10px;
    font-size: 1.05rem;
}

.signature-date {
    text-align: right;
    color: var(--muted-color);
    font-style: italic;
    margin-top: 10px;
}

.legal-back {
    text-align: center;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 2px solid #E8E4EC;
}

/* ==================== RESPONSIVE — 992px ==================== */
@media (max-width: 992px) {
    .products-grid-simple {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .nav-wrapper {
        grid-template-columns: 48px 1fr 48px;
    }

    .nav-menu-left,
    .nav-menu-right {
        display: none;
    }

    .logo {
        grid-column: 2;
    }

    .hamburger {
        display: flex;
    }

    .nav-mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: var(--nav-glass-scrolled);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        z-index: 999;
        transition: left 0.35s ease;
        padding: calc(var(--nav-height) + 2rem) 2rem 2rem;
        overflow-y: auto;
    }

    .nav-mobile-menu.active {
        left: 0;
    }

    .nav-mobile-menu .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .nav-mobile-menu .nav-link {
        font-size: 1.15rem;
    }

    .nav-mobile-menu .btn-buy {
        margin-top: 0.5rem;
    }
}

/* ==================== RESPONSIVE — 768px ==================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 72px 0;
        --nav-height: 72px;
    }

    .hero-image,
    .hero-bg img {
        width: 100%;
        height: auto;
    }

    .hero-buy {
        padding: 1rem 12px 1.25rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-wrapper {
        padding: 1.75rem;
    }

    .legal-header h1 {
        font-size: 1.85rem;
    }

    .legal-content {
        padding: 28px 20px;
    }

    .legal-section h2 {
        font-size: 1.35rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .document-list {
        grid-template-columns: 1fr;
    }

    .info-table td:first-child {
        width: 120px;
        font-size: 0.9rem;
    }
}

/* ==================== RESPONSIVE — 480px ==================== */
@media (max-width: 480px) {
    :root {
        --section-padding: 56px 0;
        --container-padding: 0 16px;
    }

    .hero-buy-actions {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 15px;
    }

    .hero-buy .btn-large {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 0.4rem 0.9rem;
    }

    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.92rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .logo img {
        height: 42px;
        max-width: 150px;
    }

    .products-grid-simple {
        grid-template-columns: 1fr;
    }

    .product-image-simple {
        aspect-ratio: 4 / 5;
    }

    .stat-number {
        font-size: 2rem;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
        bottom: 88px;
        right: 20px;
    }

    .scroll-to-top {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        right: 20px;
        bottom: 24px;
    }

    .notification {
        right: 16px;
        left: 16px;
        max-width: none;
    }

    .legal-page {
        padding-top: calc(var(--nav-height) + 32px);
    }
}

/* Legacy single nav-menu (content/index.html) — mobile drawer via #navMenu */
@media (max-width: 992px) {
    .nav-wrapper > .nav-menu:not(.nav-menu-left):not(.nav-menu-right) {
        display: none;
    }

    .nav-wrapper > .nav-menu#navMenu.active,
    #navMenu.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        background: var(--nav-glass-scrolled);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        z-index: 999;
        padding: 2rem;
    }
}
