/**
 * Lizenzpalast - Luxurious Palace Design
 * Majestic, Golden, Premium E-Commerce Experience
 */

/* ==================== CSS Variables ==================== */
:root {
    /* Luxurious Gold Palette */
    --gold-primary: #FFD700;
    --gold-dark: #B8860B;
    --gold-light: #FFF8DC;
    --gold-metallic: #D4AF37;
    --gold-shine: #FFEC8B;
    
    /* Royal Purple & Deep Blues */
    --royal-purple: #4B0082;
    --royal-purple-dark: #2E0854;
    --royal-blue: #1e3a8a;
    --deep-navy: #0f172a;
    --midnight: #0a0118;
    
    /* Premium Accents */
    --premium-red: #DC143C;
    --premium-green: #50C878;
    --premium-orange: #FF8C00;
    
    /* Neutrals */
    --white: #ffffff;
    --light-cream: #faf9f7;
    --gray-100: #f3f4f6;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --black: #000000;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows - Luxurious with Gold Glow */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.4);
    --shadow-gold-lg: 0 8px 30px rgba(255, 215, 0, 0.5);
    --glow-gold: 0 0 30px rgba(255, 215, 0, 0.3);
    
    /* Transitions */
    --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== Reset & Base ==================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-800);
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--white) 50%, var(--light-cream) 100%);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--deep-navy);
    margin-bottom: var(--space-4);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--space-4);
    line-height: 1.7;
}

a {
    color: var(--gold-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--gold-primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==================== Layout ==================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* ==================== Header & Navigation ==================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--midnight) 0%, var(--royal-purple-dark) 50%, var(--royal-blue) 100%);
    border-bottom: 3px solid var(--gold-primary);
    box-shadow: var(--shadow-xl), var(--shadow-gold);
    transition: all var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-xl), var(--shadow-gold-lg);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) 0;
    gap: var(--space-8);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-decoration: none;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    transition: all var(--transition-base);
    position: relative;
}

.logo::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.logo:hover::before {
    opacity: 1;
}

.logo:hover {
    transform: scale(1.05);
    color: var(--gold-light);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

.logo-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
    animation: gentle-glow 3s ease-in-out infinite;
}

@keyframes gentle-glow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6)); }
    50% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.9)); }
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: var(--space-2);
}

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: var(--space-2) var(--space-5);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--gold-primary);
    transition: transform var(--transition-fast);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.nav-link:hover {
    color: var(--gold-primary);
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
    color: var(--gold-primary);
    background: rgba(255, 215, 0, 0.15);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.user-menu {
    position: relative;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl), 0 0 0 2px var(--gold-primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    z-index: 1001;
    overflow: hidden;
}

.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown a {
    display: block;
    padding: var(--space-3) var(--space-5);
    color: var(--gray-800);
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-100);
    transition: all var(--transition-fast);
}

.user-dropdown a:last-child {
    border-bottom: none;
}

.user-dropdown a:hover {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1), transparent);
    color: var(--gold-dark);
    padding-left: var(--space-6);
}

.mobile-menu-toggle {
    display: none;
    background: var(--gold-primary);
    border: none;
    font-size: 1.5rem;
    color: var(--royal-purple-dark);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-gold);
}

/* ==================== Hero Section - Majestic ==================== */
.hero {
    position: relative;
    padding: var(--space-24) 0;
    background: linear-gradient(135deg, var(--midnight) 0%, var(--royal-purple-dark) 25%, var(--royal-purple) 50%, var(--royal-blue) 100%);
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 60%);
    animation: subtle-pulse 8s ease-in-out infinite;
}

@keyframes subtle-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 60px,
        rgba(255, 215, 0, 0.03) 60px,
        rgba(255, 215, 0, 0.03) 120px
    );
    animation: pattern-move 30s linear infinite;
}

@keyframes pattern-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: var(--space-6);
    line-height: 1.1;
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.5),
        0 4px 10px rgba(0, 0, 0, 0.3);
    animation: title-entrance 1s ease-out;
    letter-spacing: -0.5px;
}

@keyframes title-entrance {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--gold-light);
    margin-bottom: var(--space-10);
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: title-entrance 1s ease-out 0.2s backwards;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-5) var(--space-10);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--royal-purple-dark);
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-metallic) 100%);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-xl), var(--shadow-gold-lg);
    transition: all var(--transition-base);
    animation: title-entrance 1s ease-out 0.4s backwards;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid transparent;
}

.hero-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6), 0 0 50px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, var(--gold-shine) 0%, var(--gold-primary) 100%);
    border-color: var(--gold-light);
    color: var(--royal-purple-dark);
}

/* ==================== Section Styles ==================== */
.section {
    padding: var(--space-20) 0;
}

.section-light {
    background: linear-gradient(180deg, var(--white) 0%, var(--light-cream) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--royal-purple) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-4);
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== Product Grid ==================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: var(--space-8);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 2px solid var(--gray-100);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--shadow-md);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(255, 215, 0, 0.25);
    border-color: var(--gold-primary);
}

.product-image {
    position: relative;
    width: 100%;
    height: 260px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--light-cream) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 3px solid var(--gold-primary);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badges {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    z-index: 10;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-2) var(--space-4);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--royal-purple);
    box-shadow: var(--shadow-lg);
    white-space: nowrap;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border: 1px solid var(--gold-primary);
}

.product-content {
    padding: var(--space-6);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-2);
}

.product-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: var(--space-3);
    line-height: 1.3;
}

.product-description {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-5);
    flex: 1;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-5);
}

.stars {
    color: var(--gold-primary);
    font-size: 1rem;
    letter-spacing: 2px;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
}

.rating-text {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    padding: var(--space-4) 0;
    border-top: 2px solid var(--gray-100);
    border-bottom: 2px solid var(--gray-100);
}

.price-current {
    font-size: 2.25rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--premium-red) 0%, #ff1744 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-old {
    font-size: 1.1rem;
    color: var(--gray-300);
    text-decoration: line-through;
}

.price-save {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--premium-green);
    padding: var(--space-1) var(--space-3);
    background: rgba(80, 200, 120, 0.1);
    border-radius: var(--radius-full);
    border: 1px solid var(--premium-green);
}

.product-actions {
    display: flex;
    gap: var(--space-3);
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    cursor: pointer;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-metallic) 100%);
    color: var(--royal-purple-dark);
    flex: 1;
    box-shadow: var(--shadow-md), 0 0 15px rgba(255, 215, 0, 0.3);
    border: 2px solid var(--gold-dark);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-shine) 0%, var(--gold-primary) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    color: var(--royal-purple-dark);
}

.btn-secondary {
    background: var(--white);
    color: var(--gold-dark);
    border: 2px solid var(--gold-primary);
}

.btn-secondary:hover {
    background: var(--gold-light);
    color: var(--royal-purple);
    border-color: var(--gold-dark);
}

.btn-icon {
    padding: var(--space-3);
    width: 48px;
    height: 48px;
}

.btn-lg {
    padding: var(--space-5) var(--space-10);
    font-size: 1.1rem;
}

/* ==================== Category Cards ==================== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
}

.category-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-10) var(--space-6);
    text-align: center;
    border: 2px solid var(--gray-100);
    transition: all var(--transition-base);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(255, 215, 0, 0.2);
    border-color: var(--gold-primary);
    background: linear-gradient(135deg, var(--white) 0%, var(--light-cream) 100%);
}

.category-icon {
    font-size: 4rem;
    margin-bottom: var(--space-4);
    display: inline-block;
    transition: transform var(--transition-base);
    filter: drop-shadow(0 4px 10px rgba(255, 215, 0, 0.3));
}

.category-card:hover .category-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 8px 20px rgba(255, 215, 0, 0.5));
}

.category-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: var(--space-2);
}

.category-description {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ==================== Footer ==================== */
.footer {
    background: linear-gradient(135deg, var(--midnight) 0%, var(--royal-purple-dark) 50%, var(--royal-blue) 100%);
    color: var(--gold-light);
    padding: var(--space-20) 0 var(--space-8);
    margin-top: var(--space-24);
    border-top: 4px solid var(--gold-primary);
    box-shadow: 0 -10px 40px rgba(255, 215, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-10);
    margin-bottom: var(--space-16);
}

.footer-section h3 {
    color: var(--gold-primary);
    font-size: 1.25rem;
    margin-bottom: var(--space-5);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.footer-section p,
.footer-section a {
    color: var(--gold-light);
    line-height: 1.8;
    transition: all var(--transition-fast);
}

.footer-section a:hover {
    color: var(--gold-primary);
    padding-left: 8px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-3);
}

.footer-bottom {
    border-top: 2px solid rgba(255, 215, 0, 0.2);
    padding-top: var(--space-8);
    text-align: center;
    color: var(--gold-light);
    font-size: 0.9rem;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.25rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 3;
    }
    
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        order: 4;
        padding: var(--space-6) 0;
        border-top: 2px solid var(--gold-primary);
        background: rgba(10, 1, 24, 0.95);
        border-radius: var(--radius-lg);
        margin-top: var(--space-4);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        width: 100%;
        justify-content: center;
        padding: var(--space-4);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: var(--space-16) 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 var(--space-4);
    }
}

/* ==================== Utility Classes ==================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.flex-column { flex-direction: column; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }

/* ==================== Royal Palace Theme Enhancements ==================== */

/* Hero Tagline */
.hero-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-top: var(--space-4);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Trust Badges Section */
.trust-badges {
    background: white;
    padding: var(--space-8) 0;
    border-bottom: 1px solid var(--gray-300);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    transition: transform var(--transition-fast);
}

.trust-item:hover {
    transform: translateY(-2px);
}

.trust-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

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

.trust-text strong {
    font-size: 0.95rem;
    color: var(--gray-900);
    font-weight: 700;
}

.trust-text span {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* Royal Advisor Section */
.royal-advisor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.advisor-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    transition: all var(--transition-base);
}

.advisor-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.advisor-icon {
    font-size: 3rem;
    margin-bottom: var(--space-4);
}

.advisor-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: var(--space-2);
    font-weight: 700;
}

.advisor-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-4);
    font-size: 0.95rem;
}

.btn-light {
    background: white;
    color: var(--royal-purple);
    font-weight: 600;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-lg);
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition-fast);
}

.btn-light:hover {
    background: var(--gold-primary);
    color: var(--royal-purple-dark);
    transform: scale(1.05);
}

/* Royal Honors (Loyalty Program) */
.honors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.honor-tier {
    background: white;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
}

.honor-tier.featured {
    border-color: var(--gold-primary);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
    transform: scale(1.05);
}

.honor-tier:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.tier-badge {
    font-size: 4rem;
    margin-bottom: var(--space-4);
}

.honor-tier h3 {
    color: var(--royal-purple);
    font-size: 1.5rem;
    margin-bottom: var(--space-2);
    font-weight: 800;
}

.honor-tier p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: var(--space-4);
}

.tier-benefits {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: var(--space-6) 0 0 0;
}

.tier-benefits li {
    padding: var(--space-2) 0;
    color: var(--gray-700);
    font-size: 0.9rem;
    line-height: 1.6;
}

.tier-benefits li strong {
    color: var(--gray-900);
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: var(--space-4);
    align-items: center;
    margin-top: var(--space-8);
}

.step-card {
    background: white;
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold-lg);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-primary);
    color: var(--royal-purple-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

.step-icon {
    font-size: 3rem;
    margin: var(--space-4) 0;
}

.step-card h3 {
    color: var(--royal-purple);
    font-size: 1.3rem;
    margin-bottom: var(--space-2);
    font-weight: 700;
}

.step-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: var(--gold-primary);
    font-weight: 700;
}

/* Business VIP Section */
.business-vip-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.business-vip-text h2 {
    font-family: var(--font-display);
}

.business-benefits {
    list-style: none;
    padding: 0;
    margin: var(--space-6) 0;
}

.business-benefits li {
    padding: var(--space-3) 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    line-height: 1.8;
}

.business-benefits li strong {
    color: var(--gold-primary);
}

/* Responsive Adjustments for Royal Theme */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .step-arrow {
        display: none;
    }
    
    .business-vip-content {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .business-vip-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-4);
    }
    
    .royal-advisor-grid {
        grid-template-columns: 1fr;
    }
    
    .honors-grid {
        grid-template-columns: 1fr;
    }
    
    .honor-tier.featured {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
}

/* Additional Royal Polish */
.mt-3 { margin-top: var(--space-6); }

.section-header {
    margin-bottom: var(--space-10);
}

/* Enhanced Button for Royal Theme */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

