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

:root {
    --cream: #FFF8F0;
    --warm-brown: #5C3D2E;
    --soft-coral: #E8856C;
    --blush: #F5DDD0;
    --deep: #2C1810;
    --sage: #A8B5A0;
    --gold: #D4A857;
    --light-sage: #EDF2EA;
    --white: #FFFFFF;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--cream);
    color: var(--deep);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(20px);
    background: rgba(255, 248, 240, 0.92);
    border-bottom: 1px solid rgba(92, 61, 46, 0.08);
}

.logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    color: var(--warm-brown);
    letter-spacing: -0.02em;
}

.logo span { color: var(--soft-coral); }

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--warm-brown);
    transition: color 0.2s;
    position: relative;
}

.nav-links a:hover { color: var(--soft-coral); }

.nav-links a.active {
    color: var(--soft-coral);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--soft-coral);
    border-radius: 1px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--warm-brown);
    cursor: pointer;
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 8rem 2rem 3rem;
    text-align: center;
    background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 100%);
}

.page-header .badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--soft-coral);
    background: rgba(232, 133, 108, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.page-header h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--warm-brown);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.page-header h1 em {
    font-style: italic;
    color: var(--soft-coral);
}

.page-header p {
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(44, 24, 16, 0.65);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 4rem 2rem;
}

.section-alt {
    background: var(--light-sage);
}

.section-dark {
    background: var(--warm-brown);
    color: var(--cream);
}

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

.section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--warm-brown);
    margin-bottom: 0.5rem;
}

.section-dark .section-title { color: var(--cream); }

.section-subtitle {
    font-weight: 300;
    color: rgba(44, 24, 16, 0.6);
    line-height: 1.6;
    max-width: 500px;
}

.section-dark .section-subtitle { color: rgba(255, 248, 240, 0.7); }

/* ===== CARD STYLES ===== */
.card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(92, 61, 46, 0.06);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(92, 61, 46, 0.1);
}

.card-image {
    width: 100%;
    aspect-ratio: 1;
    background: var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.card-body {
    padding: 1.2rem;
}

.card-body h3 {
    font-weight: 600;
    font-size: 1rem;
    color: var(--deep);
    margin-bottom: 0.3rem;
}

.card-body p {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(44, 24, 16, 0.6);
    line-height: 1.5;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

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

.btn-primary:hover {
    background: #D6745B;
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(92, 61, 46, 0.08);
    color: var(--warm-brown);
}

.btn-secondary:hover {
    background: rgba(92, 61, 46, 0.14);
}

.btn-outline {
    background: transparent;
    color: var(--warm-brown);
    border: 1.5px solid rgba(92, 61, 46, 0.2);
}

.btn-outline:hover {
    border-color: var(--soft-coral);
    color: var(--soft-coral);
}

/* ===== TAGS / PILLS ===== */
.tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.8rem;
    border-radius: 100px;
    background: rgba(44, 24, 16, 0.06);
    color: var(--warm-brown);
}

.tag-coral {
    background: rgba(232, 133, 108, 0.12);
    color: var(--soft-coral);
}

.tag-sage {
    background: rgba(168, 181, 160, 0.2);
    color: #6B7D63;
}

.tag-gold {
    background: rgba(212, 168, 87, 0.15);
    color: #9A7B3D;
}

/* ===== FILTER BAR ===== */
.filter-bar {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1.5px solid rgba(92, 61, 46, 0.15);
    background: transparent;
    color: var(--warm-brown);
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover {
    border-color: var(--soft-coral);
    color: var(--soft-coral);
}

.filter-btn.active {
    background: var(--soft-coral);
    color: var(--white);
    border-color: var(--soft-coral);
}

/* ===== SEARCH BAR ===== */
.search-bar {
    position: relative;
    max-width: 500px;
    margin-bottom: 2rem;
}

.search-bar input {
    width: 100%;
    padding: 0.9rem 1.2rem 0.9rem 3rem;
    border-radius: 100px;
    border: 1.5px solid rgba(92, 61, 46, 0.15);
    background: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--deep);
    outline: none;
    transition: border-color 0.2s;
}

.search-bar input::placeholder {
    color: rgba(44, 24, 16, 0.35);
}

.search-bar input:focus {
    border-color: var(--soft-coral);
}

.search-bar .search-icon {
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    opacity: 0.4;
}

/* ===== GRID LAYOUTS ===== */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* ===== PRICE ===== */
.price {
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    color: var(--soft-coral);
}

.price-old {
    font-size: 0.85rem;
    color: rgba(44, 24, 16, 0.35);
    text-decoration: line-through;
    font-family: 'Outfit', sans-serif;
    margin-left: 0.4rem;
}

/* ===== ACCORDION ===== */
.accordion-item {
    border-bottom: 1px solid rgba(92, 61, 46, 0.1);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    cursor: pointer;
    user-select: none;
}

.accordion-header h3 {
    font-weight: 600;
    font-size: 1rem;
    color: var(--warm-brown);
}

.accordion-header .icon {
    font-size: 1.2rem;
    color: var(--soft-coral);
    transition: transform 0.3s;
}

.accordion-item.open .accordion-header .icon {
    transform: rotate(45deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.open .accordion-body {
    max-height: 500px;
}

.accordion-body p {
    padding-bottom: 1.2rem;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(44, 24, 16, 0.7);
}

/* ===== INFO CARDS ===== */
.info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(92, 61, 46, 0.06);
}

.info-card .icon-large {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    color: var(--warm-brown);
    margin-bottom: 0.5rem;
}

.info-card p {
    font-weight: 300;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(44, 24, 16, 0.65);
}

/* ===== COLOR SWATCH ===== */
.color-swatch {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: inline-block;
}

/* ===== RESCUE ORG CARD ===== */
.org-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(92, 61, 46, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.org-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(92, 61, 46, 0.08);
}

.org-card .org-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.org-card h3 {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--deep);
    margin-bottom: 0.3rem;
}

.org-card .org-region {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--soft-coral);
    margin-bottom: 0.6rem;
}

.org-card p {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(44, 24, 16, 0.6);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.org-card .org-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--soft-coral);
    transition: gap 0.2s;
}

.org-card .org-link:hover { gap: 0.5rem; }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--deep);
    padding: 3rem 2rem 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand .logo {
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 248, 240, 0.4);
    max-width: 250px;
    line-height: 1.5;
}

.footer-links h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 248, 240, 0.5);
    margin-bottom: 0.8rem;
}

.footer-links a {
    display: block;
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 248, 240, 0.6);
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--soft-coral); }

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 248, 240, 0.08);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 248, 240, 0.3);
    font-weight: 300;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 248, 240, 0.98);
        padding: 1rem 2rem 1.5rem;
        border-bottom: 1px solid rgba(92, 61, 46, 0.08);
        backdrop-filter: blur(20px);
    }
    .mobile-menu-btn { display: block; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .page-header { padding: 7rem 1.5rem 2.5rem; }
    .section { padding: 3rem 1.5rem; }
    .footer-inner { flex-direction: column; }
    .filter-bar { gap: 0.4rem; }
    .filter-btn { font-size: 0.78rem; padding: 0.4rem 0.9rem; }
}

@media (max-width: 480px) {
    .grid-4 { grid-template-columns: 1fr; }
    nav { padding: 0.8rem 1.2rem; }
    .logo { font-size: 1.3rem; }
}
