:root {
    --black: #0a0a0a;
    --black-light: #1a1a1a;
    --black-lighter: #2a2a2a;
    --gold: #d4af37;
    --gold-light: #f4d160;
    --gold-dark: #b8960c;
    --white: #fafafa;
    --gray: #888888;
    --gray-light: #cccccc;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

.gold-text {
    color: var(--gold);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: linear-gradient(180deg, var(--black) 0%, transparent 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
}

.logo i {
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold);
}

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

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

/* Main Content */
.main-content {
    min-height: calc(100vh - 80px);
    padding-top: 80px;
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background: radial-gradient(ellipse at center, var(--black-light) 0%, var(--black) 70%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--gray-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border: none;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

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

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-large {
    padding: 20px 50px;
    font-size: 1rem;
}

.btn-guest {
    font-weight: 700;
    letter-spacing: 1px;
}

.btn-link-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 10px 20px;
    transition: color 0.3s ease;
}

.btn-link-secondary:hover {
    color: var(--gold);
}

.signin-option {
    margin-top: 30px;
    text-align: center;
}

.signin-option .auth-note {
    color: var(--gray);
    font-size: 0.8rem;
    margin-top: 8px;
}

/* Go Pro Button in Nav */
.btn-go-pro {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    padding: 6px 14px;
    border-radius: 20px;
    border: none;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-go-pro:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-go-pro i {
    font-size: 0.7rem;
}

/* Go Pro Button next to Logo - hidden on desktop, shown on mobile */
.btn-go-pro-logo {
    display: none;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    padding: 5px 10px;
    border-radius: 15px;
    border: none;
    font-size: 0.65rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 10px;
}

.btn-go-pro-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-go-pro-logo i {
    font-size: 0.6rem;
}

/* Standalone Go Pro Nav Button */
.nav-go-pro-standalone {
    margin-right: 5px;
}

.btn-go-pro-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    padding: 8px 16px;
    border-radius: 20px;
    border: none;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-go-pro-nav:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-go-pro-nav i {
    font-size: 0.7rem;
}

/* User Dropdown */
.nav-user-dropdown {
    position: relative;
}

.nav-user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--black-lighter);
    border-radius: 25px;
    padding: 6px 12px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-user-btn:hover {
    border-color: var(--gold);
    background: var(--black-light);
}

.nav-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-avatar-icon {
    font-size: 1.4rem;
    color: var(--gray-light);
}

.nav-name {
    font-size: 0.85rem;
    font-weight: 500;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-arrow {
    font-size: 0.65rem;
    color: var(--gray);
    transition: transform 0.3s ease;
}

.nav-user-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--black-light);
    border: 1px solid var(--black-lighter);
    border-radius: 12px;
    min-width: 180px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.nav-user-dropdown.open .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.dropdown-item:hover {
    background: var(--black-lighter);
    color: var(--gold);
}

.dropdown-item i {
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
}

.dropdown-item.go-pro-item {
    color: var(--gold);
    font-weight: 600;
}

.dropdown-item.go-pro-item:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* Pro Modal */
.pro-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.pro-modal {
    background: linear-gradient(145deg, var(--black-light), var(--black));
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 40px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.pro-modal .modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s;
}

.pro-modal .modal-close:hover {
    color: var(--gold);
}

.pro-modal-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pro-modal-icon i {
    font-size: 2rem;
    color: var(--black);
}

.pro-modal h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.pro-modal-subtitle {
    color: var(--gray-light);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.pro-benefits {
    list-style: none;
    text-align: left;
    margin: 0 0 25px 0;
    padding: 0;
}

.pro-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--white);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--black-lighter);
}

.pro-benefits li:last-child {
    border-bottom: none;
}

.pro-benefits li i {
    color: var(--gold);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.pro-price {
    margin-bottom: 20px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
}

.price-period {
    color: var(--gray);
    font-size: 1rem;
}

.btn-subscribe {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    padding: 16px 30px;
    border-radius: 30px;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-subscribe:disabled {
    opacity: 0.7;
    cursor: wait;
}

/* Trial Modal Styles */
.trial-modal .trial-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.btn-start-trial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    padding: 16px 30px;
    border-radius: 30px;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    margin: 15px 0;
}

.btn-start-trial:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-start-trial:disabled {
    opacity: 0.7;
    cursor: wait;
}

.trial-signin-prompt {
    color: var(--gray-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.trial-modal-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--black-lighter);
}

.btn-skip-trial {
    background: transparent;
    border: none;
    color: var(--gray);
    font-size: 0.85rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.btn-skip-trial:hover {
    color: var(--gray-light);
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    gap: 12px;
    margin: 25px 0;
    justify-content: center;
}

.pricing-option {
    flex: 1;
    background: var(--black-lighter);
    border: 2px solid var(--black-lighter);
    border-radius: 12px;
    padding: 15px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.pricing-option:hover {
    border-color: var(--gold);
}

.pricing-option.active {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.plan-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
}

.plan-period {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-light);
    margin-top: 2px;
}

.plan-savings {
    display: block;
    font-size: 0.7rem;
    color: var(--gold-light);
    margin-top: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pro-note {
    margin-top: 15px;
    color: var(--gray);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .btn-go-pro {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
    
    .btn-go-pro-logo {
        display: inline-flex;
    }
    
    .nav-go-pro-standalone {
        display: none;
    }
    
    .pro-modal {
        padding: 30px 20px;
    }
    
    .pro-modal h2 {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--black);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--black-light);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--black-lighter);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--white);
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--black-light) 0%, var(--black) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--gray-light);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Page Header */
.page-header {
    padding: 60px 20px 40px;
    text-align: center;
    background: linear-gradient(180deg, var(--black-light) 0%, var(--black) 100%);
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 15px;
}

.page-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* Library Section */
.library-section {
    padding: 40px 0 80px;
}

.filters-bar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.search-box {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.search-box input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    background: var(--black-light);
    border: 1px solid var(--black-lighter);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--gold);
}

.search-box input::placeholder {
    color: var(--gray);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--black-light);
    border: 1px solid var(--black-lighter);
    color: var(--gray-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* Fragrance Cards */
.fragrances-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.load-more-container {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
}

.load-more-btn {
    padding: 15px 40px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.load-more-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.load-more-count {
    margin-top: 15px;
    color: var(--gray);
    font-size: 0.9rem;
}

.fragrance-card {
    background: var(--black-light);
    padding: 25px;
    border: 1px solid var(--black-lighter);
    transition: all 0.3s ease;
}

.fragrance-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

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

.fragrance-category {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.add-btn, .remove-btn, .delete-btn {
    width: 35px;
    height: 35px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.remove-btn, .delete-btn {
    border-color: #ff4444;
    color: #ff4444;
}

.remove-btn:hover, .delete-btn:hover {
    background: #ff4444;
    color: var(--white);
}

.fragrance-name {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--white);
}

.fragrance-brand {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.fragrance-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.note-tag {
    padding: 5px 12px;
    background: var(--black-lighter);
    font-size: 0.75rem;
    color: var(--gray-light);
    border: 1px solid transparent;
}

.fragrance-description {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Collection Section */
.collection-section {
    padding: 40px 0 80px;
}

.collection-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.collection-card {
    background: var(--black-light);
    padding: 25px;
    border: 1px solid var(--black-lighter);
    position: relative;
    transition: all 0.3s ease;
}

.collection-card:hover {
    border-color: var(--gold);
}

.collection-card .fragrance-select {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 20px;
    height: 20px;
    accent-color: var(--gold);
    cursor: pointer;
}

.collection-card .remove-btn {
    position: absolute;
    top: 15px;
    right: 15px;
}

.collection-card .card-content {
    padding-left: 35px;
}

.collection-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.collection-card .brand {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.collection-card .notes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* Recommendations Section */
.recommendations-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--black-lighter);
}

.recommendations-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.recommendation-card {
    background: linear-gradient(135deg, var(--black-light) 0%, var(--black-lighter) 100%);
    padding: 30px;
    border: 1px solid var(--gold);
    position: relative;
}

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

.recommendation-card h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.recommendation-card .fragrances-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.recommendation-card .frag-item {
    padding: 8px 15px;
    background: var(--black);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: 0.85rem;
}

.recommendation-card .detail {
    margin-bottom: 15px;
}

.recommendation-card .detail-label {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.recommendation-card .detail-text {
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.recommendation-card .save-btn {
    margin-top: 20px;
    width: 100%;
}

/* Spray Amounts Styling */
.recommendation-card .spray-count {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
}

.recommendation-card .spray-detail {
    background: rgba(212, 175, 55, 0.1);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.recommendation-card .spray-amounts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.recommendation-card .spray-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: var(--black);
    border-radius: 6px;
}

.recommendation-card .spray-name {
    color: var(--gray-light);
    font-size: 0.85rem;
}

.recommendation-card .spray-badge {
    background: var(--gold);
    color: var(--black);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Blends Section */
.blends-section {
    padding: 40px 0 80px;
}

.blends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blend-card {
    background: var(--black-light);
    padding: 30px;
    border: 1px solid var(--black-lighter);
    transition: border-color 0.3s ease;
}

.blend-card:hover {
    border-color: var(--gold);
}

.blend-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.blend-header h3 {
    font-size: 1.5rem;
    color: var(--gold);
}

.blend-fragrances {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.blend-frag {
    padding: 8px 15px;
    background: var(--black);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: 0.85rem;
}

.blend-details .detail-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.blend-details .detail-item i {
    color: var(--gold);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.blend-details .detail-item p {
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: var(--black-light);
    border: 1px dashed var(--black-lighter);
}

.empty-state i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.empty-state p {
    color: var(--gray);
}

.empty-state a {
    color: var(--gold);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--black-light);
    max-width: 500px;
    width: 100%;
    border: 1px solid var(--gold);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid var(--black-lighter);
}

.modal-header h2 {
    font-size: 1.5rem;
    color: var(--gold);
}

.close-btn {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.close-btn:hover {
    color: var(--white);
}

form {
    padding: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--gray-light);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background: var(--black);
    border: 1px solid var(--black-lighter);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group select {
    cursor: pointer;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gold);
    color: var(--black);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transform: translateX(150%);
    transition: transform 0.3s ease;
    z-index: 3000;
}

.toast.show {
    transform: translateX(0);
}

/* Loading Overlay */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2500;
    align-items: center;
    justify-content: center;
}

.loading-overlay.active {
    display: flex;
}

.loading-content {
    text-align: center;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 3px solid var(--black-lighter);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

.loading-content p {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: var(--black-light);
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid var(--black-lighter);
}

.footer p {
    color: var(--gray);
    font-size: 0.85rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.support-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.support-link:hover {
    color: var(--white);
    text-shadow: 0 0 10px var(--gold);
}

.footer-links {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 5px;
}

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

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

.footer-divider {
    color: var(--gray);
    font-size: 0.8rem;
}

/* Legal Pages */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.legal-page h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.legal-page .last-updated {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.legal-page h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page p,
.legal-page li {
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-page ul {
    padding-left: 25px;
    margin-bottom: 20px;
}

.legal-page a {
    color: var(--gold);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

/* Tablet Responsive (iPad) */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .logo i {
        font-size: 1.2rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        border-bottom: 1px solid var(--black-lighter);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .collection-actions {
        flex-direction: column;
    }

    .collection-actions .btn {
        max-width: none;
    }

    .fragrances-grid,
    .collection-grid,
    .blends-grid {
        grid-template-columns: 1fr;
    }

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

    .toast {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 40px 15px 30px;
    }

    .fragrance-card,
    .collection-card,
    .blend-card {
        padding: 20px;
    }

    .logo span {
        font-size: 1.1rem;
    }

    .nav-container {
        padding: 0 10px;
    }
}

/* Auth Styles */
.auth-section {
    margin-top: 40px;
    text-align: center;
}

.auth-prompt {
    color: var(--gray-light);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.auth-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.btn-auth {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.auth-note {
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: 15px;
}

.guest-option {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--black-lighter);
}

.guest-note {
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: 10px;
}

.welcome-user {
    color: var(--gold-light);
    margin-top: 20px;
    font-size: 1.1rem;
}

.auth-prompt-box {
    background: var(--black-light);
    border: 1px solid var(--black-lighter);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    max-width: 320px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.auth-prompt-box i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.auth-prompt-box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-align: center;
}

.auth-prompt-box p {
    color: var(--gray-light);
    margin-bottom: 15px;
    text-align: center;
    font-size: 0.9rem;
}

.auth-prompt-box .btn {
    width: auto !important;
    padding: 10px 18px;
    font-size: 0.8rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 6px;
}

/* Nav User Styles */
.nav-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.logout-link, .sign-in-link {
    color: var(--gold) !important;
    font-weight: 500;
}

/* Wishlist Styles */
.wishlist-section {
    padding: 40px 0;
}

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

.wishlist-card {
    background: var(--black-light);
    border: 1px solid var(--black-lighter);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

.wishlist-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

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

.wishlist-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.btn-shop {
    width: 100%;
    justify-content: center;
}

.btn-add-collection {
    width: 100%;
    justify-content: center;
}

/* Fragrance Actions */
.fragrance-actions {
    display: flex;
    gap: 8px;
}

.wishlist-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--black-lighter);
    border: 1px solid var(--black-lighter);
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-btn:hover {
    background: rgba(212, 47, 47, 0.2);
    border-color: #d42f2f;
    color: #ff6b6b;
}

.wishlist-btn.active {
    background: rgba(212, 47, 47, 0.3);
    color: #ff6b6b;
}

/* Premium Card Image Styles */
.card-image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.card-bottle-image {
    width: 120px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    border: 1px solid var(--black-lighter);
}

.fragrance-card:hover .card-bottle-image,
.collection-card:hover .card-bottle-image,
.wishlist-card:hover .card-bottle-image {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

/* Enhanced Fragrance Card */
.fragrance-card {
    text-align: center;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.fragrance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fragrance-card:hover::before {
    opacity: 1;
}

.fragrance-card:hover {
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

/* Library Card Image Styling */
.fragrance-card > img {
    display: block;
    margin: 0 auto 15px auto;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.fragrance-card:hover > img {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.25);
}

/* Enhanced Collection Card */
.collection-card {
    border-radius: 16px;
    overflow: hidden;
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collection-card:hover::before {
    opacity: 1;
}

.collection-card:hover {
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.collection-card .card-content {
    text-align: center;
    padding-left: 0;
    padding-top: 35px;
}

.collection-card .fragrance-select {
    z-index: 10;
}

/* Enhanced Wishlist Card */
.wishlist-card {
    text-align: center;
    overflow: hidden;
}

.wishlist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wishlist-card:hover::before {
    opacity: 1;
}

.wishlist-card:hover {
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.wishlist-card .wishlist-header {
    text-align: left;
}

/* Enhanced Button Styles */
.btn {
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary:hover {
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Enhanced Note Tags */
.note-tag {
    border-radius: 20px;
    transition: all 0.3s ease;
}

.note-tag:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* Logo Enhancement */
.logo {
    position: relative;
    transition: all 0.3s ease;
}

.logo:hover {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.logo i {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Add + Remove Button Enhancements */
.add-btn, .remove-btn, .delete-btn {
    border-radius: 50%;
    transition: all 0.3s ease;
}

.add-btn:hover {
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    transform: scale(1.1);
}

.remove-btn:hover, .delete-btn:hover {
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.4);
    transform: scale(1.1);
}

/* Filter Button Enhancements */
.filter-btn {
    border-radius: 20px;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Search Box Enhancement */
.search-box input {
    border-radius: 30px;
}

.search-box input:focus {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* Enhanced Modal Styling */
.enhanced-modal {
    border-radius: 16px;
    overflow: hidden;
    max-width: 550px;
    background: linear-gradient(135deg, var(--black-light) 0%, #0f0f0f 100%);
    border: 2px solid var(--gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.15);
}

.enhanced-modal .modal-header {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding: 25px 30px;
}

.modal-title-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-icon {
    font-size: 1.8rem;
    color: var(--gold);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }
    to { text-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 30px rgba(212, 175, 55, 0.4); }
}

.enhanced-modal h2 {
    font-size: 1.6rem;
    margin: 0;
}

.enhanced-modal form {
    padding: 25px 30px 30px;
}

.enhanced-modal .form-group {
    margin-bottom: 22px;
}

.enhanced-modal .form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.enhanced-modal .form-group label i {
    color: var(--gold);
    font-size: 0.85rem;
}

.enhanced-modal .form-group input,
.enhanced-modal .form-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--black);
    border: 1px solid var(--black-lighter);
    border-radius: 10px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.enhanced-modal .form-group input:focus,
.enhanced-modal .form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.enhanced-modal .form-group input::placeholder {
    color: var(--gray);
}

.category-select-wrapper {
    position: relative;
}

.category-select-wrapper select {
    cursor: pointer;
    appearance: none;
    padding-right: 40px;
}

.category-select-wrapper::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    pointer-events: none;
}

.notes-group {
    margin-bottom: 25px !important;
}

.note-suggestions {
    margin-top: 12px;
}

.suggestion-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.note-suggestion {
    padding: 6px 14px;
    background: transparent;
    border: 1px solid var(--black-lighter);
    border-radius: 20px;
    color: var(--gray-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.note-suggestion:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.modal-submit {
    margin-top: 10px;
    border-radius: 10px;
    padding: 16px 20px;
    font-size: 1rem;
}

.modal-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Fragrance Detail Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.fragrance-detail-modal {
    background: linear-gradient(135deg, var(--black-light) 0%, var(--black) 100%);
    border: 1px solid var(--gold);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.2s;
}

.modal-close:hover {
    transform: scale(1.2);
}

.modal-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 25px;
}

/* Desktop only: two-column grid layout for modal */
@media (min-width: 1201px) {
    .modal-content {
        display: grid;
        grid-template-columns: 300px 1fr;
        gap: 30px;
        padding: 30px;
    }
}

.modal-image {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.modal-image img {
    max-width: 100%;
    max-height: 350px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-info h2 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.modal-brand {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 10px;
}

.modal-rating {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.modal-rating i {
    margin-right: 5px;
}

.modal-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-light);
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--gold);
}

.modal-section {
    margin-bottom: 20px;
}

.modal-section h4 {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.performance-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.perf-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.perf-item span {
    min-width: 80px;
    color: var(--gray-light);
    font-size: 0.9rem;
}

.perf-bar {
    flex: 1;
    height: 8px;
    background: var(--black-lighter);
    border-radius: 4px;
    overflow: hidden;
}

.perf-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 100%);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.notes-pyramid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notes-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.notes-label {
    min-width: 50px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 500;
}

.notes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.note-chip {
    background: var(--black-lighter);
    border: 1px solid var(--gold);
    color: var(--gray-light);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.accords-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.accord-tag {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    color: var(--black);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.seasons-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.season-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--black-lighter);
    border: 1px solid var(--gold);
    color: var(--gray-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.season-tag i {
    color: var(--gold);
}

.modal-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--black-lighter);
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

/* Modal responsive - Tablet and below (max 1200px) */
@media (max-width: 1200px) {
    .fragrance-detail-modal {
        max-width: calc(100vw - 30px);
        width: calc(100vw - 30px);
    }
    
    .modal-image {
        justify-content: center;
    }
    
    .modal-image img {
        max-height: 280px;
    }
    
    .modal-info h2 {
        text-align: center;
    }
    
    .modal-brand,
    .modal-rating {
        text-align: center;
    }
    
    .modal-meta {
        justify-content: center;
    }
    
    .modal-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Modal responsive - Mobile */
@media (max-width: 768px) {
    .modal-content {
        padding: 20px;
    }
    
    .modal-image img {
        max-height: 250px;
    }
    
    .modal-info h2 {
        font-size: 1.5rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions button,
    .modal-actions a {
        width: 100%;
        justify-content: center;
    }
}

/* Pro Badge */
.pro-badge {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-left: 8px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.nav-name {
    color: var(--gray-light);
    font-size: 0.85rem;
    margin-right: 5px;
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Blend Status Bar */
.blend-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--black-light);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid var(--black-lighter);
}

.blend-count {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.btn-upgrade-small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    padding: 10px 18px;
    border-radius: 25px;
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-upgrade-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Upgrade Modal */
.upgrade-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.upgrade-content {
    background: linear-gradient(145deg, var(--black-light), var(--black));
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 40px;
    max-width: 450px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.upgrade-content .modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s;
}

.upgrade-content .modal-close:hover {
    color: var(--gold);
}

.upgrade-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.upgrade-icon i {
    font-size: 2.5rem;
    color: var(--black);
}

.upgrade-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.upgrade-message {
    color: var(--gray-light);
    margin-bottom: 25px;
}

.upgrade-features {
    text-align: left;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--white);
    font-size: 0.95rem;
}

.feature-item i {
    color: var(--gold);
    font-size: 1rem;
}

.upgrade-price {
    margin-bottom: 20px;
}

.upgrade-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
}

.upgrade-price .period {
    color: var(--gray);
    font-size: 1rem;
}

.btn-upgrade {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    padding: 16px 30px;
    border-radius: 30px;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-upgrade:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.btn-upgrade:disabled {
    opacity: 0.7;
    cursor: wait;
}

.upgrade-note {
    margin-top: 15px;
    color: var(--gray);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .upgrade-content {
        padding: 30px 20px;
    }
    
    .upgrade-content h2 {
        font-size: 1.6rem;
    }
    
    .upgrade-price .price {
        font-size: 2rem;
    }
}

/* Request Fragrance CTA */
.request-fragrance-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--black-light);
    padding: 15px 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid var(--black-lighter);
}

.request-fragrance-cta p {
    margin: 0;
    color: var(--gray-light);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .request-fragrance-cta {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Request Fragrance Modal */
.request-modal {
    background: linear-gradient(135deg, var(--black-light) 0%, var(--black) 100%);
    border: 1px solid var(--gold);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.request-modal-content {
    padding: 30px;
}

.request-modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.request-modal-header i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.request-modal-header h2 {
    color: var(--gold);
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.request-modal-header p {
    color: var(--gray-light);
    font-size: 0.95rem;
}

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

.request-modal .form-group label {
    display: block;
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.request-modal .form-group label i {
    margin-right: 8px;
}

.request-modal .form-group input,
.request-modal .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--black-lighter);
    border: 1px solid var(--gold);
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
}

.request-modal .form-group input:focus,
.request-modal .form-group textarea:focus {
    outline: none;
    border-color: var(--gold-light);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.request-modal .form-group input::placeholder,
.request-modal .form-group textarea::placeholder {
    color: var(--gray);
}

.btn-full {
    width: 100%;
    justify-content: center;
}
