/*
Theme Name: Iguana Garage
Theme URI: https://iguanagarage.cl
Author: Iguana Garage
Author URI: https://iguanagarage.cl
Description: Premium WordPress theme for Iguana Garage, a high-end auto repair workshop specializing in BMW, Mercedes-Benz, Volvo, Mini and Audi. Features a sophisticated dark and gold design system, full Gutenberg block editor support, block patterns, and a custom quote-request flow.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.6
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: iguana-garage
Tags: automotive, business, dark, featured-images, full-site-editing, block-patterns, translation-ready, threaded-comments, two-columns, three-columns, four-columns, wide-blocks
*/

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #09090b;
    color: #f4f4f5;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', 'Arial Narrow', sans-serif;
    font-weight: 300;
    line-height: 1.2;
    margin: 0 0 1rem;
    color: #f4f4f5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

p { margin: 0 0 1rem; color: #a1a1aa; font-weight: 300; }

a { color: #e5ab3a; text-decoration: none; transition: color 0.2s ease; }
a:hover { color: #f4dca0; }

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

ul, ol { margin: 0 0 1rem; padding-left: 1.5rem; color: #a1a1aa; }
li { margin-bottom: 0.5rem; }

::selection { background: #c9912a; color: #09090b; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #09090b; }
::-webkit-scrollbar-thumb { background: #3f3f46; }
::-webkit-scrollbar-thumb:hover { background: #c9912a; }

/* ==========================================================================
   Layout
   ========================================================================== */
.site-main { display: block; min-height: 60vh; }

.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.entry-content { max-width: 50rem; margin: 0 auto; }
.entry-content > * { margin-top: 0; margin-bottom: 1.5rem; }
.alignwide { max-width: 80rem; }
.alignfull { max-width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }

/* ==========================================================================
   Typography classes
   ========================================================================== */
.font-display { font-family: 'Oswald', 'Arial Narrow', sans-serif; }

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #f4f4f5;
}
.section-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #e5ab3a;
    font-weight: 500;
}
.divider-gold {
    width: 3rem;
    height: 1px;
    background: #c9912a;
}
.text-gold { color: #e5ab3a; }
.text-gold-light { color: #f4dca0; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-gold,
.btn-outline,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.875rem;
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    line-height: 1;
}
.btn-gold {
    background: #c9912a;
    color: #09090b;
}
.btn-gold:hover,
.btn-gold:focus {
    background: #e5ab3a;
    color: #09090b;
}
.btn-outline {
    border: 1px solid #c9912a;
    color: #e5ab3a;
    background: transparent;
}
.btn-outline:hover,
.btn-outline:focus {
    background: #c9912a;
    color: #09090b;
}
.btn-ghost {
    background: transparent;
    color: #a1a1aa;
    padding: 0.5rem 1rem;
}
.btn-ghost:hover { color: #f4f4f5; }

.btn-gold:disabled,
.btn-outline:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-outline--sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
    position: static;
    z-index: 50;
    transition: all 0.3s ease;
    padding: 0;
    background: #09090b;
    border-bottom: 1px solid #27272a;
}
@media (min-width: 768px) {
    .site-header {
        position: fixed;
        top: 0; left: 0; right: 0;
        background: transparent;
        border-bottom: none;
    }
}
.site-header.scrolled {
    background: rgba(9, 9, 11, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(39, 39, 42, 0.8);
}
.site-header__inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1.25rem;
}
@media (min-width: 768px) {
    .site-header__inner {
        height: 5rem;
        padding: 0 2rem;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
}
.site-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}
.site-brand__logo {
    width: 2rem;
    height: 2rem;
    border: 1px solid #c9912a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: #c9912a;
    font-size: 0.75rem;
    transition: all 0.2s ease;
}
.site-brand:hover .site-brand__logo {
    background: #c9912a;
    color: #09090b;
}
.site-brand__logo--img {
    width: 2.5rem; height: 2.5rem;
    border: none; background: none; padding: 0;
    object-fit: contain;
}
.site-brand:hover .site-brand__logo--img { background: none; }
.site-brand__name {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #f4f4f5;
}
.site-brand__name span { color: #e5ab3a; }

.main-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
@media (min-width: 768px) { .main-nav { gap: 2rem; } }
.main-nav a {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #a1a1aa;
    transition: color 0.2s ease;
    position: relative;
}
@media (min-width: 768px) { .main-nav a { font-size: 0.875rem; letter-spacing: 0.15em; } }
.main-nav a:hover,
.main-nav a.current-menu-item { color: #e5ab3a; }

.header-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: #09090b;
    border-top: 1px solid #27272a;
    padding: 4rem 0 2rem;
}
.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (min-width: 768px) {
    .site-footer__grid { grid-template-columns: repeat(2, 1fr); padding: 0 2rem; }
}
@media (min-width: 1024px) {
    .site-footer__grid { grid-template-columns: repeat(4, 1fr); }
}
.footer-col h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #e5ab3a;
    margin-bottom: 1.25rem;
    font-weight: 500;
}
.footer-col p { font-size: 0.875rem; color: #71717a; line-height: 1.6; margin-bottom: 0.75rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul a { color: #a1a1aa; font-size: 0.875rem; }
.footer-col ul a:hover { color: #e5ab3a; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #a1a1aa;
}
.footer-contact-item svg { width: 1rem; height: 1rem; color: #c9912a; margin-top: 0.125rem; flex-shrink: 0; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a {
    width: 2.25rem; height: 2.25rem;
    border: 1px solid #3f3f46;
    display: flex; align-items: center; justify-content: center;
    color: #71717a;
    transition: all 0.2s ease;
}
.footer-social a:hover { color: #e5ab3a; border-color: #c9912a; }
.footer-social svg { width: 1rem; height: 1rem; }
.footer-hours-row { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.875rem; }
.footer-hours-row .days { color: #71717a; }
.footer-hours-row .time { color: #d4d4d8; }
.footer-hours-row .time.closed { color: #52525b; }
.site-footer__bottom {
    max-width: 80rem;
    margin: 3rem auto 0;
    padding: 2rem 1.5rem 0;
    border-top: 1px solid #27272a;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}
@media (min-width: 768px) {
    .site-footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; padding: 2rem 2rem 0; }
}
.site-footer__bottom p { font-size: 0.75rem; color: #52525b; margin: 0; }

/* ==========================================================================
   Hero section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(9,9,11,0.8), rgba(9,9,11,0.6), #09090b);
}
.hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
    padding: 0 1rem;
}
.hero__title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #f4f4f5;
    margin-bottom: 1.5rem;
}
.hero__title span { color: #e5ab3a; }
.hero__desc {
    font-size: 1.125rem;
    color: #a1a1aa;
    font-weight: 300;
    max-width: 32rem;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}
.hero__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
@media (min-width: 640px) {
    .hero__actions { flex-direction: row; justify-content: center; }
}
.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #71717a;
    transition: color 0.2s ease;
    animation: bounce 2s infinite;
}
.hero__scroll:hover { color: #e5ab3a; }
.hero__scroll svg { width: 1.5rem; height: 1.5rem; }

.hero--banner {
    min-height: 0;
    display: block;
    background: #09090b;
}
@media (min-width: 768px) { .hero--banner { padding-top: 5rem; } }
.hero__banner-img { width: 100%; height: auto; display: block; }
.hero__banner-actions {
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
    padding: 2rem 1.5rem 2.5rem;
}
@media (min-width: 640px) { .hero__banner-actions { flex-direction: row; justify-content: center; } }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding: 6rem 0; }
@media (min-width: 768px) { .section { padding: 6rem 1.5rem; } }
.section--tight { padding: 2.5rem 0; }
.section--muted { background: rgba(24, 24, 27, 0.4); }
.section--bordered { border-top: 1px solid #27272a; border-bottom: 1px solid #27272a; }
.section__header { text-align: center; margin-bottom: 4rem; }
.section__header .section-title { margin-bottom: 1.5rem; }

/* Brands strip */
.brands-strip { border-top: 1px solid #27272a; border-bottom: 1px solid #27272a; background: rgba(24,24,27,0.5); }
.brands-strip__inner {
    max-width: 80rem; margin: 0 auto; padding: 2.5rem 1.5rem;
}
.brands-strip__label {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: #52525b;
    margin-bottom: 2.5rem;
}
.brands-strip__list {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: 2.5rem;
}
@media (min-width: 768px) { .brands-strip__list { gap: 4rem; } }
.brand-logo {
    color: #71717a;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
}
.brand-logo:hover { color: #e4e4e7; }
.brand-logo--text { font-size: 1.5rem; letter-spacing: 0.35em; text-transform: uppercase; }
.brand-logo--img { height: 2.25rem; }
.brand-logo--img img {
    height: 100%; width: auto; max-width: 8rem;
    filter: grayscale(100%) brightness(1.6) opacity(0.65);
    transition: filter 0.3s ease;
}
.brand-logo--img:hover img { filter: grayscale(0%) brightness(1) opacity(1); }
@media (min-width: 768px) { .brand-logo--img { height: 2.75rem; } }

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: #27272a;
}
@media (min-width: 768px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
    background: #09090b;
    padding: 2rem;
    transition: background 0.3s ease;
}
.service-card:hover { background: #18181b; }
.service-card__icon { font-size: 1.875rem; margin-bottom: 1rem; }
.service-card__title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #f4f4f5;
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
}
.service-card:hover .service-card__title { color: #e5ab3a; }
.service-card__divider {
    width: 1.5rem; height: 1px; background: #c9912a; margin-bottom: 1rem;
    transition: width 0.3s ease;
}
.service-card:hover .service-card__divider { width: 3rem; }
.service-card__desc { font-size: 0.875rem; color: #71717a; line-height: 1.6; margin: 0; }

/* Service detail rows */
.service-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}
@media (min-width: 1024px) { .service-detail { grid-template-columns: 1fr 1fr; } }
.service-detail--reverse .service-detail__image { order: 2; }
@media (min-width: 1024px) {
    .service-detail--reverse .service-detail__image { order: 2; }
    .service-detail--reverse .service-detail__content { order: 1; }
}
.service-detail__image { overflow: hidden; position: relative; }
.service-detail__image img {
    width: 100%; height: 18rem; object-fit: cover;
    transition: transform 0.7s ease;
}
@media (min-width: 1024px) { .service-detail__image img { height: 24rem; } }
.service-detail__image:hover img { transform: scale(1.05); }
.service-detail__content h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 1.5rem;
}
.service-detail__features {
    list-style: none; padding: 0; margin: 0 0 2rem;
}
.service-detail__features li {
    display: flex; align-items: flex-start; gap: 0.75rem;
    color: #d4d4d8; font-size: 0.875rem; margin-bottom: 0.75rem;
}
.service-detail__features li::before {
    content: '\2713';
    color: #c9912a;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Why-us reasons grid */
.reasons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) { .reasons-grid { grid-template-columns: repeat(2, 1fr); } }
.reason-card {
    padding: 1.5rem;
    border: 1px solid #27272a;
    transition: border-color 0.3s ease;
}
.reason-card:hover { border-color: rgba(201, 145, 42, 0.3); }
.reason-card__icon {
    width: 2.5rem; height: 2.5rem;
    border: 1px solid rgba(201, 145, 42, 0.5);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
    transition: background 0.2s ease;
}
.reason-card:hover .reason-card__icon { background: rgba(201, 145, 42, 0.1); }
.reason-card__icon svg { width: 1.25rem; height: 1.25rem; color: #e5ab3a; }
.reason-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em;
    color: #f4f4f5; margin-bottom: 0.5rem;
}
.reason-card p { font-size: 0.875rem; color: #71717a; margin: 0; }

/* Parts CTA (cruce de trafico hacia Volpartes) */
.parts-cta { background: rgba(24, 24, 27, 0.4); border-top: 1px solid #27272a; border-bottom: 1px solid #27272a; }
.parts-cta__inner { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .parts-cta__inner { grid-template-columns: 1fr 1.3fr; } }

.parts-cta__media { position: relative; }
.parts-cta__image {
    width: 100%; min-height: 16rem;
    background-size: cover; background-position: center;
    border: 1px solid #27272a; border-radius: 4px;
    margin-bottom: 1.5rem;
}
.parts-cta__badge {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; border: 1px solid #27272a; background: #09090b;
    padding: 3rem 2rem; border-radius: 4px;
}
.parts-cta__badge-num { font-family: 'Oswald', sans-serif; font-size: 3rem; font-weight: 600; color: #e5ab3a; line-height: 1; }
.parts-cta__badge-label { margin-top: 0.75rem; color: #a1a1aa; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em; }

.parts-cta__features { list-style: none; margin: 0 0 2.5rem; padding: 0; display: grid; gap: 1rem; }
.parts-cta__features li { display: flex; align-items: flex-start; gap: 0.875rem; margin-bottom: 0; color: #d4d4d8; font-size: 0.9375rem; }
.parts-cta__feature-icon {
    flex: 0 0 auto; width: 2rem; height: 2rem;
    border: 1px solid rgba(201, 145, 42, 0.5);
    display: flex; align-items: center; justify-content: center;
    border-radius: 4px;
}
.parts-cta__feature-icon svg { width: 1rem; height: 1rem; color: #e5ab3a; }
.parts-cta__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Location / map */
.location-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .location-grid { grid-template-columns: 1fr 1.2fr; } }
.location-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.location-map iframe { display: block; border-radius: 4px; border: 1px solid #27272a; }

/* CTA banner */
.cta-banner {
    position: relative;
    min-height: 20rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta-banner__bg { position: absolute; inset: 0; }
.cta-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner__overlay { position: absolute; inset: 0; background: rgba(9,9,11,0.7); }
.cta-banner__content {
    position: relative; z-index: 10; text-align: center; padding: 0 1rem; max-width: 56rem;
}
.cta-banner__title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.5rem, 4vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #f4f4f5;
    margin-bottom: 2rem;
}
.cta-banner__title span { color: #e5ab3a; }
.cta-banner__actions {
    display: flex; flex-direction: column; gap: 1rem;
    align-items: center;
}
@media (min-width: 640px) { .cta-banner__actions { flex-direction: row; justify-content: center; } }

/* Page header */
.page-header-section {
    position: relative;
    padding: 6rem 0 5rem;
    overflow: hidden;
}
.page-header-section__bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
}
.page-header-section__overlay { position: absolute; inset: 0; background: rgba(9,9,11,0.85); }
.page-header-section__content {
    position: relative; z-index: 10; text-align: center; max-width: 48rem; margin: 0 auto; padding: 0 1.5rem;
}

/* ==========================================================================
   Forms
   ========================================================================== */
.ig-form { max-width: 42rem; margin: 0 auto; }
.ig-form__section { margin-bottom: 2.5rem; }
.ig-form__section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #e5ab3a;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #27272a;
}
.ig-form__grid {
    display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
@media (min-width: 640px) { .ig-form__grid { grid-template-columns: repeat(2, 1fr); } }
.ig-form__grid--full { grid-column: 1 / -1; }
.ig-form label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #a1a1aa;
    margin-bottom: 0.5rem;
}
.ig-form .input-field,
.ig-form input[type="text"],
.ig-form input[type="email"],
.ig-form input[type="tel"],
.ig-form input[type="number"],
.ig-form input[type="password"],
.ig-form select,
.ig-form textarea {
    width: 100%;
    background: #18181b;
    border: 1px solid #3f3f46;
    color: #f4f4f5;
    padding: 0.75rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    transition: border-color 0.2s ease;
    border-radius: 0;
}
.ig-form input:focus,
.ig-form select:focus,
.ig-form textarea:focus {
    outline: none;
    border-color: #c9912a;
    box-shadow: 0 0 0 1px #c9912a;
}
.ig-form input::placeholder,
.ig-form textarea::placeholder { color: #52525b; }
.ig-form textarea { resize: vertical; min-height: 6rem; }
.ig-form .btn-gold { width: 100%; justify-content: center; margin-top: 1rem; }
.ig-form p label { display: block; margin-bottom: 0.5rem; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.05em; color: #a1a1aa; }

/* wp_login_form() default markup, styled to match .ig-form */
.ig-form #loginform p { margin-bottom: 1.25rem; }
.ig-form #loginform label { display: block; margin-bottom: 0.5rem; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.05em; color: #a1a1aa; }
.ig-form #loginform input[type="text"],
.ig-form #loginform input[type="password"] {
    width: 100%; padding: 0.75rem 1rem;
    background: #18181b; border: 1px solid #3f3f46; border-radius: 4px;
    color: #f4f4f5; font-family: 'Inter', sans-serif; font-size: 0.9375rem;
}
.ig-form #loginform input[type="text"]:focus,
.ig-form #loginform input[type="password"]:focus { outline: none; border-color: #c9912a; }
.ig-form #loginform .forgetmenot { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: #a1a1aa; }
.ig-form #loginform .forgetmenot label { display: inline; margin: 0; text-transform: none; letter-spacing: normal; }

/* Mi Cuenta page */
.ig-account-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; max-width: 56rem; margin: 0 auto; }
@media (min-width: 768px) { .ig-account-grid { grid-template-columns: 1fr 1fr; } }

.ig-account-bar {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
    border: 1px solid #27272a; background: rgba(24,24,27,0.5); padding: 1.25rem 1.5rem; border-radius: 4px;
}
.ig-account-bar__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.ig-quote-list { display: grid; gap: 1.25rem; margin-top: 2rem; }
.ig-quote-card { border: 1px solid #27272a; padding: 1.5rem; border-radius: 4px; }
.ig-quote-card__head { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.ig-quote-card h4 { margin: 0 0 0.375rem; font-size: 1.125rem; }
.ig-quote-card__meta { margin: 0; font-size: 0.8125rem; color: #71717a; text-transform: uppercase; letter-spacing: 0.05em; }
.ig-quote-card__price { margin: 1rem 0 0; color: #e5ab3a; font-family: 'Oswald', sans-serif; font-size: 1.125rem; }
.ig-quote-card__notes { margin: 0.75rem 0 0; font-size: 0.875rem; padding-top: 0.75rem; border-top: 1px solid #27272a; }

.ig-admin-quote-form { max-width: none; margin: 1.25rem 0 0; padding-top: 1.25rem; border-top: 1px solid #27272a; }
.ig-admin-quote-form__row { display: grid; grid-template-columns: 1fr; gap: 0 1rem; }
@media (min-width: 480px) { .ig-admin-quote-form__row { grid-template-columns: 1fr 1fr; } }

.ig-quote-status {
    flex-shrink: 0; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600;
    padding: 0.375rem 0.875rem; border-radius: 999px; border: 1px solid #3f3f46; color: #d4d4d8; white-space: nowrap;
}
.ig-quote-status--pendiente,
.ig-quote-status--en-revision { border-color: rgba(201, 145, 42, 0.5); color: #e5ab3a; }
.ig-quote-status--cotizado,
.ig-quote-status--aprobado { border-color: rgba(74, 222, 128, 0.4); color: #4ade80; }
.ig-quote-status--completado { border-color: rgba(96, 165, 250, 0.4); color: #60a5fa; }
.ig-quote-status--cancelado { border-color: rgba(248, 113, 113, 0.4); color: #f87171; }
.ig-form__notice {
    border: 1px solid rgba(201,145,42,0.3);
    background: rgba(201,145,42,0.05);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}
.ig-form__notice svg { width: 1.25rem; height: 1.25rem; color: #e5ab3a; flex-shrink: 0; margin-top: 0.125rem; }
.ig-form__notice h4 { margin: 0 0 0.25rem; font-size: 0.9rem; color: #f4f4f5; }
.ig-form__notice p { margin: 0 0 1rem; font-size: 0.875rem; color: #a1a1aa; }
.ig-form__success {
    text-align: center; max-width: 32rem; margin: 0 auto;
}
.ig-form__success-icon {
    width: 5rem; height: 5rem;
    border: 1px solid rgba(201,145,42,0.3);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 2rem;
}
.ig-form__success-icon svg { width: 2.5rem; height: 2.5rem; color: #e5ab3a; }

/* ==========================================================================
   Cards / content
   ========================================================================== */
.card {
    background: #18181b;
    border: 1px solid #27272a;
    padding: 1.5rem;
}
.card--hover { transition: background 0.2s ease; }
.card--hover:hover { background: rgba(24,24,27,0.5); }

/* Status badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.625rem;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid;
}
.status-badge--pending   { color: #fbbf24; background: rgba(251,191,36,0.1); border-color: rgba(251,191,36,0.3); }
.status-badge--reviewing { color: #60a5fa; background: rgba(96,165,250,0.1); border-color: rgba(96,165,250,0.3); }
.status-badge--quoted    { color: #22d3ee; background: rgba(34,211,238,0.1); border-color: rgba(34,211,238,0.3); }
.status-badge--approved  { color: #34d399; background: rgba(52,211,153,0.1); border-color: rgba(52,211,153,0.3); }
.status-badge--completed { color: #4ade80; background: rgba(74,222,128,0.1); border-color: rgba(74,222,128,0.3); }
.status-badge--cancelled { color: #71717a; background: rgba(113,113,122,0.1); border-color: rgba(113,113,122,0.3); }

/* ==========================================================================
   Animations
   ========================================================================== */
.animate-fade-in { animation: fadeIn 0.5s ease-in-out; }
.animate-slide-up { animation: slideUp 0.4s ease-out; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* ==========================================================================
   Block editor helpers
   ========================================================================== */
.wp-block-button__link {
    background: #c9912a;
    color: #09090b;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.875rem;
    padding: 0.75rem 2rem;
    border-radius: 0;
}
.wp-block-button__link:hover { background: #e5ab3a; }
.has-gold-color { color: #e5ab3a; }
.has-gold-background-color { background: #c9912a; }
.has-dark-bg-color { color: #09090b; }
.has-dark-bg-background-color { background: #09090b; }
