/* ================================================
   Wedding Arrange - Luxury Wedding Portal CSS
   Theme: Gold, White, Ivory, Rose Gold
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600&family=Great+Vibes&display=swap');

:root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dark: #9E7A2A;
    --gold-pale: #F5EDD3;
    --rose-gold: #B76E79;
    --rose-light: #F4D0D4;
    --ivory: #FDFAF4;
    --cream: #F8F4EC;
    --white: #FFFFFF;
    --dark: #1A1208;
    --dark-soft: #2D2010;
    --text: #3D2B1F;
    --text-muted: #7D6E5A;
    --border: #E8DCCB;
    --shadow: rgba(201, 168, 76, 0.15);
    --shadow-dark: rgba(26, 18, 8, 0.12);

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-script: 'Great Vibes', cursive;
    --font-body: 'Jost', sans-serif;

    --radius: 4px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1280px;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--ivory);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
input, textarea, select { font-family: var(--font-body); }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--dark);
    line-height: 1.25;
}

.script-text {
    font-family: var(--font-script);
    color: var(--gold);
    font-size: 1.4em;
}

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

.section-title .script-text {
    display: block;
    font-size: 2rem;
    margin-bottom: 4px;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-title p {
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 16px 0;
}

.title-divider::before, .title-divider::after {
    content: '';
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.title-divider::after {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.title-divider span {
    color: var(--gold);
    font-size: 1.2rem;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    color: var(--white);
    box-shadow: 0 4px 20px var(--shadow);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}

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

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

.btn-dark:hover {
    background: var(--dark-soft);
    transform: translateY(-2px);
}

.btn-sm { padding: 10px 22px; font-size: 0.82rem; }
.btn-lg { padding: 18px 42px; font-size: 0.95rem; }

/* ── Gold Decorative Elements ── */
.gold-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold));
    margin: 0 auto 16px;
}

.ornament {
    display: inline-block;
    color: var(--gold);
    opacity: 0.6;
    font-size: 1.4rem;
    margin: 0 12px;
}

/* ── Header & Navigation ── */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(253, 250, 244, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px var(--shadow-dark);
    border-bottom: 1px solid var(--border);
}

.header-top {
    background: var(--dark);
    padding: 8px 0;
    font-size: 0.8rem;
    color: var(--gold-pale);
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top a { color: var(--gold-pale); }
.header-top a:hover { color: var(--gold-light); }

.header-main {
    padding: 18px 0;
    background: rgba(253, 250, 244, 0.95);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

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

.logo-text span:first-child {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.logo-text span:last-child {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text);
    position: relative;
    text-transform: uppercase;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a:hover, .nav-links a.active { color: var(--gold-dark); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

/* ── Hero Section ── */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a0e05 0%, #2d1a0e 40%, #1a0e05 100%);
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26,14,5,0.85) 0%, rgba(26,14,5,0.5) 60%, rgba(26,14,5,0.3) 100%);
}

.hero-image {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1600&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 120px 0 80px;
    animation: fadeInUp 1s ease forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold-light);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.1;
}

.hero h1 .script {
    display: block;
    font-family: var(--font-script);
    font-weight: 400;
    color: var(--gold-light);
    font-size: 1.1em;
    margin-bottom: -10px;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-outline {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.5);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
    color: var(--white);
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.hero-stat span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ── Search Section ── */
.search-section {
    background: var(--white);
    padding: 32px 0;
    box-shadow: 0 4px 30px var(--shadow-dark);
    position: relative;
    z-index: 10;
}

.search-box {
    background: var(--cream);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.search-box:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.12);
}

.search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-right: 1px solid var(--border);
}

.search-field:last-of-type { border-right: none; }

.search-field .icon {
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.search-field select,
.search-field input {
    border: none;
    background: transparent;
    font-size: 0.95rem;
    color: var(--text);
    width: 100%;
    outline: none;
}

.search-field select option { color: var(--text); }

/* ── Categories Grid ── */
.categories-section {
    padding: 90px 0;
    background: var(--ivory);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.category-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold));
    transform: scaleX(0);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px var(--shadow);
    border-color: var(--gold-light);
}

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

.category-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
    display: block;
}

.category-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.category-card span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── Featured Vendors ── */
.vendors-section {
    padding: 90px 0;
    background: var(--cream);
}

.vendors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.vendor-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-dark);
    transition: var(--transition);
    position: relative;
}

.vendor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26, 18, 8, 0.15);
}

.vendor-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.vendor-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vendor-card:hover .vendor-card-image img {
    transform: scale(1.06);
}

.vendor-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-featured {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--white);
}

.badge-verified {
    background: rgba(255,255,255,0.92);
    color: #2d7a4f;
    border: 1px solid #2d7a4f;
}

.badge-premium {
    background: rgba(183, 110, 121, 0.9);
    color: var(--white);
}

.vendor-fav {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.vendor-fav:hover { background: var(--white); transform: scale(1.1); }

.vendor-category-tag {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(26,18,8,0.75);
    backdrop-filter: blur(8px);
    color: var(--gold-light);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.vendor-card-body {
    padding: 20px;
}

.vendor-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.vendor-logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--border);
}

.vendor-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vendor-logo-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gold-pale), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.vendor-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}

.vendor-location {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.vendor-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 1px; }
.rating-num { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.review-count { font-size: 0.8rem; color: var(--text-muted); }

.vendor-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vendor-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.vendor-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-dark);
}

.vendor-price small {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 400;
    display: block;
}

/* ── Why Choose Us ── */
.why-section {
    padding: 90px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(183,110,121,0.06) 0%, transparent 60%);
}

.why-section .section-title h2,
.why-section .section-title .script-text { color: var(--white); }
.why-section .section-title p { color: rgba(255,255,255,0.6); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    position: relative;
}

.why-card {
    text-align: center;
    padding: 40px 24px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.03);
    transition: var(--transition);
}

.why-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    background: rgba(201, 168, 76, 0.05);
    transform: translateY(-4px);
}

.why-icon {
    font-size: 2.8rem;
    margin-bottom: 16px;
    display: block;
}

.why-card h3 {
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}

/* ── Testimonials ── */
.testimonials-section {
    padding: 90px 0;
    background: var(--ivory);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: 0 4px 20px var(--shadow-dark);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--gold-pale);
    line-height: 1;
}

.testimonial-rating {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-pale), var(--rose-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    border: 2px solid var(--gold-light);
}

.author-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--dark);
}

.author-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── CTA Banner ── */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.04'%3E%3Cpath d='M40 0L0 40l40 40 40-40z'/%3E%3C/g%3E%3C/svg%3E");
}

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

.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin-bottom: 36px;
    position: relative;
}

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

.btn-cta-white {
    background: var(--white);
    color: var(--gold-dark);
    font-weight: 700;
}

.btn-cta-white:hover {
    background: var(--ivory);
    transform: translateY(-2px);
    color: var(--gold-dark);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-cta-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.6);
    color: var(--white);
}

.btn-cta-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
    color: var(--white);
}

/* ── Footer ── */
footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
}

.footer-main {
    padding: 70px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-text span:first-child { color: var(--white); }

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.55);
}

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

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    color: rgba(255,255,255,0.7);
}

.social-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    align-items: flex-start;
}

.footer-contact-item .icon {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 1rem;
}

.footer-newsletter input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 0.88rem;
    margin-bottom: 10px;
    outline: none;
    font-family: var(--font-body);
    transition: var(--transition);
}

.footer-newsletter input:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.1);
}

.footer-newsletter input::placeholder { color: rgba(255,255,255,0.3); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

.footer-bottom a { color: var(--gold-light); }

/* ── Forms & Inputs ── */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.form-label .required { color: var(--rose-gold); }

.form-control {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.form-control::placeholder { color: #B8A89A; }

textarea.form-control { resize: vertical; min-height: 120px; }

select.form-control { cursor: pointer; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ── Auth Pages ── */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.auth-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.1) 0%, transparent 60%);
}

.auth-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px 44px;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.auth-logo {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo .logo-icon {
    width: 56px;
    height: 56px;
    font-size: 1.8rem;
    margin: 0 auto 12px;
}

.auth-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 8px;
}

.auth-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

/* ── Dashboard ── */
.dashboard-layout {
    display: flex;
    min-height: 100vh;
    background: var(--cream);
}

.sidebar {
    width: 270px;
    background: var(--dark);
    flex-shrink: 0;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: 100;
    transition: var(--transition);
}

.sidebar-header {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sidebar-nav {
    padding: 16px 12px;
}

.sidebar-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 4px;
    text-decoration: none;
}

.sidebar-nav-item:hover {
    background: rgba(255,255,255,0.07);
    color: var(--white);
}

.sidebar-nav-item.active {
    background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.1));
    color: var(--gold-light);
    border-left: 3px solid var(--gold);
}

.sidebar-nav-item .icon { font-size: 1.1rem; width: 20px; flex-shrink: 0; }

.sidebar-section-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.25);
    padding: 16px 16px 8px;
}

.dashboard-main {
    flex: 1;
    margin-left: 270px;
    padding: 32px;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.dashboard-header h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

.stat-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 2px 12px var(--shadow-dark);
    display: flex;
    align-items: center;
    gap: 16px;
    border-left: 4px solid var(--gold);
    transition: var(--transition);
}

.stat-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px var(--shadow); }

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-info strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-info span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ── Alerts & Messages ── */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 0.9rem;
    border-left: 4px solid;
}

.alert-success { background: #f0faf4; border-color: #2d7a4f; color: #1d5c38; }
.alert-error { background: #fdf2f2; border-color: #e53e3e; color: #c53030; }
.alert-warning { background: #fffbeb; border-color: var(--gold); color: var(--gold-dark); }
.alert-info { background: var(--gold-pale); border-color: var(--gold); color: var(--gold-dark); }

/* ── Tables ── */
.table-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 12px var(--shadow-dark);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.data-table th {
    background: var(--cream);
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.data-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--cream); }

/* ── Status Badges ── */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.status-active { background: #e8f8f0; color: #1e7a40; }
.status-pending { background: #fff8e6; color: #8a6000; }
.status-inactive { background: #f2f2f2; color: #666; }
.status-new { background: var(--gold-pale); color: var(--gold-dark); }
.status-suspended { background: #fdf2f2; color: #c53030; }

/* ── Listings Page ── */
.listings-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    padding: 40px 0;
}

.filters-sidebar {
    position: sticky;
    top: 110px;
    height: fit-content;
}

.filter-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px var(--shadow-dark);
}

.filter-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text);
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
    accent-color: var(--gold);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* ── Vendor Profile Page ── */
.vendor-profile-hero {
    background: var(--dark);
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}

.vendor-cover {
    height: 320px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.vendor-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
}

.vendor-profile-info {
    position: relative;
    padding: 0 0 40px;
    display: flex;
    align-items: flex-end;
    gap: 28px;
}

.vendor-profile-logo {
    width: 110px;
    height: 110px;
    border-radius: 16px;
    border: 4px solid var(--white);
    overflow: hidden;
    margin-top: -55px;
    flex-shrink: 0;
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

/* ── Pagination ── */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.page-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--text);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.page-btn:hover { border-color: var(--gold); color: var(--gold); }
.page-btn.active { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ── Loading & Overlays ── */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader-ring {
    width: 50px;
    height: 50px;
    border: 3px solid var(--gold-pale);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ── Mobile Nav ── */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav.open { opacity: 1; visibility: visible; }

.mobile-nav-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    background: var(--white);
    padding: 24px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
}

.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }

.mobile-nav-links { margin-top: 32px; }
.mobile-nav-links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
}

.mobile-nav-links a:hover { color: var(--gold); }

/* ── Animations ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.animate-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Utility Classes ── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.mt-0 { margin-top: 0; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-16 { gap: 16px; }
.w-100 { width: 100%; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .listings-layout { grid-template-columns: 1fr; }
    .filters-sidebar { position: static; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions .btn { display: none; }
    .hamburger { display: flex; }
    .header-top { display: none; }

    .hero h1 { font-size: 2.4rem; }
    .hero-stats { gap: 24px; }
    .hero-stat strong { font-size: 1.8rem; }

    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .vendors-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    .form-row { grid-template-columns: 1fr; }
    .auth-card { padding: 32px 24px; }
    .dashboard-main { margin-left: 0; padding: 20px; }
    .sidebar { transform: translateX(-100%); }
    .sidebar.open { transform: translateX(0); }

    .why-grid { grid-template-columns: 1fr 1fr; }
    .cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { flex-direction: column; gap: 16px; }
    .hero-btns { flex-direction: column; }
    .why-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .stat-cards { grid-template-columns: 1fr 1fr; }
}
