:root {
    --primary-bg: #FFF9F5;
    --secondary-bg: #FFF5EB;
    --card-bg: #FFFFFF;
    --accent-gold: #D4AF37;
    --accent-rose: #E8B4B8;
    --text-primary: #2C1810;
    --text-secondary: #6B5B4F;
    --border-color: #E8DDD0;
    --shadow: rgba(212, 175, 55, 0.15);
    --header-height: 70px;
}

[data-theme="dark"] {
    --primary-bg: #0A0A0A;
    --secondary-bg: #1A1A1A;
    --card-bg: #252525;
    --accent-gold: #FFD700;
    --accent-rose: #FFC0CB;
    --text-primary: #FFFFFF;
    --text-secondary: #D4AF37;
    --border-color: #3A3A3A;
    --shadow: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: var(--header-height);
    transition: background 0.4s ease, color 0.4s ease;
}

/* Reduced Header Height */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0 !important;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px var(--shadow);
    transition: 0.3s;
    height: var(--header-height);
    display: flex;
    align-items: center;
    margin-top: 0 !important;
}

[data-theme="dark"] .header {
    background: rgba(10, 10, 10, 0.95);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0.6rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* ===== Active Menu ===== */
.nav-links a.active {
    color: var(--accent-gold);
    position: relative;
    font-weight: 600;
}

/* underline animation */
.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 2px;
}


/* Desktop: logo left, nav centered, actions right */
@media (min-width: 1061px) {
    .nav-container {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 1rem;
        align-items: center;
    }

    .nav-links {
        justify-content: center;
        justify-self: center;
    }
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    white-space: nowrap;
}

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

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

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

.nav-actions {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    justify-content: flex-end;
}

.icon-btn {
    background: transparent;
    border: 2px solid var(--accent-gold);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.icon-btn:hover {
    background: var(--accent-gold);
    color: white;
    transform: scale(1.1);
}

.btn-login {
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-icon span {
    width: 25px;
    height: 2.5px;
    background: var(--accent-gold);
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section with Video Background */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(212, 175, 55, 0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1000px;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: 5.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.4s both;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-primary {
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    padding: 1.2rem 3rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: var(--accent-gold);
    transform: translateY(-5px);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Featured Highlights Section */
.highlights {
    padding: 6rem 2rem;
    background: var(--secondary-bg);
}

.highlights-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.highlight-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--card-bg);
    border-radius: 25px;
    box-shadow: 0 10px 40px var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.highlight-card:hover::before {
    left: 100%;
}

.highlight-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px var(--shadow);
}

.highlight-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s ease infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.highlight-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.highlight-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Parallax Image Section */
.parallax-section {
    height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('https://images.pexels.com/photos/8088972/pexels-photo-8088972.jpeg?auto=compress&cs=tinysrgb&w=1600');
    background-size: cover;
    background-position: center;
    transform: translateZ(0);
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.parallax-content h2 {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.parallax-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Timeline Story Section */
.timeline {
    padding: 6rem 2rem;
    background: var(--primary-bg);
}

.section-title {
    padding-top: 0px;
    text-align: center;
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;

}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-rose));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    padding: 2.5rem;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 30px;
    width: 24px;
    height: 24px;
    background: var(--accent-gold);
    border: 5px solid var(--card-bg);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px var(--accent-gold);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 4px var(--accent-gold);
    }

    50% {
        box-shadow: 0 0 0 8px var(--accent-gold);
    }
}

.timeline-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.timeline-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.timeline-text {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Instagram Gallery */
.instagram-gallery {
    padding: 6rem 2rem;
    background: var(--secondary-bg);
}

.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(232, 180, 184, 0.9));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Newsletter CTA */
.newsletter {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
    text-align: center;
}

.newsletter h2 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    color: white;
    margin-bottom: 1rem;
}

.newsletter p {
    font-size: 1.3rem;
    color: white;
    opacity: 0.95;
    margin-bottom: 3rem;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 1.2rem 2rem;
    border: 2px solid white;
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

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

.newsletter-btn {
    padding: 1.2rem 3rem;
    background: white;
    color: var(--accent-gold);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: var(--secondary-bg);
    padding: 3rem 2rem 1.5rem;
    text-align: center;
    border-top: 3px solid var(--accent-gold);
}

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

.footer-logo {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.footer-text {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--accent-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px);
    background: var(--accent-rose);
}

.copyright {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    z-index: 9998;
    animation: pulse-whatsapp 2s ease-in-out infinite;
    text-decoration: none;
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .header {
        padding: 0;
    }

    .nav-container {
        padding: 0.8rem 2rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

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

    .timeline-line {
        left: 2rem;
        transform: none;
    }

    .timeline-item {
        flex-direction: column !important;
        padding-left: 4rem;
        margin-bottom: 3rem;
    }

    .timeline-item:nth-child(even) {
        flex-direction: column !important;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-dot {
        left: 2rem;
        transform: translateX(-50%);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1060px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--card-bg);
        flex-direction: column;
        padding: 2rem;
        box-shadow: none;
        transition: left 0.4s ease;
        overflow-y: auto;
        align-items: center;
        text-align: center;
    }

    [dir="rtl"] .nav-links {
        right: -100%;
        left: auto;
    }

    .nav-links.active {
        left: 0;
    }

    [dir="rtl"] .nav-links.active {
        right: 0;
    }

    .menu-icon {
        display: flex;
    }

    .menu-icon.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .menu-icon.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-icon.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .parallax-content h2 {
        font-size: 2.5rem;
    }

    .newsletter h2 {
        font-size: 2.5rem;
    }

    .newsletter-form {
        flex-direction: column;
        padding: 0 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.6rem 1rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .highlights {
        padding: 4rem 1rem;
    }

    .timeline {
        padding: 4rem 1rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Featured Collections Section */
.featured-collections {
    padding: 6rem 2rem;
    background: var(--primary-bg);
}

.collections-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.collection-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.4s ease;
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.collection-card:hover img {
    transform: scale(1.1);
}

.collection-card:hover {
    transform: translateY(-10px);
}

.collection-title {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.collection-link {
    display: inline-block;
    color: var(--accent-gold);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.collection-card:hover .collection-link {
    opacity: 1;
    transform: translateY(0);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 2rem;
    background: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-quote {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.testimonial-text {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
}

.author-info h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Footer Styles */
.footer-enhanced {
    background: var(--secondary-bg);
    border-top: 3px solid var(--accent-gold);
    margin-top: 4rem;
}

.footer-main {
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

/* About Section */
.footer-logo-section {
    margin-bottom: 1.5rem;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.footer-about {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Footer Sections */
.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.footer-links a:hover::before {
    opacity: 1;
}

/* Newsletter */
.newsletter-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.newsletter-form {
    margin-bottom: 1rem;
}

.newsletter-input-wrapper {
    display: flex;
    gap: 0.5rem;
    position: relative;
}

.newsletter-input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: var(--card-bg);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.newsletter-btn {
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--shadow);
}

.newsletter-btn .mobile-text {
    display: none;
}

/* Social Media */
.social-section {
    margin-top: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
    border-color: var(--accent-gold);
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 20px var(--shadow);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.03);
    border-top: 1px solid var(--border-color);
    padding: 2rem;
}

[data-theme="dark"] .footer-bottom {
    background: rgba(255, 255, 255, 0.03);
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-gold);
}

.separator {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem 2rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-main {
        padding: 3rem 1.5rem 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-section {
        text-align: left;
    }

    .newsletter-input-wrapper {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
        padding: 1rem;
    }

    .newsletter-btn .desktop-text {
        display: inline;
    }

    .newsletter-btn .mobile-text {
        display: none;
    }

    .social-links {
        justify-content: flex-start;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 2rem 1rem 1.5rem;
    }

    .footer-brand {
        font-size: 1.7rem;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .footer-about,
    .newsletter-text,
    .footer-links a {
        font-size: 0.9rem;
    }

    .contact-item {
        font-size: 0.85rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .footer-bottom {
        padding: 1.5rem 1rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.8rem;
    }

    .separator {
        display: none;
    }

    .copyright {
        font-size: 0.85rem;
    }
}

/* RTL Support */
[dir="rtl"] .footer-links a {
    padding-left: 0;
    padding-right: 15px;
}

[dir="rtl"] .footer-links a::before {
    left: auto;
    right: 0;
    content: '←';
}

[dir="rtl"] .footer-links a:hover {
    padding-left: 0;
    padding-right: 20px;
}

[dir="rtl"] .contact-item {
    flex-direction: row-reverse;
}

:root {
    --primary-bg: #FFF9F5;
    --secondary-bg: #FFF5EB;
    --card-bg: #FFFFFF;
    --accent-gold: #D4AF37;
    --accent-rose: #E8B4B8;
    --text-primary: #2C1810;
    --text-secondary: #6B5B4F;
    --border-color: #E8DDD0;
    --shadow: rgba(212, 175, 55, 0.15)
}

[data-theme=dark] {
    --primary-bg: #0A0A0A;
    --secondary-bg: #1A1A1A;
    --card-bg: #252525;
    --accent-gold: #FFD700;
    --accent-rose: #FFC0CB;
    --text-primary: #FFFFFF;
    --text-secondary: #D4AF37;
    --border-color: #3A3A3A;
    --shadow: rgba(255, 215, 0, 0.2)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: Poppins, sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    transition: all .4s ease
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 9999;
    transition: all .3s ease
}

[data-theme=dark] .header {
    background: rgba(10, 10, 10, .95)
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: .6rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none
}

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

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: color .3s ease
}

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

.nav-actions {
    display: flex;
    gap: .8rem;
    align-items: center
}

.icon-btn {
    background: 0 0;
    border: 2px solid var(--accent-gold);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold)
}

.icon-btn:hover {
    background: var(--accent-gold);
    color: #fff;
    transform: scale(1.1)
}

.btn-login {
    padding: .5rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
    color: #fff;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: .85rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s ease;
    text-decoration: none
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow)
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px
}

.menu-icon span {
    width: 25px;
    height: 2.5px;
    background: var(--accent-gold);
    transition: .3s;
    border-radius: 2px
}

.split-hero {
    margin-top: 60px;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden
}

.hero-left {
    background: linear-gradient(135deg, rgba(212, 175, 55, .9), rgba(232, 180, 184, .9)), url(https://images.pexels.com/photos/8088972/pexels-photo-8088972.jpeg?auto=compress&cs=tinysrgb&w=1200);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    animation: slideInLeft 1s ease
}

.hero-right {
    background: linear-gradient(135deg, rgba(232, 180, 184, .9), rgba(212, 175, 55, .9)), url(https://images.pexels.com/photos/1024993/pexels-photo-1024993.jpeg?auto=compress&cs=tinysrgb&w=1200);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    animation: slideInRight 1s ease
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%)
    }

    to {
        transform: translateX(0)
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%)
    }

    to {
        transform: translateX(0)
    }
}

.hero-content-box {
    background: rgba(255, 255, 255, .95);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
    text-align: center;
    max-width: 500px;
    backdrop-filter: blur(10px)
}

[data-theme=dark] .hero-content-box {
    background: rgba(10, 10, 10, .95)
}

.hero-content-box h2 {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem
}

.hero-content-box p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem
}

.hero-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .4s ease;
    text-decoration: none;
    display: inline-block
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, .4)
}

.floating-stats {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3rem;
    z-index: 10
}

.stat-box {
    background: rgba(255, 255, 255, .95);
    padding: 0.5rem 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    text-align: center;
    animation: floatUp 1s ease .5s both
}

[data-theme=dark] .stat-box {
    background: rgba(10, 10, 10, .95)
}

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(50px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif
}

.stat-label {
    font-size: .9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px
}

.collections-showcase {
    padding: 3rem 2rem;
    background: var(--primary-bg)
}

.section-header {
    text-align: center;
    margin-bottom: 4rem
}

.section-title {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary)
}

.dual-showcase {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem
}

.showcase-item {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    height: 600px
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease
}

.showcase-item:hover .showcase-image {
    transform: scale(1.1)
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .9), transparent);
    padding: 3rem;
    color: #fff
}

.showcase-tag {
    display: inline-block;
    padding: .5rem 1.5rem;
    background: var(--accent-gold);
    border-radius: 25px;
    font-size: .9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem
}

.showcase-title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    margin-bottom: 1rem
}

.showcase-description {
    font-size: 1.1rem;
    opacity: .9;
    margin-bottom: 1.5rem
}

.showcase-link {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: all .3s ease
}

.showcase-link:hover {
    transform: translateX(10px)
}

.services-carousel {
    padding: 6rem 2rem;
    background: var(--secondary-bg)
}

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

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

.service-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 40px var(--shadow);
    transition: all .4s ease;
    position: relative;
    overflow: hidden
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, .1), transparent);
    transform: scale(0);
    transition: transform .6s ease
}

.service-card:hover::before {
    transform: scale(1)
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px var(--shadow)
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s ease infinite
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.service-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem
}

.service-link {
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease
}

.service-link:hover {
    color: var(--accent-rose)
}

.testimonials-modern {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
    position: relative;
    overflow: hidden
}

.testimonials-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="1" opacity="0.1"/></svg>');
    opacity: .3
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.testimonial-card {
    background: rgba(255, 255, 255, .95);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
    text-align: center;
    backdrop-filter: blur(10px)
}

[data-theme=dark] .testimonial-card {
    background: rgba(10, 10, 10, .95)
}

.quote-icon {
    font-size: 5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    opacity: .3
}

.testimonial-text {
    font-size: 1.4rem;
    line-height: 2;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif
}

.bride-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem
}

.bride-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--accent-gold);
    object-fit: cover
}

.bride-details h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: .3rem
}

.bride-details p {
    color: var(--text-secondary);
    font-size: .9rem
}

.cta-banner {
    padding: 6rem 2rem;
    background: var(--primary-bg);
    text-align: center
}

.cta-content {
    max-width: 800px;
    margin: 0 auto
}

.cta-content h2 {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center
}

.footer {
    background: var(--secondary-bg);
    padding: 3rem 2rem 1.5rem;
    text-align: center;
    border-top: 3px solid var(--accent-gold)
}

.footer-logo {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem
}

.footer-text {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8
}

.copyright {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: .9rem
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(37, 211, 102, .5);
    z-index: 9998;
    animation: pulse-whatsapp 2s ease-in-out infinite;
    text-decoration: none
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }
}

@media (max-width:1024px) {
    .split-hero {
        grid-template-columns: 1fr
    }

    .hero-right {
        display: none
    }

    .dual-showcase {
        grid-template-columns: 1fr
    }

    .service-cards {
        grid-template-columns: 1fr
    }

    .floating-stats {
        flex-direction: column;
        gap: 1rem
    }
}

@media (max-width: 1060px) {
    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 85%;
        height: calc(100vh - 60px);
        background: var(--card-bg);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 5px 0 30px var(--shadow);
        transition: left .4s ease;
        overflow-y: auto;
        align-items: flex-start
    }

    [dir=rtl] .nav-links {
        left: auto;
        right: -100%
    }

    .nav-links.active {
        left: 0
    }

    [dir=rtl] .nav-links.active {
        left: auto;
        right: 0
    }

    .menu-icon {
        display: flex
    }

    .menu-icon.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px)
    }

    .menu-icon.active span:nth-child(2) {
        opacity: 0
    }

    .menu-icon.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px)
    }

    .hero-content-box h2 {
        font-size: 2rem
    }

    .section-title {
        font-size: 2.5rem
    }

    .cta-content h2 {
        font-size: 2.5rem
    }

    .cta-buttons {
        flex-direction: column
    }
}

@media (max-width:480px) {
    .nav-container {
        padding: .6rem 1rem
    }

    .logo {
        font-size: 1.4rem
    }

    .hero-btn {
        padding: .8rem 2rem;
        font-size: .9rem
    }
}

.btn-primary {
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

@media (max-width: 480px) {

    .btn-primary,
    .btn-secondary {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}

/* =========================================
   Additional Pages Styles
   ========================================= */

/* Common Page Header */
.page-header {
    height: 65vh;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.page-title {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.page-breadcrumb {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Contact Page */
.contact-container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

.contact-item-box {
    margin-bottom: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-box-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    width: 50px;
    height: 50px;
    background: var(--secondary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-box-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-box-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--primary-bg);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-textarea {
    height: 150px;
    resize: vertical;
}

/* Authentication Pages (Login/Signup) */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(232, 180, 184, 0.1));
    padding: 40px 2rem 2rem;
}

.auth-logo a {
    text-decoration: none;
    color: inherit;
    font-weight: 700;
}

.auth-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px var(--shadow);
    width: 100%;
    max-width: 500px;
    text-align: center;
    animation: fadeInUp 0.5s ease;
}

.auth-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.auth-links {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.auth-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.auth-link:hover {
    color: var(--accent-rose);
}

/* FAQ Page */
.faq-container {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    background: var(--card-bg);
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.25rem;
        margin: 2rem auto;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.75rem;
    }
}

/* Small Mobile: 300px – 480px */
@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }

    .contact-container {
        padding: 0 1rem;
        gap: 1.5rem;
        margin: 1.5rem auto;
    }

    .contact-info {
        padding: 1.25rem;
    }

    .contact-item-box {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .contact-box-icon {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .contact-box-content h3 {
        font-size: 1rem;
    }

    .contact-box-content p {
        font-size: 0.88rem;
    }

    .contact-form-wrapper {
        padding: 1.25rem;
    }

    .form-input,
    .form-textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .form-label {
        font-size: 0.88rem;
    }

    .highlight-title {
        font-size: 1.5rem;
    }
}

/* Extra Small: 300px – 400px */
@media (max-width: 400px) {
    .contact-container {
        padding: 0 0.75rem;
        margin: 1rem auto;
        gap: 1rem;
    }

    .contact-info {
        padding: 1rem;
    }

    .contact-item-box {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .contact-box-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .contact-box-content h3 {
        font-size: 0.95rem;
    }

    .contact-box-content p {
        font-size: 0.82rem;
    }

    .contact-form-wrapper {
        padding: 1rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-input,
    .form-textarea {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .page-breadcrumb {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
}


/* =========================================
   Collections Page Styles
   ========================================= */

.collections-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

/* Sidebar Filters */
.filter-sidebar {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.filter-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.clear-btn {
    background: transparent;
    border: none;
    color: var(--accent-gold);
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-group-title {
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
    color: var(--text-primary);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.filter-checkbox input {
    accent-color: var(--accent-gold);
    width: 18px;
    height: 18px;
}

.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: transform 0.2s;
}

.color-option.selected {
    transform: scale(1.2);
    border-color: var(--accent-gold);
}

.price-range {
    width: 100%;
}

/* Product Grid */
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.products-count {
    color: var(--text-secondary);
}

.sort-select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: var(--card-bg);
    color: var(--text-primary);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image-container {
    position: relative;
    height: 400px;
    overflow: hidden;
}

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

.product-card:hover .product-image {
    transform: scale(1.1);
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    font-size: 1.2rem;
    color: #ccc;
    transition: all 0.3s ease;
    z-index: 5;
}

.wishlist-btn:hover,
.wishlist-btn.active {
    background: white;
    color: red;
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--accent-gold);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.product-price {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Mobile Filter Toggle */
.mobile-filter-toggle {
    display: none;
    width: 100%;
    padding: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .collections-layout {
        grid-template-columns: 240px 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .collections-layout {
        display: block;
    }

    .filter-sidebar {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 10000;
        overflow-y: auto;
        border-radius: 0;
        padding-top: 80px;
        /* Space for close btn */
    }

    .filter-sidebar.active {
        display: block;
        animation: slideInLeft 0.3s ease;
    }

    .mobile-filter-toggle {
        display: block;
    }

    .product-image-container {
        height: 350px;
    }
}


/* =========================================
   Dropdown Menu Styles
   ========================================= */

.dropdown {
    position: relative;
}

/* Toggle link — text and arrow sit tight together, no gap */
.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    cursor: pointer;
    white-space: nowrap;
}

.dropdown-icon {
    font-size: 0.6rem;
    line-height: 1;
    transition: transform 0.3s ease;
    display: none;
    /* hidden on desktop by default */
    margin-top: 1px;
}

/* Desktop: rotate arrow on hover — arrow stays hidden on desktop */
.dropdown:hover>.dropdown-toggle .dropdown-icon {
    transform: rotate(180deg);
}

/* Desktop dropdown panel */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--card-bg);
    min-width: 220px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 0.6rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 9999;
    list-style: none;
    border: 1px solid var(--border-color);
}

/* Small top connector so the gap between toggle and menu doesn't hide it */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    width: 100%;
    height: 8px;
}

/* Fix for nested lists */
.nav-links li {
    list-style: none;
}

/* Desktop: show on hover */
.dropdown:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.7rem 1.4rem;
    color: var(--text-primary);
    font-size: 0.88rem;
    font-weight: 500;
    text-transform: none;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: var(--secondary-bg);
    color: var(--accent-gold);
    padding-left: 1.8rem;
}

/* =====================================================
   MOBILE + TABLET DROPDOWN (≤ 1024px)
===================================================== */
@media (max-width: 1060px) {

    /* Each dropdown item takes full width of the mobile panel */
    .dropdown {
        width: 100%;
    }

    /* Toggle spreads text left, arrow right — no gap in between */
    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    /* Show dropdown arrow in mobile/hamburger menu */
    .dropdown-icon {
        display: inline-block;
    }

    /* Sub-menu collapses via max-height */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: rgba(212, 175, 55, 0.05);
        border-radius: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: max-height 0.35s ease;
        width: 100%;
    }

    /* Remove the hover connector pseudo-element on mobile */
    .dropdown-menu::before {
        display: none;
    }

    /* Open state */
    .dropdown.active>.dropdown-menu {
        max-height: 400px;
    }

    /* Rotate arrow when open */
    .dropdown.active>.dropdown-toggle .dropdown-icon {
        transform: rotate(180deg);
    }

    /* Sub-items get an indent + left accent */
    .dropdown-menu a {
        padding: 0.65rem 1.2rem 0.65rem 2.2rem;
        font-size: 0.85rem;
        border-left: 3px solid var(--accent-gold);
        margin-left: 1rem;
        border-radius: 0;
    }

    .dropdown-menu a:hover {
        padding-left: 2.6rem;
        background: rgba(212, 175, 55, 0.08);
    }
}







/* =====================================================
   GLOBAL HEADER FIX (STICKY + MOBILE SAFE)
===================================================== */

.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
}

/* prevent content hiding behind header */
body {
    padding-top: 0px;
}

/* logo left, icons right always */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =====================================================
   MOBILE + TABLET NAVIGATION FIX
===================================================== */

@media (max-width: 1060px) {

    /* hamburger visible */
    .menu-icon {
        display: flex;
    }

    /* hide desktop login button */
    .btn-login {
        display: none;
    }

    /* Logo always far left, actions always far right */
    .nav-container {
        justify-content: space-between;
    }

    /* mobile menu panel slides in from left, items left-aligned */
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: min(320px, 85vw);
        height: calc(100vh - 70px);
        background: var(--card-bg);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        padding: 1rem 0 2rem;
        overflow-y: auto;
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
        border-right: 1px solid var(--border-color);
        z-index: 9998;
    }

    .nav-links.active {
        left: 0;
    }

    /* RTL support */
    [dir="rtl"] .nav-links {
        right: -100%;
        left: auto;
        border-right: none;
        border-left: 1px solid var(--border-color);
    }

    [dir="rtl"] .nav-links.active {
        right: 0;
        left: auto;
    }

    /* Each top-level item spans full width */
    .nav-links>li {
        width: 100%;
    }

    /* Plain links (non-dropdown) */
    .nav-links>li>a:not(.dropdown-toggle) {
        display: block;
        width: 100%;
        padding: 0.85rem 1.4rem;
        font-size: 0.9rem;
        font-weight: 600;
        border-bottom: 1px solid var(--border-color);
        color: var(--text-primary);
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: background 0.2s, color 0.2s;
    }

    .nav-links>li>a:not(.dropdown-toggle):hover,
    .nav-links>li>a.active {
        background: rgba(212, 175, 55, 0.08);
        color: var(--accent-gold);
    }

    /* Dropdown toggle row also spans full width */
    .nav-links>li.dropdown>.dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0.85rem 1.4rem;
        font-size: 0.9rem;
        font-weight: 600;
        border-bottom: 1px solid var(--border-color);
        color: var(--text-primary);
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: background 0.2s, color 0.2s;
    }

    .nav-links>li.dropdown>.dropdown-toggle:hover,
    .nav-links>li.dropdown.active>.dropdown-toggle {
        background: rgba(212, 175, 55, 0.08);
        color: var(--accent-gold);
    }

    /* Hamburger X animation */
    .menu-icon.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-icon.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-icon.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}


/* =====================================================
   HERO SECTION — UNIVERSAL MOBILE FIX
   (works for index.html + index2.html)
===================================================== */

/* remove desktop forced height */
.hero,
.split-hero {
    min-height: 100vh;
    height: auto;
    padding: 0px 20px 60px;
}

/* background image always visible */
.hero-video-bg,
.hero-video-bg img {
    height: 100%;
    min-height: 100vh;
}

/* center content perfectly */
.hero-content {
    width: 100%;
    max-width: 95%;
    margin: auto;
    text-align: center;
}

/* text scaling */
@media (max-width:768px) {

    .hero {
        min-height: 85vh;
        padding-top: 40px;
    }

    .hero-title {
        font-size: 2.1rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 90%;
        max-width: 280px;
        margin: auto;
    }
}


/* =====================================================
   INDEX2 SPLIT HERO MOBILE ALIGNMENT FIX
===================================================== */

@media (max-width:768px) {

    .split-hero {
        display: flex;
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        width: 100%;
        min-height: 55vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 40px 20px;
        background-position: center;
        background-size: cover;
    }

    .hero-content-box {
        width: 100%;
        max-width: 320px;
        margin: auto;
    }

    /* floating stats fix */
    .floating-stats {
        position: relative;
        bottom: auto;
        margin-top: 20px;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
}


/* =====================================================
   EXTRA SMALL DEVICES FIX
===================================================== */

@media (max-width:480px) {

    body {
        padding-top: 0px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .icon-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

/* =====================================================
   MOBILE NAV LOGIN ITEM (inside hamburger menu)
===================================================== */

/* Always hidden on desktop — only visible inside hamburger panel */
.nav-login-mobile {
    display: none;
}

@media (max-width: 1024px) {
    .nav-login-mobile {
        display: block;
        width: 100%;
        padding: 1.2rem 1.4rem 0.5rem;
        border-top: 1px solid var(--border-color);
        margin-top: 0.5rem;
    }

    .btn-login-mobile {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0.75rem 1.5rem;
        background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
        color: white !important;
        border-radius: 25px;
        font-weight: 600;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-login-mobile:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px var(--shadow);
        opacity: 0.9;
    }
}

/*====================
        About
=====================*/

/* ═══════════════════════════════════════════════
   DASHBOARD SHARED STYLES
   ═══════════════════════════════════════════════ */
:root {
    --sidebar-width: 280px;
    --sidebar-collapsed-width: 80px;
    --db-header-h: 70px;
}

.db-body {
    padding-top: 0 !important;
    display: flex;
    min-height: 100vh;
    background-color: var(--secondary-bg);
}

.db-header {
    background: var(--card-bg);
    height: var(--db-header-h);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    box-shadow: 0 2px 10px var(--shadow);
}

.db-header .logo {
    margin-right: 0;
}

.logout-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.logout-link:hover {
    color: var(--accent-gold);
}

/* Sidebar */
.db-sidebar {
    width: var(--sidebar-width);
    background: var(--card-bg);
    border-right: 1px solid var(--border-color);
    position: fixed;
    top: var(--db-header-h);
    bottom: 0;
    left: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
    padding-top: 2rem;
}

.db-nav {
    list-style: none;
    padding: 0 1rem;
}

.db-nav-item {
    margin-bottom: 0.5rem;
}

.db-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s;
}

.db-nav-link i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.db-nav-link:hover,
.db-nav-link.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(232, 180, 184, 0.1));
    color: var(--accent-gold);
}

/* Main Content Area */
.db-main {
    flex: 1;
    margin-left: var(--sidebar-width);
    padding: 2rem;
    margin-top: var(--db-header-h);
    width: calc(100% - var(--sidebar-width));
}

.db-content-header {
    margin-bottom: 2.5rem;
}

.db-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.db-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* DB Cards */
.db-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.db-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px var(--shadow);
    border: 1px solid var(--border-color);
}

.db-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.db-stat-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.db-stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
    color: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.db-stat-info h4 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.db-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Tables */
.db-table-wrapper {
    overflow-x: auto;
}

.db-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.db-table th {
    text-align: left;
    padding: 1rem;
    background: var(--secondary-bg);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.db-table td {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 0.95rem;
}

.db-status {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-pending {
    background: #FFF4E5;
    color: #B7791F;
}

.status-confirmed {
    background: #E6FFFA;
    color: #2C7A7B;
}

.status-completed {
    background: #F0FFF4;
    color: #2F855A;
}

.status-cancelled {
    background: #FFF5F5;
    color: #C53030;
}

/* Responsive Dashboard Header */
@media (max-width: 768px) {
    .db-header {
        padding: 0 1rem;
    }

    .db-header .logo {
        font-size: 1.2rem;
    }

    .admin-badge {
        display: none;
        /* Hide admin badge on mobile to save space */
    }

    .db-header-right {
        gap: 0.5rem;
    }

    .db-profile-name {
        display: none;
        /* Hide name on mobile */
    }

    .db-profile-btn {
        padding: 4px;
        border: none;
        background: transparent;
    }

    .db-profile-btn:hover {
        background: transparent;
        box-shadow: none;
    }

    .db-profile-arrow {
        display: none;
    }

    .db-profile-dropdown {
        width: 240px;
        right: -10px;
    }

    /* Stack grid on mobile */
    .db-analytics-grid,
    .db-two-col {
        grid-template-columns: 1fr !important;
    }
}

/* New Section Styles */
.db-analytics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.db-chart-container {
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--secondary-bg);
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
}

.chart-placeholder {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 150px;
    width: 100%;
    justify-content: center;
}

.chart-placeholder .bar {
    width: 20px;
    background: var(--accent-gold);
    border-radius: 5px 5px 0 0;
    opacity: 0.8;
    transition: height 0.5s;
}

.chart-label {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pie-chart-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: conic-gradient(var(--accent-gold) 0% 45%,
            var(--accent-rose) 45% 75%,
            #a0aec0 75% 100%);
    margin-bottom: 1rem;
}

.chart-legend {
    list-style: none;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.chart-legend li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.chart-legend .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* Customer List */
.db-customer-list {
    list-style: none;
}

.db-customer-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.db-customer-item:last-child {
    border-bottom: none;
}

.db-customer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.db-customer-info h4 {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.db-customer-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.db-badge {
    margin-left: auto;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 10px;
    background: var(--secondary-bg);
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

/* Product List */
.db-product-list {
    list-style: none;
}

.db-product-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.db-product-item:last-child {
    border-bottom: none;
}

.db-product-img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
}

.db-product-info h4 {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.db-product-info p {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.db-product-sales {
    margin-left: auto;
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.db-view-all {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.db-view-all:hover {
    color: var(--accent-rose);
    letter-spacing: 0.5px;
}

/* Responsive Dashboard */
@media (max-width: 1024px) {
    .db-sidebar {
        transform: translateX(-100%);
        width: 100%;
        max-width: 280px;
    }

    .db-sidebar.active {
        transform: translateX(0);
    }

    .db-main {
        margin-left: 0;
        width: 100%;
    }

    .sidebar-toggle {
        display: block !important;
    }
}

.sidebar-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--accent-gold);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ═══════════════════════════════════════════════
   DASHBOARD ENHANCED STYLES
   ═══════════════════════════════════════════════ */

/* Header Layout */
.db-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.db-header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
}

/* Profile Menu */
.db-profile-menu {
    position: relative;
}

.db-profile-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 6px 14px 6px 6px;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-primary);
}

.db-profile-btn:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.db-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
}

.db-profile-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.db-profile-arrow {
    font-size: 0.7rem;
    color: var(--text-secondary);
    transition: transform 0.3s;
}

.db-profile-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 260px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 15px 40px var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 3000;
    overflow: hidden;
}

.db-profile-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.db-profile-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(232, 180, 184, 0.08));
    border-bottom: 1px solid var(--border-color);
}

.db-avatar-lg {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
}

.db-profile-fullname {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.db-profile-email {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.db-profile-links {
    list-style: none;
    padding: 0.75rem 0;
}

.db-profile-links li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.db-profile-links li a:hover {
    background: var(--secondary-bg);
    color: var(--accent-gold);
    padding-left: 1.5rem;
}

.db-profile-links li a i {
    width: 18px;
    text-align: center;
}

.db-profile-links .divider-item {
    height: 1px;
    background: var(--border-color);
    margin: 0.5rem 0;
}

.logout-item {
    color: #e53e3e !important;
}

.logout-item:hover {
    background: rgba(229, 62, 62, 0.05) !important;
    color: #e53e3e !important;
}

/* Sidebar Profile */
.db-sidebar-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.db-sidebar-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
    flex-shrink: 0;
}

.db-sidebar-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.db-sidebar-badge {
    font-size: 0.72rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Welcome Banner */
.db-welcome-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
    border-radius: 20px;
    padding: 2rem 2.5rem;
    margin-bottom: 2.5rem;
    color: #fff;
    gap: 1rem;
}

.db-welcome-text .db-title {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
}

.db-welcome-text .db-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.db-wedding-countdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    text-align: center;
    min-width: 110px;
    flex-shrink: 0;
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
    margin-bottom: 4px;
}

.countdown-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

/* Progress Tracker */
.db-progress-card {
    margin-bottom: 2rem;
}

.db-progress-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow-x: auto;
    padding: 0.5rem 0;
    gap: 0;
}

.db-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.db-step-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--secondary-bg);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.db-step.completed .db-step-icon {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
    border-color: transparent;
    color: #fff;
}

.db-step.active .db-step-icon {
    background: var(--card-bg);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.db-step span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    white-space: nowrap;
}

.db-step.completed span,
.db-step.active span {
    color: var(--accent-gold);
}

.db-step-line {
    flex: 1;
    height: 2px;
    background: var(--border-color);
    min-width: 30px;
    margin-bottom: 20px;
}

.db-step-line.completed {
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-rose));
}

.db-step-line.active {
    background: linear-gradient(90deg, var(--accent-gold), var(--border-color));
}

/* Two-column table layout */
.db-two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* View All Link */
.db-view-all {
    display: inline-block;
    margin-top: 1.25rem;
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s;
}

.db-view-all:hover {
    text-decoration: underline;
}

/* Wishlist Grid */
.db-wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
}

.db-wishlist-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--secondary-bg);
    transition: transform 0.3s, box-shadow 0.3s;
}

.db-wishlist-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
}

.db-wishlist-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.db-wishlist-info {
    padding: 0.75rem;
}

.db-wishlist-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.db-wishlist-price {
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 700;
}

.db-wishlist-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.db-wishlist-remove:hover {
    background: rgba(229, 62, 62, 0.8);
}

/* ═══════════════════════════════════════════════
   DASHBOARD RESPONSIVE (300px → Desktop)
   ═══════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    .db-profile-name {
        display: none;
    }

    .db-two-col {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .db-header {
        padding: 0 1rem;
    }

    .db-header-left {
        gap: 0.6rem;
    }

    .db-header-right {
        gap: 0.5rem;
    }

    .db-welcome-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .db-welcome-text .db-title {
        font-size: 1.4rem;
    }

    .db-wedding-countdown {
        width: 100%;
    }

    .db-progress-steps {
        gap: 0;
        justify-content: flex-start;
    }

    .db-step span {
        font-size: 0.65rem;
    }

    .db-wishlist-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .db-sidebar-profile {
        padding: 1rem;
    }

    .db-main {
        padding: 1rem;
    }

    .db-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1rem;
    }

    .db-card {
        padding: 1.25rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .db-header {
        padding: 0 0.75rem;
    }

    .db-profile-btn {
        padding: 5px 8px 5px 5px;
    }

    .db-avatar {
        width: 30px;
        height: 30px;
    }

    .db-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .db-stat-card {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .db-stat-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .db-stat-value {
        font-size: 1.3rem;
    }

    .db-progress-steps {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .db-step-line {
        min-width: 20px;
    }

    .db-wishlist-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Force single column for tables */
    .db-two-col {
        grid-template-columns: 1fr;
    }

    /* Make tables fit within card */
    .db-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .db-table {
        width: 100%;
        min-width: unset;
    }

    .db-table th,
    .db-table td {
        padding: 0.6rem 0.5rem;
        font-size: 0.82rem;
        white-space: normal;
        word-break: break-word;
    }

    .db-status {
        padding: 0.25rem 0.5rem;
        font-size: 0.72rem;
        white-space: nowrap;
    }
}

/* Extra Small (300px) */
@media (max-width: 360px) {
    .db-grid {
        grid-template-columns: 1fr;
    }

    .db-profile-btn {
        padding: 4px 6px 4px 4px;
    }

    .db-wishlist-grid {
        grid-template-columns: 1fr;
    }

    .logo {
        font-size: 1.1rem;
    }

    .db-table th,
    .db-table td {
        padding: 0.6rem 0.5rem;
        font-size: 0.78rem;
    }

    .db-card {
        padding: 1rem;
    }

    .db-card-title {
        font-size: 1rem;
    }
}



/* Page Hero — standardized for subpages */
.subpage-hero {
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.subpage-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 10s ease;
}

.subpage-hero:hover .subpage-hero-bg {
    transform: scale(1.1);
}

.subpage-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(44, 24, 16, 0.7), rgba(212, 175, 55, 0.3));
}

.subpage-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.subpage-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.subpage-hero-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumb-nav {
    background: var(--secondary-bg);
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-container {
    max-width: 1400px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.breadcrumb-container a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-container a:hover {
    text-decoration: underline;
}

/* Section Templates */
.luxury-section {
    padding: 4rem 2rem;
}

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

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.section-tag {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.section-head {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.decorated-title {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.decorated-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-gold);
}

/* Image Showcase */
.image-showcase {
    position: relative;
}

.main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px var(--shadow);
}

.accent-image {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    border: 10px solid var(--card-bg);
    box-shadow: 0 10px 30px var(--shadow);
}

/* Luxury Card Grid (for Team/Blog) */
.luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.luxury-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.4s ease;
}

.luxury-card:hover {
    transform: translateY(-15px);
}

.luxury-card-img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.luxury-card-content {
    padding: 2.5rem;
}

/* Responsiveness for Shared Components */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .subpage-hero-title {
        font-size: 2.5rem;
    }

    .main-image {
        height: 400px;
    }

    .accent-image {
        display: none;
    }
}










































































































































































/* ===============================
   REMOVE HEADER → HERO GAP
================================ */

body {
    margin: 0;
    padding-top: 0 !important;
}

.header+section {
    margin-top: 0 !important;
}

/* ===============================
   STICKY HEADER FIX
================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: var(--primary-bg);
}

/* push content correctly under header */
main,
.split-hero,
.hero {
    margin-top: 80px;
}

/* =====================================================
   ✨ LUXURY PORTAL HERO (index2.html)
===================================================== */
.portal-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
    margin-top: 0 !important;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: brightness(0.7) contrast(1.1);
    animation: slowZoom 20s infinite alternate linear;
}

.hero-underlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.2) 50%, rgba(10, 10, 10, 0.8) 100%);
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.15);
    }
}

.portal-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1400px;
    padding: 120px 2rem 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.portal-main-content {
    text-align: center;
    max-width: 800px;
}

.portal-tag {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: block;
}

.portal-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.portal-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.portal-cta-group {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.btn-text {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 5px;
    transition: 0.3s;
}

.btn-text:hover {
    color: var(--accent-gold);
    gap: 10px;
}

.portals-showcase {
    display: flex;
    gap: 3rem;
    width: 100%;
    justify-content: center;
    perspective: 1000px;
}

.portal-card {
    position: relative;
    width: 400px;
    height: 550px;
    border-radius: 200px 200px 20px 20px;
    /* Arch shape */
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s;
}

.portal-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 40px 80px rgba(212, 175, 55, 0.3);
}

.portal-image {
    width: 100%;
    height: 100%;
}

.portal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.portal-card:hover .portal-image img {
    transform: scale(1.1);
}

.portal-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #fff;
    text-align: center;
}

.portal-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.portal-info p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.portal-link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}

.portal-link:hover {
    color: var(--accent-gold);
}

.portal-stats {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem 4rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.portal-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.stat-txt {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
}

.portal-stats .divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive Portal */
@media (max-width: 1200px) {
    .portal-card {
        width: 320px;
        height: 450px;
    }

    .portal-title {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .portals-showcase {
        gap: 2rem;
    }

    .portal-stats {
        gap: 2rem;
        padding: 1.5rem 2.5rem;
    }
}

@media (max-width: 768px) {
    .portal-title {
        font-size: 3rem;
    }

    .portals-showcase {
        flex-direction: column;
        align-items: center;
    }

    .portal-card {
        width: 100%;
        max-width: 350px;
    }

    .portal-stats {
        flex-direction: column;
        gap: 1.5rem;
        border-radius: 30px;
        width: 250px;
    }

    .portal-stats .divider {
        width: 60px;
        height: 1px;
    }

    .portal-cta-group {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .portal-title {
        font-size: 2.5rem;
    }

    .portal-subtitle {
        font-size: 1.1rem;
    }
}


/* =====================================================
   ✅ GLOBAL RESPONSIVE FIX (HEADER + HERO)
   ADD THIS AT VERY END OF styles.css
===================================================== */

/* prevent horizontal scroll */
html,
body {
    overflow-x: hidden;
    width: 100%;
}

/* ================= HEADER ================= */

/* sticky header for full website */
.header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: var(--primary-bg);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* space for fixed header */
body {
    padding-top: 80px;
}

/* navigation layout */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* hamburger icon default hidden */
/* hamburger icon default shown on mobile */
.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 100001;
}

.menu-icon span {
    width: 25px;
    height: 2.5px;
    background: var(--accent-gold);
    transition: 0.3s;
    border-radius: 2px;
}

.menu-icon.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.menu-icon.active span:nth-child(2) {
    opacity: 0;
}

.menu-icon.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ================= MOBILE & TABLET ================= */
@media (max-width: 1060px) {

    /* show hamburger */
    .menu-icon {
        display: flex !important;
    }

    /* hide menu initially */
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--primary-bg);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
        padding: 40px 0;
        transition: 0.3s ease;
        z-index: 99999;
        overflow-y: auto;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    /* active menu */
    .nav-links.active {
        left: 0;
    }

    /* center logo + icons properly */
    .nav-container {
        padding: 12px 16px;
    }
}

/* ================= HERO SECTION ================= */

/* hero full responsive */
.hero,
.split-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px 60px;
}

/* hero content width control */
.hero-content,
.hero-text {
    max-width: 600px;
    margin: auto;
}

/* buttons spacing mobile */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* ================= INDEX2 MOBILE ALIGNMENT ================= */
@media (max-width:768px) {

    /* stack split layout */
    .split-hero {
        flex-direction: column;
    }

    .split-hero img,
    .hero img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* fix section spacing */
    section {
        padding-left: 18px;
        padding-right: 18px;
    }

    /* remove unwanted side gaps */
    .container,
    .section-container {
        width: 100%;
        max-width: 100%;
    }
}

/* ================= EXTRA SMALL ================= */
@media (max-width:480px) {

    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }
}


/* =====================================================
   ? SUBPAGE HERO STYLES
===================================================== */
.subpage-hero {
    height: 65vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    margin-top: 0 !important;
}

.appointment-hero {
    background-image: url('assets/images/image-book-appointment.jpeg');
}

.testimonials-hero {
    background-image: url('assets/images/testimonials-image.jpeg');
}

.subpage-hero-title {
    padding-top: 2.5rem;
    font-size: 3.0rem;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

/* =====================================================
   ? APPOINTMENT PAGE STYLES
===================================================== */
.appointment-section {
    padding: 4rem 2rem;
    background: var(--primary-bg);
}

.appointment-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.luxury-form {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px var(--shadow);
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--secondary-bg);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    background: var(--card-bg);
}

.form-submit {
    width: 100%;
    margin-top: 1rem;
}

.appointment-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    padding: 2.5rem;
    background: var(--card-bg);
    border-radius: 25px;
    box-shadow: 0 10px 40px var(--shadow);
    border: 1px solid var(--border-color);
}

.gold-card {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
    color: white;
    border: none;
}

.gold-card h3,
.gold-card p {
    color: white;
}

.benefit-list {
    list-style: none;
    margin-top: 1.5rem;
}

.benefit-list li {
    margin-bottom: 1rem;
    font-weight: 500;
}

.map-container {
    margin-top: 1rem;
    box-shadow: 0 10px 40px var(--shadow);
    border-radius: 15px;
    overflow: hidden;
}

/* =====================================================
   ? TESTIMONIALS PAGE STYLES
===================================================== */
.testimonials-page-section {
    padding: 4rem 2rem;
    background: var(--secondary-bg);
}

.testimonials-masonry {
    max-width: 1400px;
    margin: 0 auto;
    columns: 3 350px;
    column-gap: 2rem;
}

.testimonial-item {
    break-inside: avoid;
    margin-bottom: 2rem;
}

.testimonial-card-premium {
    background: var(--card-bg);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px var(--shadow);
    transition: transform 0.4s ease;
    border: 1px solid var(--border-color);
}

.testimonial-card-premium:hover {
    transform: translateY(-10px);
}

.testimonial-image-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.testimonial-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-icon {
    position: absolute;
    bottom: -20px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.testimonial-details {
    padding: 2.5rem;
    padding-top: 3rem;
}

.testimonial-quote-text {
    font-style: italic;
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-meta h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--accent-gold);
}

.testimonial-meta span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.cta-section {
    padding: 8rem 2rem;
    text-align: center;
    background: var(--primary-bg);
}

.cta-content h2 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

/* =====================================================
   ? RESPONSIVE ADJUSTMENTS (300px to Desktop)
===================================================== */

@media (max-width: 1200px) {
    .testimonials-masonry {
        columns: 2;
    }
}

@media (max-width: 992px) {
    .appointment-grid {
        grid-template-columns: 1fr;
    }

    .subpage-hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-masonry {
        columns: 1;
    }

    .luxury-form {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .subpage-hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .subpage-hero-title {
        font-size: 2.22rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .appointment-section,
    .testimonials-page-section {
        padding: 4rem 1rem;
    }
}

@media (max-width: 360px) {
    .subpage-hero-title {
        font-size: 1.8rem;
    }
}


@media (max-width: 768px) {

    /* ======================================================
   HERO SECTION RESPONSIVE FIX (INDEX HERO IMAGE)
   ====================================================== */

    /* Desktop default */
    .hero {
        position: relative;
        width: 100%;
        min-height: 100vh;
        overflow: hidden;
    }

    /* Hero image container */
    .hero-video-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    /* Desktop image style */
    .hero-video-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }


    /* ================= MOBILE & TABLET FIX ================= */

    @media (max-width: 768px) {

        .hero {
            min-height: auto;
            height: auto;
            padding-top: 80px;
            /* space for sticky header */
        }

        /* IMPORTANT — show full image */
        .hero-video-bg {
            position: relative;
            height: auto;
        }

        .hero-video-bg img {
            width: 100%;
            height: auto;
            object-fit: contain;
            /* ✅ shows full image */
            display: block;
        }

        /* Center hero content */
        .hero-content {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
        }

        .hero-title {
            font-size: 1.9rem;
            line-height: 1.25;
        }

        .hero-subtitle {
            font-size: 0.95rem;
        }

        .hero-cta {
            flex-direction: column;
            gap: 12px;
            width: 100%;
        }

        .hero-cta a {
            width: 100%;
            max-width: 260px;
        }
    }

    /* =====================================
   PREMIUM HERO IMAGE FIX
   Image & background same size
===================================== */

    .hero {
        position: relative;
        width: 100%;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;

        /* USE IMAGE AS BACKGROUND */
        background-image: url("../assets/images/hero.jpg");
        /* change path if needed */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    /* remove inner image box */
    .hero-video-bg,
    .hero-video-bg img {
        display: none;
    }

    @media (max-width: 768px) {

        .hero {
            min-height: 100vh;
            padding: 100px 20px 60px;
            background-position: center top;
        }

        .hero-content {
            position: relative;
            text-align: center;
            max-width: 100%;
            padding: 0;
        }

        .hero-title {
            font-size: 1.9rem;
            line-height: 1.25;
        }

        .hero-subtitle {
            font-size: 1rem;
        }

        .hero-cta {
            flex-direction: column;
            gap: 12px;
            align-items: center;
        }
    }


    /* ── index2.html PORTAL HERO ─────────────────────── */

    .portal-hero {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: visible !important;
        padding: 0 !important;
        margin-top: 0 !important;
        background: #0a0a0a;
        padding-top: var(--header-height, 70px) !important;
    }

    /* Image container: take it out of absolute flow */
    .hero-background {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        z-index: 1 !important;
    }

    /* Image: full width, natural height — ZERO cropping */
    .hero-background img {
        width: 100% !important;
        height: auto !important;
        object-fit: unset !important;
        object-position: unset !important;
        display: block !important;
        filter: brightness(0.85) contrast(1.05) !important;
        animation: none !important;
    }

    /* Remove the full-screen gradient overlay */
    .hero-underlay {
        display: none !important;
    }

    /* Portal container: flows below the image */
    .portal-container {
        position: relative !important;
        z-index: 5 !important;
        min-height: auto !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 2rem 1.5rem 2.5rem !important;
        gap: 1.5rem !important;
        background: linear-gradient(180deg, #0a0a0a 0%, #1a0a14 100%);
        width: 100% !important;
    }

    .portal-main-content {
        text-align: center !important;
        max-width: 100% !important;
        color: white !important;
    }

    .portal-tag {
        font-size: 0.65rem !important;
        letter-spacing: 3px !important;
    }

    .portal-title {
        font-size: 2.1rem !important;
        line-height: 1.2 !important;
        margin: 0.75rem 0 !important;
        color: white !important;
    }

    .portal-subtitle {
        font-size: 0.92rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .portal-cta-group {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.75rem !important;
    }

    .portal-cta-group .btn-primary {
        width: 85% !important;
        max-width: 260px !important;
        text-align: center !important;
    }

    /* Stats: keep horizontal, compact */
    .portal-stats {
        display: flex !important;
        flex-direction: row !important;
        gap: 1rem !important;
        padding: 1rem 1.5rem !important;
        border-radius: 60px !important;
        width: auto !important;
        background: rgba(255, 255, 255, 0.07) !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        flex-wrap: nowrap !important;
    }

    .portal-stats .divider {
        width: 1px !important;
        height: 28px !important;
    }

    .stat-num {
        font-size: 1.3rem !important;
    }

    .stat-txt {
        font-size: 0.58rem !important;
        letter-spacing: 1px !important;
    }
}

/* Extra small phones */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.75rem !important;
    }

    .portal-title {
        font-size: 1.85rem !important;
    }

    .portal-stats {
        gap: 0.6rem !important;
        padding: 0.75rem 1rem !important;
    }

    .stat-num {
        font-size: 1.1rem !important;
    }
}


/* =====================================================
   🔐 AUTH PAGES — LOGIN & SIGNUP STYLES
===================================================== */

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(232, 180, 184, 0.1));
    padding: 2rem 1rem;
}

.auth-card {
    background: var(--card-bg, #ffffff);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
    animation: fadeInUp 0.6s ease both;
}

.auth-logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-gold, #D4AF37), var(--accent-rose, #E8B4B8));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-bottom: 0.5rem;
}

.auth-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text-primary, #2C1810);
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Form labels */
.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary, #2C1810);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Form inputs */
.form-input {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1.5px solid var(--border-color, #E8DDD0);
    border-radius: 10px;
    background: var(--secondary-bg, #FFF5EB);
    color: var(--text-primary, #2C1810);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-gold, #D4AF37);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

/* Remember me + Forgot password row */
.auth-remember-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.auth-terms-row {
    margin-bottom: 1.2rem;
}

.auth-remember-label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    color: var(--text-secondary, #6B5B4F);
    cursor: pointer;
    font-weight: 400;
}

.auth-remember-label input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: var(--accent-gold, #D4AF37);
    cursor: pointer;
    flex-shrink: 0;
}

.auth-forgot {
    font-size: 0.85rem;
    color: #C8763A;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}

.auth-forgot:hover {
    color: var(--accent-gold, #D4AF37);
    text-decoration: underline;
}

/* ── Or continue/sign up with divider ── */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.4rem 0 1.1rem;
    color: var(--text-secondary, #999);
    font-size: 0.82rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color, #e0d8d0);
}

.auth-divider span {
    white-space: nowrap;
    flex-shrink: 0;
    color: var(--text-secondary, #999);
    font-size: 0.82rem;
}

/* ── Social login button group ── */
.social-login-btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ── Individual social button ── */
.social-login-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.7rem 1rem;
    border: 1.5px solid var(--border-color, #e0d8d0);
    border-radius: 10px;
    background: #fff;
    color: var(--text-primary, #2C1810);
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    white-space: nowrap;
}

.social-login-btn:hover {
    background: var(--secondary-bg, #FFF5EB);
    border-color: var(--accent-gold, #D4AF37);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.social-login-btn svg {
    flex-shrink: 0;
}

/* ── Auth bottom links ── */
.auth-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.auth-link {
    color: #C8763A;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.auth-link:hover {
    color: var(--accent-gold, #D4AF37);
    text-decoration: underline;
}

/* ── Dark mode overrides ── */
[data-theme="dark"] .auth-card {
    background: #1e1e2e;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .form-input {
    background: #2a2a3e;
    border-color: #3a3a50;
    color: #f0f0f0;
}

[data-theme="dark"] .social-login-btn {
    background: #2a2a3e;
    border-color: #3a3a50;
    color: #f0f0f0;
}

[data-theme="dark"] .social-login-btn:hover {
    background: #33334a;
    border-color: var(--accent-gold, #D4AF37);
}

[data-theme="dark"] .auth-divider::before,
[data-theme="dark"] .auth-divider::after {
    background: #3a3a50;
}

/* ── Responsive: tablets (≤ 600px) ── */
@media (max-width: 600px) {
    .auth-card {
        padding: 2rem 1.4rem;
        border-radius: 18px;
    }

    .auth-title {
        font-size: 1.45rem;
    }

    .social-login-btn-group {
        gap: 0.7rem;
    }

    .social-login-btn {
        font-size: 0.82rem;
        padding: 0.65rem 0.5rem;
    }
}

/* ── Responsive: small phones (≤ 400px) ── */
@media (max-width: 400px) {
    .auth-wrapper {
        padding: 1.5rem 0.75rem;
    }

    .auth-card {
        padding: 1.8rem 1.1rem;
        border-radius: 16px;
    }

    .auth-title {
        font-size: 1.3rem;
    }

    .social-login-btn-group {
        flex-direction: column;
        gap: 0.6rem;
    }

    .social-login-btn {
        width: 100%;
        justify-content: center;
        font-size: 0.85rem;
    }

    .auth-remember-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }
}

/* ── Extra small (≤ 320px) ── */
@media (max-width: 320px) {
    .auth-card {
        padding: 1.5rem 0.9rem;
    }

    .form-input {
        padding: 0.75rem 0.8rem;
        font-size: 0.82rem;
    }
}