/* ===== ROOT VARIABLES ===== */
:root {
    --primary: #d3125d;
    --primary-dark: #a00b46;
    --secondary: #ff3377;
    --accent: #ffd3e2;
    --accent-light: #fff2f6;
    --gold: #c5a059;
    --gold-light: #f4e8c1;
    --dark: #0f1016;
    --light: #FFFFFF;
    --bg: #fdfafb;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow: 0 10px 40px rgba(211, 18, 93, 0.05);
    --shadow-lg: 0 20px 50px rgba(15, 16, 22, 0.08);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Premium Gradients */
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-premium: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-success: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --gradient-rose: linear-gradient(135deg, #d3125d 0%, #ff3377 100%);
    
    /* Premium Shadows */
    --shadow-premium: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 50px rgba(0, 0, 0, 0.2);
    
    /* Premium Colors */
    --gold-primary: #FFD700;
    --gold-dark: #B8860B;
    --premium-purple: #667eea;
    --premium-dark: #764ba2;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .playfair {
    font-family: 'Playfair Display', serif;
}

.poppins {
    font-family: 'Poppins', sans-serif;
}

.inter {
    font-family: 'Inter', sans-serif;
}

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

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

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader-ring {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 5px solid var(--accent);
    border-top-color: var(--primary);
    animation: spin 0.9s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.35);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}
.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.45);
    color: #fff;
}
.btn-primary-custom::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}
.btn-primary-custom:hover::after {
    opacity: 1;
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}
.btn-outline-custom:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.25);
}

.btn-white-custom {
    background: #fff;
    color: var(--primary);
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.btn-white-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    color: var(--primary);
}

/* ===== SECTION TITLES ===== */
.section-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}
.section-title .highlight {
    color: var(--primary);
    position: relative;
}
.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--accent);
    border-radius: 10px;
    z-index: -1;
}
.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== SECTION SPACING ===== */
.section-padding {
    padding: 100px 0 80px;
}
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0 40px;
    }
    .section-title {
        font-size: 2rem;
    }
}

/* ===== NAVBAR ===== */
.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 16px 0;
    transition: all 0.4s ease;
    background: transparent;
}
.navbar-custom.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.navbar-custom .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}
.navbar-custom .navbar-brand span {
    color: var(--dark);
}
.navbar-custom .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.92rem;
    color: rgba(26, 26, 26, 0.8);
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--primary);
    background: rgba(233, 30, 99, 0.06);
}
.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}
.navbar-custom .nav-link:hover::after {
    width: 60%;
}
.navbar-custom .btn-login {
    background: transparent;
    color: var(--dark);
    border: 1.5px solid #e0e0e0;
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
}
.navbar-custom .btn-login:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(233, 30, 99, 0.04);
}
.navbar-custom .btn-register {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.3);
}
.navbar-custom .btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.4);
    color: #fff;
}

/* Hamburger */
.navbar-toggler {
    border: none;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler-icon {
    background-image: none;
    width: 28px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.navbar-toggler-icon span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--dark);
    border-radius: 10px;
    transition: var(--transition);
}

/* User Dropdown Menu */
.navbar-custom .dropdown {
    position: relative;
}
.navbar-custom .navbar-collapse {
    overflow: visible;
}
.navbar-custom .dropdown-menu {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 8px;
    min-width: 220px;
    margin-top: 8px;
    z-index: 9999;
    position: absolute;
    right: 0;
    top: 100%;
    display: none;
    list-style: none;
}
.navbar-custom .dropdown-menu.show {
    display: block;
}
.navbar-custom .dropdown-toggle {
    cursor: pointer;
}
.navbar-custom .dropdown-item {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
    padding: 10px 14px;
    border-radius: 6px;
    transition: var(--transition);
    display: flex;
    align-items: center;
}
.navbar-custom .dropdown-item:hover {
    background: var(--accent-light);
    color: var(--primary);
}
.navbar-custom .dropdown-item.text-danger:hover {
    background: rgba(220, 38, 38, 0.08);
    color: #dc2626;
}
.navbar-custom .dropdown-divider {
    margin: 6px 0;
    border-color: rgba(0, 0, 0, 0.06);
}
.navbar-custom .dropdown-toggle::after {
    margin-left: 6px;
    font-size: 0.75rem;
}

/* Payment Method Cards */
.payment-method-card {
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: #fff;
}
.payment-method-card:hover {
    border-color: var(--primary);
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(211, 18, 93, 0.1);
}
.payment-method-card.selected {
    border-color: var(--primary);
    background: var(--accent-light);
    box-shadow: 0 4px 15px rgba(211, 18, 93, 0.15);
}
.payment-method-card i {
    color: var(--dark);
    transition: var(--transition);
}
.payment-method-card.selected i,
.payment-method-card:hover i {
    color: var(--primary);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 7px);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(2) {
    opacity: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

/* ===== MOBILE NAVBAR COLLAPSE (hamburger menu) ===== */
@media (max-width: 1199.98px) {
    .navbar-custom {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }
    .navbar-custom .navbar-collapse {
        background: #ffffff !important;
        border-radius: 16px;
        margin-top: 12px;
        padding: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.10);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
    .navbar-custom .navbar-collapse .navbar-nav {
        width: 100%;
        gap: 4px;
    }
    .navbar-custom .navbar-collapse .nav-link {
        padding: 12px 16px !important;
        font-size: 1rem;
        border-radius: 10px;
        color: var(--dark) !important;
    }
    .navbar-custom .navbar-collapse .nav-link:hover,
    .navbar-custom .navbar-collapse .nav-link.active {
        background: rgba(233, 30, 99, 0.08) !important;
        color: var(--primary) !important;
    }
    .navbar-custom .navbar-collapse .nav-link::after {
        display: none;
    }
    .navbar-custom .navbar-collapse .d-flex {
        flex-direction: column;
        width: 100%;
        gap: 10px !important;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }
    .navbar-custom .navbar-collapse .btn-login,
    .navbar-custom .navbar-collapse .btn-register {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 12px 22px;
        font-size: 0.95rem;
    }
    .navbar-custom .navbar-collapse .dropdown-menu {
        position: static !important;
        width: 100%;
        margin-top: 8px;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.06);
        background: #f9f9fb;
    }
    .navbar-custom .navbar-collapse .dropdown-menu.show {
        display: block;
    }
    .navbar-custom .navbar-brand span {
        color: var(--dark);
    }
}

/* ===== CARDS ===== */
.card-custom {
    background: var(--light);
    border-radius: var(--radius);
    padding: 36px 28px 32px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.card-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: var(--transition);
}
.card-custom:hover::before {
    transform: scaleX(1);
}
.card-custom:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* ===== FORMS ===== */
.form-control-custom,
.form-select-custom {
    border: 1.5px solid #e8e8e8;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.92rem;
    transition: var(--transition);
    background: #fff;
    box-shadow: none;
}
.form-control-custom:focus,
.form-select-custom:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.08);
}
.form-label-custom {
    font-weight: 600;
    font-size: 0.8rem;
    color: #555;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

/* ===== FOOTER ===== */
.mega-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 70px 0 30px;
}
.mega-footer h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}
.mega-footer .footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}
.mega-footer .footer-brand span {
    color: #fff;
}
.mega-footer .footer-text {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.7;
    max-width: 300px;
}
.mega-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mega-footer ul li {
    padding: 5px 0;
    font-size: 0.88rem;
    transition: var(--transition);
}
.mega-footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}
.mega-footer ul li a:hover {
    color: var(--primary);
    padding-left: 4px;
}
.mega-footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    margin-right: 8px;
    font-size: 1rem;
}
.mega-footer .social-links a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}
.mega-footer .newsletter-input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 10px 20px;
    color: #fff;
    font-size: 0.9rem;
    width: 100%;
    transition: var(--transition);
}
.mega-footer .newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}
.mega-footer .newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}
.mega-footer .btn-subscribe {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    margin-top: 10px;
}
.mega-footer .btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.3);
    color: #fff;
}
.mega-footer .footer-divider {
    border-color: rgba(255, 255, 255, 0.06);
    margin: 30px 0 20px;
}
.mega-footer .copyright {
    font-size: 0.85rem;
    opacity: 0.5;
    text-align: center;
}
@media (max-width: 768px) {
    .mega-footer {
        padding: 40px 0 20px;
    }
    .mega-footer .footer-text {
        max-width: 100%;
    }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.3);
    transition: var(--transition);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.4);
    color: #fff;
}

/* ===== MISC ===== */
.text-primary-custom {
    color: var(--primary);
}
.bg-primary-custom {
    background: var(--primary);
}
.border-primary-custom {
    border-color: var(--primary);
}

/* Counter animation */
.counter-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--primary);
}

/* ===== RESPONSIVE FINE-TUNE ===== */
@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
}

/* ===== GSAP ANIMATION HELPERS ===== */
.gsap-fade-up {
    opacity: 0;
    transform: translateY(40px);
}
.gsap-fade-in {
    opacity: 0;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: linear-gradient(160deg, var(--accent-light) 0%, #ffffff 40%, #fffbfd 100%);
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(248, 187, 208, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-content .hero-badge {
    display: inline-block;
    background: rgba(233, 30, 99, 0.08);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(233, 30, 99, 0.1);
}
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 20px;
    color: var(--dark);
}
.hero-content h1 .highlight {
    color: var(--primary);
    position: relative;
}
.hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent);
    border-radius: 10px;
    z-index: -1;
}
.hero-content p {
    font-size: 1.2rem;
    color: #555;
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 32px;
}
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.hero-stats .stat-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2px;
}
.hero-stats .stat-item p {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
    font-weight: 500;
}
.hero-image-wrapper {
    position: relative;
    z-index: 2;
}
.hero-image-wrapper .main-image {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
    animation: float 4s ease-in-out infinite;
    z-index: 5;
}
.floating-card i {
    color: var(--primary);
    font-size: 1.1rem;
}
.floating-card .check-icon {
    background: var(--primary);
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
}
.floating-card.fc1 {
    top: 8%;
    right: -12%;
    animation-delay: 0s;
}
.floating-card.fc2 {
    bottom: 22%;
    left: -10%;
    animation-delay: 1.2s;
}
.floating-card.fc3 {
    top: 42%;
    right: -18%;
    animation-delay: 2.4s;
}
.floating-card.fc4 {
    bottom: 8%;
    right: 8%;
    animation-delay: 0.6s;
}
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-14px);
    }
}
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }
    .hero-stats .stat-item h3 {
        font-size: 1.4rem;
    }
    .floating-card {
        display: none;
    }
    .hero-section {
        padding: 100px 0 40px;
    }
}
@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-stats {
        gap: 16px;
    }
    .hero-stats .stat-item h3 {
        font-size: 1.2rem;
    }
}

/* ===== SEARCH SECTION ===== */
.search-section {
    margin-top: -50px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}
.search-widget {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius);
    padding: 32px 36px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.search-widget .form-label {
    font-weight: 600;
    font-size: 0.8rem;
    color: #555;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.search-widget .form-control,
.search-widget .form-select {
    border: 1.5px solid #e8e8e8;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.92rem;
    transition: var(--transition);
    background: #fff;
    box-shadow: none;
}
.search-widget .form-control:focus,
.search-widget .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.08);
}
.search-widget .btn-search {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    width: 100%;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.3);
}
.search-widget .btn-search:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.4);
    color: #fff;
}
@media (max-width: 768px) {
    .search-widget {
        padding: 24px 20px;
    }
    .search-section {
        margin-top: -30px;
    }
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--light);
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    color: #444;
    padding: 8px 0;
    transition: var(--transition);
}
.trust-item:hover {
    color: var(--primary);
    transform: translateY(-2px);
}
.trust-item i {
    font-size: 1.5rem;
    color: var(--primary);
    background: var(--accent);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.trust-item:hover i {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .trust-item {
        font-size: 0.8rem;
        gap: 8px;
    }
    .trust-item i {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
}

/* ===== WHY CARDS ===== */
.why-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 36px 28px 32px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: var(--transition);
}
.why-card:hover::before {
    transform: scaleX(1);
}
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.why-card .icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}
.why-card:hover .icon-wrap {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05) rotate(-5deg);
}
.why-card h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.why-card p {
    font-size: 0.92rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* ===== STORY CARDS ===== */
.story-card {
    background: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
}
.story-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.story-card .story-img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}
.story-card .story-body {
    padding: 22px 24px 24px;
}
.story-card .story-body .couple-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2px;
}
.story-card .story-body .story-date {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 8px;
}
.story-card .story-body .story-text {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}
.story-card .story-body .stars {
    color: #f9a825;
    letter-spacing: 2px;
    font-size: 0.9rem;
}
.swiper-pagination-bullet {
    background: var(--primary) !important;
    opacity: 0.3;
}
.swiper-pagination-bullet-active {
    opacity: 1;
}

/* ===== STEP ITEMS ===== */
.step-item {
    text-align: center;
    position: relative;
    padding: 0 10px;
}
.step-item .step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.3);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}
.step-item:hover .step-number {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.4);
}
.step-item .step-line {
    position: absolute;
    top: 32px;
    left: 50%;
    right: -50%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 0;
    opacity: 0.3;
}
.step-item:last-child .step-line {
    display: none;
}
.step-item h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 4px;
}
.step-item p {
    font-size: 0.88rem;
    color: #666;
    margin: 0;
}
@media (max-width: 768px) {
    .step-item .step-line {
        display: none;
    }
    .step-item {
        margin-bottom: 30px;
    }
}

/* ===== PRICING CARDS ===== */
.pricing-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 32px 24px 28px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.pricing-card.popular {
    border: 2px solid var(--primary);
    box-shadow: 0 8px 40px rgba(233, 30, 99, 0.12);
}
.pricing-card.popular .popular-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.pricing-card .plan-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 4px;
}
.pricing-card .plan-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary);
}
.pricing-card .plan-price small {
    font-size: 1rem;
    font-weight: 400;
    color: #888;
}
.pricing-card .plan-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 24px;
    text-align: left;
}
.pricing-card .plan-features li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-card .plan-features li i {
    color: var(--primary);
    font-size: 0.9rem;
    width: 20px;
}
.pricing-card .plan-features li .fa-times {
    color: #ccc;
}

/* ===== PROFILE CARDS ===== */
.profile-card {
    background: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
}
.profile-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}
.profile-card .profile-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.profile-card .profile-body {
    padding: 18px 20px 20px;
}
.profile-card .profile-body .p-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 2px;
}
.profile-card .profile-body .p-detail {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 2px;
}
.profile-card .profile-body .p-compat {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 2px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 6px;
}
.profile-card .profile-body .btn-outline-custom-sm {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    transition: var(--transition);
}
.profile-card .profile-body .btn-outline-custom-sm:hover {
    background: var(--primary);
    color: #fff;
}
.profile-card .profile-body .btn-primary-custom-sm {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    transition: var(--transition);
}
.profile-card .profile-body .btn-primary-custom-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(233, 30, 99, 0.3);
    color: #fff;
}

/* ===== AI SECTION ===== */
.ai-section {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}
.ai-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.ai-section .ai-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
}
.ai-section .ai-title .highlight {
    color: var(--secondary);
}
.ai-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ai-feature:last-child {
    border-bottom: none;
}
.ai-feature .ai-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--secondary);
    flex-shrink: 0;
}
.ai-feature .ai-feature-text {
    font-weight: 500;
}
.ai-feature .ai-feature-text small {
    display: block;
    font-weight: 400;
    opacity: 0.6;
    font-size: 0.8rem;
}
.ai-dashboard {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}
.ai-dashboard .db-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.ai-dashboard .db-item:last-child {
    border-bottom: none;
}
.ai-dashboard .db-item .db-label {
    font-size: 0.85rem;
    opacity: 0.7;
}
.ai-dashboard .db-item .db-value {
    font-weight: 600;
    color: var(--secondary);
}
.ai-dashboard .db-progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 4px;
}
.ai-dashboard .db-progress .db-progress-bar {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}
@media (max-width: 768px) {
    .ai-section .ai-title {
        font-size: 2rem;
    }
}

/* ===== APP SECTION ===== */
.app-section {
    background: linear-gradient(160deg, #fff5f8 0%, #ffffff 50%, #fce4ec 100%);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}
.app-section .app-mockup {
    max-width: 320px;
    margin: 0 auto;
    border-radius: 32px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border: 4px solid #fff;
}
.app-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
}
.app-feature-item .af-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary);
    flex-shrink: 0;
}
.app-feature-item .af-text {
    font-weight: 500;
    font-size: 0.95rem;
}
.app-feature-item .af-text small {
    display: block;
    font-weight: 400;
    color: #777;
    font-size: 0.8rem;
}

/* ===== SERVICE CARDS ===== */
.service-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 30px 24px 28px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    height: 100%;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.service-card .sv-icon {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 14px;
    display: block;
}
.service-card h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 6px;
}
.service-card p {
    font-size: 0.88rem;
    color: #666;
    margin: 0;
}

/* ===== BLOG CARDS ===== */
.blog-card {
    background: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.blog-card .blog-img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}
.blog-card .blog-body {
    padding: 20px 22px 22px;
}
.blog-card .blog-body .blog-tag {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--accent);
    padding: 2px 14px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.blog-card .blog-body h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 6px;
}
.blog-card .blog-body p {
    font-size: 0.88rem;
    color: #666;
    margin-bottom: 12px;
}
.blog-card .blog-body .read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}
.blog-card .blog-body .read-more:hover {
    color: var(--primary-dark);
    letter-spacing: 0.5px;
}

/* ===== FAQ SECTION ===== */
.faq-section .accordion-item {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: transparent;
}
.faq-section .accordion-item:last-child {
    border-bottom: none;
}
.faq-section .accordion-button {
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 18px 0;
    box-shadow: none;
    color: var(--dark);
}
.faq-section .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: transparent;
    box-shadow: none;
}
.faq-section .accordion-button::after {
    background-image: none;
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--primary);
    transition: var(--transition);
}
.faq-section .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}
.faq-section .accordion-body {
    padding: 0 0 20px;
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: var(--radius);
    padding: 80px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(248, 187, 208, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
}
.cta-section p {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 500px;
    margin: 12px auto 28px;
    position: relative;
    z-index: 2;
}
.cta-section .btn-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    padding: 16px 48px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 8px 40px rgba(233, 30, 99, 0.35);
    position: relative;
    z-index: 2;
}
.cta-section .btn-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 60px rgba(233, 30, 99, 0.45);
    color: #fff;
}
@media (max-width: 768px) {
    .cta-section {
        padding: 50px 20px;
    }
    .cta-section h2 {
        font-size: 2.2rem;
    }
    .cta-section p {
        font-size: 1rem;
    }
}

/* ===== LUXURY AND GLASSMORPHIC UPDATES ===== */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(211, 18, 93, 0.25);
}

.luxury-badge {
    background: linear-gradient(135deg, var(--gold), #ecd19d);
    color: #fff;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
}

/* Dashboard Navigation Modernization & Luxury Style */
.dashboard-sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.dashboard-sidebar-menu li a, .dashboard-sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-radius: 12px;
    color: #4f566b;
    font-weight: 550;
    font-size: 0.92rem;
    transition: var(--transition);
    text-decoration: none;
    margin-bottom: 6px;
    border: 1px solid transparent;
}
.dashboard-sidebar-menu li a i, .dashboard-sidebar-nav .nav-link i {
    font-size: 1.15rem;
    color: #8892b0;
    transition: var(--transition);
}
.dashboard-sidebar-menu li a.active,
.dashboard-sidebar-menu li a:hover,
.dashboard-sidebar-nav .nav-link.active,
.dashboard-sidebar-nav .nav-link:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(211, 18, 93, 0.25);
    transform: translateX(4px);
    border-color: rgba(255, 255, 255, 0.1);
}
.dashboard-sidebar-menu li a.active i,
.dashboard-sidebar-menu li a:hover i,
.dashboard-sidebar-nav .nav-link.active i,
.dashboard-sidebar-nav .nav-link:hover i {
    color: #fff;
    transform: scale(1.15) rotate(-5deg);
}

/* Premium Glassmorphic Override for User Dashboard Cards */
.card-custom {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 10px 30px rgba(211, 18, 93, 0.03), 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.card-custom::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: var(--transition);
}
.card-custom:hover::after {
    opacity: 1;
}
.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(211, 18, 93, 0.08);
}

/* Profile Image Glowing Completion Ring */
.profile-completion-wrapper {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 20px;
}
.profile-completion-wrapper img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.profile-completion-svg {
    width: 130px;
    height: 130px;
    transform: rotate(-90deg);
}
.profile-completion-circle-bg {
    fill: none;
    stroke: #f3f3f3;
    stroke-width: 5;
}
.profile-completion-circle {
    fill: none;
    stroke: url(#completionGradient);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 377;
    stroke-dashoffset: 377;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Micro-Animations & Glows */
.badge-pulse {
    animation: pulseGlowBadge 2s infinite alternate;
}
@keyframes pulseGlowBadge {
    0% {
        box-shadow: 0 0 4px rgba(211, 18, 93, 0.4);
    }
    100% {
        box-shadow: 0 0 12px rgba(255, 51, 119, 0.8);
    }
}

.profile-card {
    transition: var(--transition);
}
.profile-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(211, 18, 93, 0.12);
}

.dashboard-stat-card {
    background: #ffffff;
    border-radius: var(--radius-sm);
    padding: 20px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 5px 15px rgba(0,0,0,0.01);
    transition: var(--transition);
}
.dashboard-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(211, 18, 93, 0.06);
    border-color: rgba(211, 18, 93, 0.1);
}

/* Custom Table in Dashboard */
.table-custom-wrap {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.table-custom-wrap .table {
    margin-bottom: 0;
}
.table-custom-wrap .table th {
    background: #fdfafb;
    font-weight: 600;
    color: #4f566b;
    border-bottom: 2px solid rgba(0, 0, 0, 0.03);
}
.table-custom-wrap .table td {
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

/* Pulse animation for notifications or pending badge */
.pulse-badge {
    position: relative;
}
.pulse-badge::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* ===== PREMIUM PROFILE PAGE ===== */
.profile-hero {
    position: relative;
    margin-top: -80px;
    padding-top: 80px;
}

.profile-cover {
    position: relative;
    height: 350px;
    overflow: hidden;
}

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

.profile-cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

.profile-main-content {
    max-width: 1400px;
    margin: -120px auto 0;
    padding: 0 20px 40px;
    position: relative;
    z-index: 10;
}

.profile-avatar-section {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.profile-avatar-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
}

.profile-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 6px solid white;
    box-shadow: var(--shadow-premium);
    object-fit: cover;
}

.verification-badge-large {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: var(--gradient-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.premium-badge-large {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.profile-info-center {
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow-premium);
    margin-bottom: 30px;
}

.profile-name {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.profile-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.badge-verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gradient-gold);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.profile-basic-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    font-size: 16px;
    color: #6B7280;
}

.profile-basic-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.profile-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-profile-action {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.btn-profile-action.primary {
    background: var(--gradient-rose);
    color: white;
    box-shadow: 0 4px 20px rgba(211, 18, 93, 0.3);
}

.btn-profile-action.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(211, 18, 93, 0.4);
}

.btn-profile-action.secondary {
    background: white;
    color: var(--dark);
    border: 2px solid #E5E7EB;
}

.btn-profile-action.secondary:hover {
    background: #F9FAFB;
    border-color: var(--primary);
}

.btn-profile-action.icon-only {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.profile-content-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
}

.profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.profile-main {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-widget-title i {
    color: var(--primary);
}

.match-percentage-widget {
    text-align: center;
}

.match-percentage-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    position: relative;
}

.match-percentage-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.match-percentage-circle .bg {
    fill: none;
    stroke: #E5E7EB;
    stroke-width: 8;
}

.match-percentage-circle .progress {
    fill: none;
    stroke: var(--gradient-success);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    transition: stroke-dashoffset 1.5s ease;
}

.match-percentage-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
}

.match-percentage-label {
    font-size: 14px;
    color: #6B7280;
}

.profile-completion-widget {
    text-align: center;
}

.completion-score {
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.completion-label {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 15px;
}

.completion-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.completion-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.completion-item i {
    width: 20px;
    color: #10B981;
}

.completion-item.incomplete i {
    color: #E5E7EB;
}

.content-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.content-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #F3F4F6;
}

.content-card-header i {
    width: 40px;
    height: 40px;
    background: var(--gradient-rose);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.content-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
}

.content-card-body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-label {
    font-size: 13px;
    color: #6B7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 16px;
    color: var(--dark);
    font-weight: 500;
}

.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.photo-gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.photo-gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.photo-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.photo-gallery-overlay i {
    color: white;
    font-size: 24px;
}

/* Responsive */
@media (max-width: 1024px) {
    .profile-content-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-sidebar {
        order: 2;
    }
    
    .profile-main {
        order: 1;
    }
}

@media (max-width: 768px) {
    .profile-cover {
        height: 250px;
    }
    
    .profile-main-content {
        margin-top: -100px;
    }
    
    .profile-avatar-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .profile-name {
        font-size: 28px;
    }
    
    .profile-basic-info {
        flex-direction: column;
        gap: 8px;
    }
    
    .profile-actions {
        flex-direction: column;
    }
    
    .btn-profile-action {
        width: 100%;
        justify-content: center;
    }
    
    .content-card-body {
        grid-template-columns: 1fr;
    }
}

/* ===== PREMIUM SEARCH PAGE ===== */
.search-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.search-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.search-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.search-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
    margin-top: 40px;
}

.search-filters {
    position: sticky;
    top: 100px;
    height: fit-content;
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.search-filters-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-filters-title i {
    color: var(--primary);
}

.filter-group {
    margin-bottom: 20px;
}

.filter-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    display: block;
}

.filter-select,
.filter-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 15px;
    color: var(--dark);
    transition: var(--transition);
    background: white;
}

.filter-select:focus,
.filter-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(211, 18, 93, 0.1);
}

.filter-input-group {
    display: flex;
    gap: 10px;
}

.filter-input-group .filter-input {
    flex: 1;
}

.search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.search-results-count {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
}

.search-sort {
    width: auto;
    padding: 10px 16px;
}

.premium-profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.premium-profile-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
}

.premium-profile-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.premium-profile-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.premium-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-profile-badges {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.premium-badge-small {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.verified-badge-small {
    width: 40px;
    height: 40px;
    background: var(--gradient-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.match-percentage-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--gradient-premium);
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.premium-profile-body {
    padding: 20px;
}

.premium-profile-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.premium-profile-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.premium-profile-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6B7280;
}

.premium-profile-detail i {
    color: var(--primary);
    width: 16px;
}

.premium-profile-actions {
    display: flex;
    gap: 10px;
}

.premium-profile-action {
    flex: 1;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.premium-profile-action.primary {
    background: var(--gradient-rose);
    color: white;
}

.premium-profile-action.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(211, 18, 93, 0.3);
}

.premium-profile-action.secondary {
    background: #F3F4F6;
    color: var(--dark);
}

.premium-profile-action.secondary:hover {
    background: #E5E7EB;
}

.premium-profile-action.icon-only {
    flex: 0 0 45px;
    padding: 0;
}

.no-results {
    background: white;
    border-radius: 16px;
    padding: 60px 30px;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.no-results i {
    font-size: 64px;
    color: #E5E7EB;
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 12px;
}

.no-results p {
    color: #6B7280;
    margin-bottom: 25px;
}

/* Search Page Responsive */
@media (max-width: 1024px) {
    .search-layout {
        grid-template-columns: 280px 1fr;
    }
}

@media (max-width: 768px) {
    .search-hero {
        padding: 80px 0 60px;
    }
    
    .search-hero h1 {
        font-size: 32px;
    }
    
    .search-layout {
        grid-template-columns: 1fr;
    }
    
    .search-filters {
        position: static;
        margin-bottom: 30px;
    }
    
    .premium-profile-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .search-results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .search-sort {
        width: 100%;
    }
}

/* ===== PREMIUM HOMEPAGE ENHANCEMENTS ===== */
.premium-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--premium-purple) 100%);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.premium-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: heroFloat 20s ease-in-out infinite;
}

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

.premium-hero-content {
    position: relative;
    z-index: 10;
}

.premium-hero-title {
    font-size: 64px;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
}

.premium-hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    max-width: 600px;
}

.premium-hero-stats {
    display: flex;
    gap: 60px;
    margin-top: 50px;
}

.premium-hero-stat {
    text-align: center;
}

.premium-hero-stat-number {
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.premium-hero-stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-top: 8px;
}

.premium-search-widget {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-premium);
    margin-top: -80px;
    position: relative;
    z-index: 20;
}

.premium-search-row {
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

.premium-search-field {
    flex: 1;
}

.premium-search-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-search-select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 15px;
    color: var(--dark);
    background: white;
    transition: var(--transition);
}

.premium-search-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(211, 18, 93, 0.1);
}

.premium-search-btn {
    padding: 14px 32px;
    background: var(--gradient-rose);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.premium-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(211, 18, 93, 0.4);
}

.premium-trust-bar {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    padding: 30px 0;
}

.premium-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 15px;
    font-weight: 600;
}

.premium-trust-item i {
    font-size: 24px;
}

.premium-section {
    padding: 100px 0;
}

.premium-section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.premium-section-subtitle {
    font-size: 18px;
    color: #6B7280;
    margin-bottom: 50px;
}

.premium-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.premium-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-rose);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}

.premium-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.premium-card-text {
    color: #6B7280;
    line-height: 1.6;
}

.premium-cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 100px 0;
    text-align: center;
    color: white;
}

.premium-cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.premium-cta-text {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.premium-cta-btn {
    padding: 18px 48px;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.premium-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Homepage Responsive */
@media (max-width: 768px) {
    .premium-hero {
        padding: 100px 0 80px;
    }
    
    .premium-hero-title {
        font-size: 36px;
    }
    
    .premium-hero-subtitle {
        font-size: 16px;
    }
    
    .premium-hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .premium-search-widget {
        margin-top: -40px;
        padding: 20px;
    }
    
    .premium-search-row {
        flex-direction: column;
    }
    
    .premium-search-field {
        width: 100%;
    }
    
    .premium-search-btn {
        width: 100%;
    }
    
    .premium-section {
        padding: 60px 0;
    }
    
    .premium-section-title {
        font-size: 32px;
    }
    
    .premium-cta-title {
        font-size: 32px;
    }
    
    .premium-cta-btn {
        padding: 14px 32px;
        font-size: 16px;
    }
}

/* ===== PREMIUM REGISTER WIZARD ===== */
.register-wizard {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
}

.register-wizard-container {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-premium);
    max-width: 900px;
    margin: 0 auto;
}

.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.wizard-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 3px;
    background: #E5E7EB;
    z-index: 1;
}

.wizard-progress-bar {
    position: absolute;
    top: 20px;
    left: 0;
    height: 3px;
    background: var(--gradient-rose);
    z-index: 2;
    transition: width 0.5s ease;
}

.wizard-step {
    position: relative;
    z-index: 3;
    text-align: center;
}

.wizard-step-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #E5E7EB;
    color: #6B7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    margin: 0 auto 12px;
    transition: var(--transition);
    border: 3px solid white;
}

.wizard-step.active .wizard-step-number {
    background: var(--gradient-rose);
    color: white;
    box-shadow: 0 4px 15px rgba(211, 18, 93, 0.3);
}

.wizard-step.completed .wizard-step-number {
    background: var(--gradient-success);
    color: white;
}

.wizard-step-label {
    font-size: 13px;
    font-weight: 600;
    color: #6B7280;
}

.wizard-step.active .wizard-step-label {
    color: var(--primary);
}

.wizard-step-content {
    display: none;
}

.wizard-step-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.wizard-form-group {
    margin-bottom: 20px;
}

.wizard-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.wizard-form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 15px;
    color: var(--dark);
    transition: var(--transition);
}

.wizard-form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(211, 18, 93, 0.1);
}

.wizard-form-input.error {
    border-color: #EF4444;
}

.wizard-form-input.success {
    border-color: #10B981;
}

.wizard-form-error {
    color: #EF4444;
    font-size: 13px;
    margin-top: 6px;
    display: none;
}

.wizard-form-input.error + .wizard-form-error {
    display: block;
}

.wizard-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #F3F4F6;
}

.wizard-btn {
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.wizard-btn-primary {
    background: var(--gradient-rose);
    color: white;
}

.wizard-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(211, 18, 93, 0.4);
}

.wizard-btn-secondary {
    background: #F3F4F6;
    color: var(--dark);
}

.wizard-btn-secondary:hover {
    background: #E5E7EB;
}

.wizard-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.wizard-header {
    text-align: center;
    margin-bottom: 40px;
}

.wizard-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.wizard-header p {
    color: #6B7280;
    font-size: 16px;
}

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

/* Register Wizard Responsive */
@media (max-width: 768px) {
    .register-wizard {
        padding: 80px 0 60px;
    }
    
    .register-wizard-container {
        padding: 25px;
        border-radius: 16px;
    }
    
    .wizard-header h1 {
        font-size: 28px;
    }
    
    .wizard-progress {
        margin-bottom: 30px;
    }
    
    .wizard-step-label {
        font-size: 11px;
    }
    
    .wizard-grid {
        grid-template-columns: 1fr;
    }
    
    .wizard-buttons {
        flex-direction: column-reverse;
        gap: 15px;
    }
    
    .wizard-btn {
        width: 100%;
    }
}

/* ===== PREMIUM PRICING PAGE ===== */
.pricing-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.pricing-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.pricing-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-section {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.premium-pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: var(--shadow-card);
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
}

.premium-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

.premium-pricing-card.popular {
    border: 3px solid var(--primary);
    transform: scale(1.05);
}

.premium-pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.pricing-plan-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    text-align: center;
}

.pricing-price {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-price-amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.pricing-price-currency {
    font-size: 24px;
    vertical-align: top;
}

.pricing-price-period {
    font-size: 16px;
    color: #6B7280;
    margin-top: 8px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #F3F4F6;
    font-size: 15px;
    color: #374151;
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-feature i {
    color: #10B981;
    font-size: 18px;
    width: 20px;
}

.pricing-feature i.unavailable {
    color: #EF4444;
}

.pricing-cta {
    text-align: center;
}

.pricing-cta-btn {
    width: 100%;
    padding: 16px 32px;
    background: var(--gradient-rose);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.pricing-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(211, 18, 93, 0.4);
}

.pricing-cta-btn.secondary {
    background: #F3F4F6;
    color: var(--dark);
}

.pricing-cta-btn.secondary:hover {
    background: #E5E7EB;
}

.success-stats-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.success-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.success-stat-item {
    padding: 30px 20px;
}

.success-stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
}

.success-stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.feature-matrix {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-card);
    margin-bottom: 60px;
}

.feature-matrix-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 40px;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.feature-table {
    width: 100%;
    border-collapse: collapse;
}

.feature-table th,
.feature-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #F3F4F6;
}

.feature-table th {
    font-weight: 700;
    font-size: 16px;
    color: var(--dark);
    background: #F9FAFB;
}

.feature-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.feature-table .feature-check {
    color: #10B981;
    font-size: 20px;
}

.feature-table .feature-cross {
    color: #EF4444;
    font-size: 20px;
}

/* Pricing Page Responsive */
@media (max-width: 768px) {
    .pricing-hero {
        padding: 80px 0 60px;
    }
    
    .pricing-hero h1 {
        font-size: 32px;
    }
    
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-pricing-card.popular {
        transform: none;
    }
    
    .premium-pricing-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .success-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .feature-matrix {
        padding: 20px;
        overflow-x: auto;
    }
    
    .feature-table {
        min-width: 600px;
    }
    
    .feature-table th,
    .feature-table td {
        padding: 15px 10px;
        font-size: 14px;
    }
}

/* ===== PREMIUM DASHBOARD ===== */
.dashboard-welcome-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 20px;
    padding: 40px;
    color: white;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.dashboard-welcome-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: heroFloat 20s ease-in-out infinite;
}

.dashboard-welcome-content {
    position: relative;
    z-index: 10;
}

.dashboard-welcome-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.dashboard-welcome-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 24px;
}

.dashboard-welcome-stats {
    display: flex;
    gap: 40px;
}

.dashboard-welcome-stat {
    text-align: center;
}

.dashboard-welcome-stat-number {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.dashboard-welcome-stat-label {
    font-size: 13px;
    opacity: 0.8;
    margin-top: 6px;
}

.dashboard-widget {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
    transition: var(--transition);
}

.dashboard-widget:hover {
    box-shadow: var(--shadow-hover);
}

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

.dashboard-widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-widget-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-rose);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.dashboard-progress-bar {
    height: 10px;
    background: #F3F4F6;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 12px;
}

.dashboard-progress-fill {
    height: 100%;
    background: var(--gradient-rose);
    border-radius: 5px;
    transition: width 0.5s ease;
}

.dashboard-progress-fill.success {
    background: var(--gradient-success);
}

.dashboard-progress-fill.warning {
    background: var(--gradient-warning);
}

.dashboard-trust-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.dashboard-trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.dashboard-trust-badge.verified {
    background: #D1FAE5;
    color: #065F46;
}

.dashboard-trust-badge.unverified {
    background: #F3F4F6;
    color: #6B7280;
}

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

.dashboard-kpi-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.dashboard-kpi-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.dashboard-kpi-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-bottom: 16px;
}

.dashboard-kpi-icon.primary {
    background: var(--gradient-rose);
}

.dashboard-kpi-icon.info {
    background: var(--gradient-info);
}

.dashboard-kpi-icon.success {
    background: var(--gradient-success);
}

.dashboard-kpi-icon.warning {
    background: var(--gradient-warning);
}

.dashboard-kpi-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
}

.dashboard-kpi-label {
    font-size: 14px;
    color: #6B7280;
    font-weight: 600;
}

.dashboard-match-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.dashboard-match-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.dashboard-match-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.dashboard-match-body {
    padding: 20px;
}

.dashboard-match-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.dashboard-match-details {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 16px;
}

.dashboard-match-actions {
    display: flex;
    gap: 10px;
}

.dashboard-match-btn {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
}

.dashboard-match-btn.primary {
    background: var(--gradient-rose);
    color: white;
}

.dashboard-match-btn.secondary {
    background: #F3F4F6;
    color: var(--dark);
}

.dashboard-activity-feed {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dashboard-activity-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #F3F4F6;
}

.dashboard-activity-item:last-child {
    border-bottom: none;
}

.dashboard-activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.dashboard-activity-icon.interest {
    background: var(--gradient-rose);
}

.dashboard-activity-icon.match {
    background: var(--gradient-success);
}

.dashboard-activity-icon.message {
    background: var(--gradient-info);
}

.dashboard-activity-icon.view {
    background: var(--gradient-warning);
}

.dashboard-activity-content {
    flex: 1;
}

.dashboard-activity-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.dashboard-activity-time {
    font-size: 13px;
    color: #6B7280;
}

.dashboard-upgrade-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 30px;
    color: white;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-upgrade-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.dashboard-upgrade-content p {
    opacity: 0.9;
    margin-bottom: 0;
}

.dashboard-upgrade-btn {
    padding: 14px 28px;
    background: white;
    color: #667eea;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.dashboard-upgrade-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Dashboard Responsive */
@media (max-width: 768px) {
    .dashboard-welcome-card {
        padding: 24px;
    }
    
    .dashboard-welcome-title {
        font-size: 24px;
    }
    
    .dashboard-welcome-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .dashboard-kpi-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .dashboard-upgrade-banner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .dashboard-upgrade-btn {
        width: 100%;
    }
}

/* ===== STORE MODULE ===== */
.store-toolbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.store-sidebar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
}
.store-sidebar-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(233, 30, 99, 0.1);
}
.store-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.store-category-list li {
    margin-bottom: 4px;
}
.store-category-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}
.store-category-list li a:hover,
.store-category-list li a.active {
    background: rgba(233, 30, 99, 0.08);
    color: var(--primary);
}
.store-category-list li a i {
    font-size: 0.85rem;
    width: 20px;
    text-align: center;
}
.store-product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.store-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
}
.store-product-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #f8f8f8;
}
.store-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.store-product-card:hover .store-product-image img {
    transform: scale(1.08);
}
.store-product-discount {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
}
.store-product-featured {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #c5a059, #e8c488);
    color: #fff;
    font-size: 0.7rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.store-product-out {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 8px;
    z-index: 2;
}
.store-product-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.store-product-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 6px;
}
.store-product-name {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.4;
}
.store-product-name a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}
.store-product-name a:hover {
    color: var(--primary);
}
.store-product-desc {
    font-size: 0.8rem;
    color: #6B7280;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.store-product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}
.store-product-price .price-current {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
}
.store-product-price .price-original {
    font-size: 0.9rem;
    color: #9CA3AF;
    text-decoration: line-through;
}
.store-product-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}
.store-product-actions .btn {
    flex: 1;
    font-size: 0.8rem;
}
.btn-buy-now {
    background: linear-gradient(135deg, #f97316, #ea580c) !important;
    color: #fff !important;
    border: none !important;
    font-weight: 600;
    transition: var(--transition);
}
.btn-buy-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
    color: #fff !important;
}
.store-empty {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
}
.store-empty i {
    font-size: 64px;
    color: #D1D5DB;
    margin-bottom: 20px;
}
.store-empty h4 {
    color: var(--dark);
    margin-bottom: 8px;
}
.store-empty p {
    color: #6B7280;
    margin-bottom: 20px;
}

/* Product Detail */
.store-product-detail-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.store-product-detail-image img {
    width: 100%;
    object-fit: cover;
}
.store-product-detail-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin: 10px 0 16px;
}
.store-product-detail-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}
.store-product-detail-price .price-current {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}
.store-product-detail-price .price-original {
    font-size: 1.2rem;
    color: #9CA3AF;
    text-decoration: line-through;
}
.store-product-detail-price .price-save {
    font-size: 0.85rem;
    color: #16a34a;
    font-weight: 600;
}
.store-product-detail-desc {
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 16px;
}
.store-product-detail-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.store-quantity-selector {
    display: flex;
    align-items: center;
    border: 1.5px solid #e0e0e0;
    border-radius: 50px;
    overflow: hidden;
}
.store-quantity-selector .qty-btn {
    width: 40px;
    height: 44px;
    border: none;
    background: #f5f5f5;
    color: var(--dark);
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}
.store-quantity-selector .qty-btn:hover {
    background: var(--primary);
    color: #fff;
}
.store-quantity-selector .qty-input {
    width: 50px;
    height: 44px;
    border: none;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
}
.store-quantity-selector .qty-input:focus {
    outline: none;
}
.store-product-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}
.store-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #4B5563;
}
.store-feature-item i {
    color: var(--primary);
    font-size: 1rem;
}
.store-product-sidebar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.store-sidebar-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(233, 30, 99, 0.1);
}
.store-detail-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.store-detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}
.store-detail-row span:first-child {
    color: #6B7280;
}
.store-detail-row span:last-child {
    color: var(--dark);
    font-weight: 500;
}
.store-product-description {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.store-product-description h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 12px;
}
.store-product-description p {
    color: #4B5563;
    line-height: 1.8;
}

/* Cart Page */
.store-cart-list {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.store-cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition);
}
.store-cart-item:last-child {
    border-bottom: none;
}
.store-cart-item-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f8f8;
}
.store-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.store-cart-item-info {
    flex-grow: 1;
}
.store-cart-item-name {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}
.store-cart-item-price {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
}
.store-quantity-selector-sm {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}
.store-quantity-selector-sm .qty-btn-sm {
    width: 32px;
    height: 36px;
    border: none;
    background: #f5f5f5;
    color: var(--dark);
    font-size: 0.7rem;
    cursor: pointer;
    transition: var(--transition);
}
.store-quantity-selector-sm .qty-btn-sm:hover {
    background: var(--primary);
    color: #fff;
}
.store-quantity-selector-sm .qty-input-sm {
    width: 40px;
    height: 36px;
    border: none;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
}
.store-quantity-selector-sm .qty-input-sm:focus {
    outline: none;
}
.store-cart-item-total {
    min-width: 100px;
    text-align: right;
}
.store-cart-item-subtotal {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}
.store-cart-item-remove {
    flex-shrink: 0;
}
.btn-remove-cart {
    background: none;
    border: none;
    color: #dc2626;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
}
.btn-remove-cart:hover {
    background: rgba(220, 38, 38, 0.1);
}
.store-cart-summary {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
}
.store-summary-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(233, 30, 99, 0.1);
}
.store-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #4B5563;
}
.store-summary-shipping-note {
    font-size: 0.78rem;
    color: var(--primary);
    margin-top: 4px;
    margin-bottom: 10px;
}
.store-summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
}
.store-summary-total span:last-child {
    color: var(--primary);
}
.store-summary-trust {
    text-align: center;
    margin-top: 16px;
    font-size: 0.8rem;
    color: #6B7280;
}
.store-summary-trust i {
    color: #16a34a;
    margin-right: 4px;
}
.store-payment-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.store-payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}
.store-payment-option:hover {
    border-color: var(--primary);
}
.store-payment-option input:checked + span {
    color: var(--primary);
    font-weight: 600;
}
.store-payment-option:has(input:checked) {
    border-color: var(--primary);
    background: rgba(233, 30, 99, 0.04);
}

/* Store Responsive */
@media (max-width: 768px) {
    .store-sidebar {
        position: static;
        margin-bottom: 20px;
    }
    .store-product-features {
        grid-template-columns: 1fr;
    }
    .store-cart-item {
        flex-wrap: wrap;
    }
    .store-cart-item-total {
        min-width: auto;
    }
    .store-product-detail-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .store-product-detail-actions .btn {
        width: 100%;
    }
    .store-cart-summary {
        position: static;
    }
}
@media (max-width: 576px) {
    .store-product-image {
        height: 200px;
    }
    .store-cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .store-cart-item-image {
        width: 100%;
        height: 160px;
    }
    .store-cart-item-total {
        text-align: left;
    }
}

/* ===== LEGAL PAGES LAYOUT ===== */
.legal-toc {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 24px 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 100px;
}
.legal-toc-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(233, 30, 99, 0.1);
}
.legal-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.legal-toc-list li {
    margin-bottom: 2px;
}
.legal-toc-link {
    display: block;
    padding: 8px 12px;
    font-size: 0.875rem;
    color: #555;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}
.legal-toc-link:hover {
    background: rgba(233, 30, 99, 0.05);
    color: var(--primary);
    border-left-color: var(--primary);
    padding-left: 16px;
}
.legal-content {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 36px 32px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.legal-section {
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    scroll-margin-top: 100px;
}
.legal-section:first-child {
    padding-top: 0;
}
.legal-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.legal-section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.legal-section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}
.legal-section-header h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--dark);
}
.legal-section p {
    color: #555;
    line-height: 1.75;
    font-size: 0.95rem;
}
.legal-list {
    padding-left: 0;
    list-style: none;
    margin-top: 10px;
}
.legal-list li {
    position: relative;
    padding: 6px 0 6px 24px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}
.legal-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--primary);
    font-size: 0.75rem;
}
@media (max-width: 991px) {
    .legal-toc {
        position: static;
        margin-bottom: 20px;
    }
    .legal-content {
        padding: 24px 20px;
    }
}
@media (max-width: 576px) {
    .legal-section-header {
        gap: 10px;
    }
    .legal-section-number {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    .legal-section-header h5 {
        font-size: 1rem;
    }
}

/* ===== CONTACT PAGE ===== */
.contact-info-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: var(--transition);
}
.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.08);
}
.contact-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(255, 107, 107, 0.1));
    color: var(--primary);
    font-size: 1.35rem;
    margin-bottom: 16px;
}
.contact-info-card h6 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
}
.contact-info-card p {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.5;
    margin: 0;
}
.contact-social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.contact-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(233, 30, 99, 0.06);
    color: var(--primary);
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(233, 30, 99, 0.1);
}
.contact-social-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.25);
}
.contact-sidebar {
    position: sticky;
    top: 100px;
}
@media (max-width: 991px) {
    .contact-sidebar {
        position: static;
    }
}

/* ===== PASSWORD TOGGLE ===== */
.password-toggle-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.password-toggle-wrapper .password-toggle-input {
    width: 100%;
    padding-right: 48px;
}
.password-toggle-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 4px;
    font-size: 1rem;
    transition: color 0.2s ease;
    z-index: 5;
}
.password-toggle-btn:hover {
    color: var(--primary);
}
