*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #faf7f4;
    --rose: #e8a5a5;
    --blush: #f2d9d9;
    --charcoal: #2a2320;
    --muted: #8a7e7a;
    --accent: #c9705e;
    --white: #ffffff;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(250, 247, 244, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 180, 170, 0.2);
    transition: all 0.3s;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--charcoal);
}

.logo-text span {
    color: var(--accent);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.collection-btn {
    background: var(--charcoal);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.collection-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 112, 94, 0.3);
}

.nav-right-tools {
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: 15px;
}

.save-link {
    position: relative;
    color: var(--charcoal);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform 0.2s;
}

.save-link:hover {
    transform: scale(1.1);
    color: var(--accent);
}

.save-link svg {
    width: 22px;
    height: 22px;
}

#save-counter {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--accent);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--cream);
}

.profile-avatar-nav {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--charcoal);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    transition: all 0.2s;
    overflow: hidden;
}

.profile-avatar-nav:hover {
    background: var(--accent);
    transform: scale(1.05);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--charcoal);
    cursor: pointer;
    padding: 5px;
}

@media (max-width: 768px) {
    nav {
        padding: 12px 16px;
    }

    .logo-text {
        display: none;
    }

    .collection-btn {
        padding: 8px 12px;
    }

    .collection-btn span {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mobile-toggle {
        display: block;
    }
}

.breadcrumb {
    font-size: 0.8rem;
    color: var(--muted);
    margin-left: 20px;
}

.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--accent);
}

/* HEADER */
.page-header {
    padding: 72px 48px 48px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}



.eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 10px;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
}

.page-title em {
    font-style: italic;
    color: var(--accent);
}

.page-sub {
    color: var(--muted);
    margin-top: 10px;
    font-size: 0.95rem;
}

.filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1.5px solid rgba(200, 180, 170, 0.5);
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.04em;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
}

/* PINTEREST MASONRY GRID */
.grid-wrap {
    padding: 0 32px 80px;
    max-width: 1300px;
    margin: 0 auto;
}

.masonry {
    columns: 4;
    column-gap: 14px;
}

@media (max-width: 1100px) {
    .masonry {
        columns: 4;
    }
}

@media (max-width: 800px) {
    .masonry {
        columns: 3;
    }
}

@media (max-width: 540px) {
    .masonry {
        columns: 2;
    }
}

.pin {
    break-inside: avoid;
    margin-bottom: 14px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    display: block;
    text-decoration: none;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeIn 0.5s both;
}

.pin:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14);
}

.pin img {
    width: 100%;
    display: block;
    border-radius: 16px 16px 0 0;
}

.pin-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42, 35, 32, 0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 16px;
}

.pin:hover .pin-overlay {
    opacity: 1;
}

.pin-save {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s;
}

.pin:hover .pin-save {
    opacity: 1;
}

.pin-meta {
    padding: 12px 14px 14px;
    background: var(--white);
    border-radius: 0 0 16px 16px;
}

.pin-title {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pin-tag {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.68rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pin-price {
    float: right;
    margin-top: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #2a7a4f;
    background: #e8f5ee;
    padding: 2px 8px;
    border-radius: 50px;
}

/* SECTION DIVIDER */
.section-sep {
    max-width: 1300px;
    margin: 0 auto 28px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-sep h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    white-space: nowrap;
}

.sep-line {
    flex: 1;
    height: 1px;
    background: rgba(200, 180, 170, 0.35);
}

footer {
    text-align: center;
    padding: 40px 24px;
    border-top: 1px solid rgba(200, 180, 170, 0.25);
    color: var(--muted);
    font-size: 0.82rem;
}

footer strong {
    font-family: 'Playfair Display', serif;
    color: var(--charcoal);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    nav {
        padding: 14px 20px;
    }

    .page-header {
        padding: 40px 20px 32px;
    }

    .grid-wrap {
        padding: 0 12px 60px;
    }
}
















*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #faf7f4;
    --blush: #f7eded;
    --rose: #e8a5a5;
    --charcoal: #2a2320;
    --muted: #8a7e7a;
    --accent: #c9705e;
    --soft-pink: #f2cece;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
}

/* NAV */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 18px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(250, 247, 244, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 180, 170, 0.2);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--charcoal);
}

.logo span {
    color: var(--accent);
    font-style: italic;
}

.breadcrumb {
    font-size: 0.78rem;
    color: var(--muted);
}

.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span {
    margin: 0 6px;
}

/* HERO SECTION */
.outfit-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 48px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

@media (max-width: 768px) {
    .outfit-hero {
        grid-template-columns: 1fr;
        padding: 32px 20px 0;
        gap: 32px;
    }

    nav {
        padding: 14px 20px;
    }
}

.main-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
    position: relative;
}

.main-img img {
    width: 100%;
    display: block;
    aspect-ratio: 3/5;
    object-fit: cover;
}

.main-img-badge {
    position: relative;
    top: 18px;
    left: 18px;
    background: rgba(250, 247, 244, 0.9);
    backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
}

.save-outfit-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    color: var(--charcoal);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20;
    padding: 0;
    /* Reset for hero button */
}

.save-outfit-btn:hover {
    transform: translateY(-2px) scale(1.05);
    background: var(--white);
    color: var(--accent);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.save-outfit-btn svg {
    width: 18px;
    height: 18px;
}

.save-outfit-btn.active {
    color: var(--accent);
    background: var(--white);
}

.save-outfit-btn.active svg {
    fill: var(--accent);
}

/* Action Row Specific override for small/clean look */
.action-row .save-outfit-btn {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    height: unset;
    border-radius: 50px;
    padding: 10px 24px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(42, 35, 32, 0.1);
}

.thumb-row {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.thumb {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s, transform 0.2s;
}

.thumb.active,
.thumb:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.thumb img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
}

/* RIGHT - info */
.outfit-info {
    padding-top: 8px;
}

.tag-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tag {
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tag-pink {
    background: var(--soft-pink);
    color: #b5545e;
}

.tag-rose {
    background: #fde8e0;
    color: var(--accent);
}

.tag-mint {
    background: #e0f0e8;
    color: #4a8a62;
}

.outfit-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

.outfit-title em {
    font-style: italic;
    color: var(--accent);
}

.outfit-desc {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 32px;
}

/* ITEMS LIST */
.items-heading {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 16px;
}

.items-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.item-card {
    background: var(--white);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.item-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.save-item-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(42, 35, 32, 0.1);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.save-item-btn:hover {
    border-color: var(--rose);
    color: var(--accent);
    transform: scale(1.1);
}

.save-item-btn.active {
    background: var(--blush);
    border-color: var(--rose);
    color: var(--accent);
}

.save-item-btn svg {
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.btn-visit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: var(--charcoal);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-visit:hover {
    background: var(--accent);
    padding-right: 28px;
}

.btn-visit svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.btn-visit:hover svg {
    transform: translateX(4px);
}

.item-img-wrap {
    width: 56px;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--blush);
}

.item-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.item-name {
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--charcoal);
}

.item-type {
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 3px;
}

/* TIPS BOX */
.tips-box {
    background: linear-gradient(135deg, var(--soft-pink) 0%, #fde8f4 100%);
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 32px;
}

.tips-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-bottom: 12px;
    color: #b5545e;
}

.tips-box ul {
    list-style: none;
}

.tips-box li {
    font-size: 0.85rem;
    color: #8a4e52;
    padding: 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.tips-box li::before {
    content: '💗';
    font-size: 0.75rem;
    margin-top: 2px;
}

/* ACTIONS */
.action-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--charcoal);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    padding: 14px 28px;
    border-radius: 50px;
    border: 1.5px solid rgba(42, 35, 32, 0.2);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* MORE LOOKS */
.more-section {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 0 48px 80px;
}

.more-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.more-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    white-space: nowrap;
}

.sep {
    flex: 1;
    height: 1px;
    background: rgba(200, 180, 170, 0.35);
}

.more-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media (max-width: 900px) {
    .more-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .more-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .more-section {
        padding: 0 20px 60px;
    }
}

.more-pin {
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}

.more-pin:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.13);
}

.more-pin img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}

.more-pin-meta {
    padding: 10px 12px 12px;
    background: var(--white);
}

.more-pin-title {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.35;
}

.more-pin-tag {
    font-size: 0.67rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-top: 4px;
    display: block;
}

footer {
    text-align: center;
    padding: 40px 24px;
    border-top: 1px solid rgba(200, 180, 170, 0.25);
    color: var(--muted);
    font-size: 0.82rem;
}

footer strong {
    font-family: 'Playfair Display', serif;
    color: var(--charcoal);
}

/* MORE LOOKS MASONRY */
.more-masonry {
    columns: 4;
    column-gap: 16px;
    margin-top: 32px;
}

.more-pin {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: block;
    text-decoration: none;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}

.more-pin:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14);
}

.more-pin img {
    width: 100%;
    display: block;
    border-radius: 16px 16px 0 0;
}

.more-pin-meta {
    padding: 10px 12px 12px;
    background: var(--white);
}

.more-pin-title {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.35;
}

.more-pin-tag {
    font-size: 0.67rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-top: 4px;
    display: block;
}

@media (max-width: 1100px) {
    .more-masonry {
        columns: 3;
    }
}

@media (max-width: 800px) {
    .more-masonry {
        columns: 2;
    }
}

@media (max-width: 540px) {
    .masonry {
        columns: 2;
    }
}

/* SHARE MODAL SYSTEM */
.share-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(42, 35, 32, 0.4);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.share-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.share-modal {
    background: white;
    width: 90%;
    max-width: 420px;
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.share-modal-overlay.active .share-modal {
    transform: translateY(0);
}

.share-modal h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.share-modal p {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 32px;
    line-height: 1.5;
}

.share-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.share-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: #fdfaf8;
    border: 1.5px solid rgba(200, 180, 170, 0.15);
    border-radius: 24px;
    padding: 24px 10px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: inherit;
}

.share-btn:hover {
    background: #fff;
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(201, 112, 94, 0.12);
}

.share-btn:active {
    transform: translateY(-1px);
}

.share-btn svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.share-close {
    position: absolute;
    top: 24px;
    right: 24px;
    border: none;
    background: rgba(42, 35, 32, 0.05);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--muted);
    transition: all 0.2s;
}

.share-close:hover {
    background: rgba(42, 35, 32, 0.1);
    color: var(--charcoal);
    transform: rotate(90deg);
}

.share-btn.btn-success {
    border-color: #2a7a4f;
    color: #2a7a4f;
}

.share-btn.btn-success svg {
    color: #2a7a4f;
}

/* EXPORT PROGRESS */
.export-progress-overlay {
    position: fixed;
    inset: 0;
    background: rgba(42, 35, 32, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'DM Sans', sans-serif;
    flex-direction: column;
    gap: 24px;
}

.loader {
    width: 56px;
    height: 56px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-bottom-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

/* ── ADVANCED FILTER UI ── */
.filter-controls {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 24px;
}

.search-bar-wrap {
    position: relative;
    background: #f2f2f2;
    border-radius: 50px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 300px;
    height: 48px;
    transition: all 0.3s;
    border: 1.5px solid transparent;
}

.search-bar-wrap:focus-within {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    width: 350px;
}

.search-bar-wrap input {
    border: none;
    background: none;
    outline: none;
    font-family: inherit;
    font-size: 0.9rem;
    width: 100%;
}

.btn-refine {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 48px;
    padding: 0 24px;
    border-radius: 50px;
    background: var(--charcoal);
    color: white;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background 0.3s, transform 0.2s;
    font-size: 0.85rem;
}

.btn-refine:hover {
    background: #4a3530;
    transform: translateY(-2px);
}

/* DRAWER STYLES */
.filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 5000;
    display: none;
}

.filter-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: white;
    z-index: 6000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.filter-drawer.open {
    right: 0;
}

.drawer-header {
    padding: 32px;
    border-bottom: 1px solid #f2f2f2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: var(--muted);
}

.drawer-content {
    padding: 32px;
    flex: 1;
    overflow-y: auto;
}

.filter-group {
    margin-bottom: 32px;
}

.filter-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 16px;
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid #eee;
    background: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.chip:hover {
    border-color: var(--charcoal);
}

.chip.active {
    background: var(--charcoal);
    color: white;
    border-color: var(--charcoal);
}

.drawer-footer {
    padding: 32px;
    border-top: 1px solid #f2f2f2;
}

.btn-apply {
    width: 100%;
    padding: 18px;
    border-radius: 12px;
    background: var(--charcoal);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

@media (max-width: 480px) {
    .filter-drawer {
        width: 100%;
        right: -100%;
    }

    .page-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-bar-wrap {
        width: 100%;
    }

    .btn-refine {
        width: 100%;
        justify-content: center;
    }

    .filter-controls {
        width: 100%;
        flex-direction: column;
    }
}


*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #faf7f4;
    --blush: #f7eded;
    --rose: #e8a5a5;
    --charcoal: #2a2320;
    --muted: #8a7e7a;
    --accent: #c9705e;
    --soft-pink: #f2cece;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
}

/* NAV */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 18px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(250, 247, 244, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 180, 170, 0.2);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--charcoal);
}

.logo span {
    color: var(--accent);
    font-style: italic;
}

.breadcrumb {
    font-size: 0.78rem;
    color: var(--muted);
}

.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span {
    margin: 0 6px;
}

/* HERO SECTION */
.outfit-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 48px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

@media (max-width: 768px) {
    .outfit-hero {
        grid-template-columns: 1fr;
        padding: 32px 20px 0;
        gap: 32px;
    }

    nav {
        padding: 14px 20px;
    }
}


.thumb-row {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.thumb {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s, transform 0.2s;
}

.thumb.active,
.thumb:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.thumb img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
}

/* RIGHT - info */
.outfit-info {
    padding-top: 8px;
}

.tag-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tag {
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tag-pink {
    background: var(--soft-pink);
    color: #b5545e;
}

.tag-rose {
    background: #fde8e0;
    color: var(--accent);
}

.tag-mint {
    background: #e0f0e8;
    color: #4a8a62;
}

.outfit-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

.outfit-title em {
    font-style: italic;
    color: var(--accent);
}

.outfit-desc {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 32px;
}

/* ITEMS LIST */
.items-heading {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 16px;
}

.items-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.item-card {
    background: var(--white);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}


.btn-visit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: var(--charcoal);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
}

.btn-visit:hover {
    background: var(--accent);
    padding-right: 28px;
}

.btn-visit svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.btn-visit:hover svg {
    transform: translateX(4px);
}

.item-name {
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--charcoal);
}

.item-type {
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 3px;
}

/* TIPS BOX */
.tips-box {
    background: linear-gradient(135deg, var(--soft-pink) 0%, #fde8f4 100%);
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 32px;
}

.tips-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-bottom: 12px;
    color: #b5545e;
}

.tips-box ul {
    list-style: none;
}

.tips-box li {
    font-size: 0.85rem;
    color: #8a4e52;
    padding: 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}


.btn-outline {
    background: transparent;
    color: var(--charcoal);
    padding: 14px 28px;
    border-radius: 50px;
    border: 1.5px solid rgba(42, 35, 32, 0.2);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* MORE LOOKS */
.more-section {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 0 48px 80px;
}

.more-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.more-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    white-space: nowrap;
}

.sep {
    flex: 1;
    height: 1px;
    background: rgba(200, 180, 170, 0.35);
}

.more-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media (max-width: 900px) {
    .more-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .more-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .more-section {
        padding: 0 20px 60px;
    }
}

.more-pin {
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}

.more-pin:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.13);
}

.more-pin img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}

.more-pin-meta {
    padding: 10px 12px 12px;
    background: var(--white);
}

.more-pin-title {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.35;
}

.more-pin-tag {
    font-size: 0.67rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-top: 4px;
    display: block;
}

footer {
    text-align: center;
    padding: 40px 24px;
    border-top: 1px solid rgba(200, 180, 170, 0.25);
    color: var(--muted);
    font-size: 0.82rem;
}

footer strong {
    font-family: 'Playfair Display', serif;
    color: var(--charcoal);
}

/* MORE LOOKS MASONRY */
.more-masonry {
    columns: 4;
    column-gap: 16px;
    margin-top: 32px;
}

.more-pin {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: block;
    text-decoration: none;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}

.more-pin:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14);
}

.more-pin img {
    width: 100%;
    display: block;
    border-radius: 16px 16px 0 0;
}

.more-pin-meta {
    padding: 10px 12px 12px;
    background: var(--white);
}

.more-pin-title {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.35;
}

.more-pin-tag {
    font-size: 0.67rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-top: 4px;
    display: block;
}

@media (max-width: 1100px) {
    .more-masonry {
        columns: 3;
    }
}

@media (max-width: 800px) {
    .more-masonry {
        columns: 2;
    }
}

@media (max-width: 540px) {
    .more-masonry {
        columns: 2;
    }
}