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

:root {
    --bg-primary: #f8fafc;
    --bg-secondary: #e2e8f0;
    --bg-card: #ffffff;
    --accent: #0d9488;
    --accent-hover: #0f766e;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --success: #16a34a;
    --error: #dc2626;
    --warning: #ea580c;
    --border-radius: 12px;
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    color: var(--text-primary);
    min-height: 100vh;
    padding: 20px;
    line-height: 1.6;
}

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

/* Navigation */
.main-nav {
    background: var(--bg-card);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    margin: -20px -20px 20px -20px;
    padding: 0 20px;
}

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

.nav-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
}

.nav-logo:hover {
    color: var(--accent-hover);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-card);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .main-nav {
        position: relative;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--accent) 0%, #0f766e 50%, #115e59 100%);
    border-radius: var(--border-radius);
    padding: 60px 40px;
    margin-bottom: 32px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

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

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

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.hero .search-container {
    margin-bottom: 32px;
}

.hero #searchInput {
    background: white;
    border: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.hero #searchBtn {
    background: var(--text-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero #searchBtn:hover:not(:disabled) {
    background: #0f172a;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

header {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 40px;
}

header h1 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent) 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.tagline {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.search-container {
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.search-box {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.store-selector {
    margin-top: 20px;
}

.store-selector-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.store-checkboxes {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.store-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px 16px;
    background: var(--bg-card);
    border: 2px solid rgba(13, 148, 136, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.store-checkbox:hover {
    border-color: var(--accent);
    background: rgba(13, 148, 136, 0.05);
}

.store-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent);
}

.checkbox-label {
    color: var(--text-primary);
    font-weight: 500;
    user-select: none;
}

#searchInput {
    flex: 1;
    padding: 16px 24px;
    background: var(--bg-card);
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

#searchInput:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

#searchInput::placeholder {
    color: var(--text-secondary);
}

#searchBtn {
    padding: 16px 32px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

#searchBtn:hover:not(:disabled) {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.4);
}

#searchBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.loader {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.results-container {
    animation: fadeIn 0.5s ease;
}

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

.results-container h2 {
    margin-bottom: 24px;
    color: var(--text-primary);
    font-size: 1.8rem;
}

.results-grid {
    display: grid;
    gap: 20px;
}

.result-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: rgba(13, 148, 136, 0.3);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.store-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(13, 148, 136, 0.1);
    color: var(--accent);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.stock-badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.stock-badge.in-stock {
    background: rgba(76, 175, 80, 0.2);
    color: var(--success);
}

.stock-badge.out-of-stock {
    background: rgba(255, 107, 107, 0.2);
    color: var(--error);
}

.product-name {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.4;
}

.result-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
}

.view-btn {
    padding: 10px 20px;
    background: rgba(13, 148, 136, 0.1);
    color: var(--accent);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(13, 148, 136, 0.3);
}

.view-btn:hover {
    background: var(--accent);
    color: white;
    transform: translateX(4px);
}

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

.no-results svg {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.no-results p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.error-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: var(--border-radius);
    color: var(--error);
    margin-top: 20px;
    animation: fadeIn 0.3s ease;
}

.error-message svg {
    flex-shrink: 0;
}

/* Disambiguation UI */
.disambiguation-text {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.disambiguation-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.disambiguation-option {
    background: var(--bg-card);
    border: 2px solid rgba(13, 148, 136, 0.2);
    border-radius: var(--border-radius);
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
}

.disambiguation-option:hover {
    border-color: var(--accent);
    background: rgba(13, 148, 136, 0.05);
    transform: translateX(4px);
}

.option-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.option-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.option-name {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
}

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

.disambiguation-option svg {
    color: var(--accent);
    flex-shrink: 0;
}

.results-header {
    margin-bottom: 24px;
}

.results-header h2 {
    margin-bottom: 8px;
}

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

.result-card.out-of-stock {
    opacity: 0.6;
}

footer {
    margin-top: 60px;
    padding: 40px 20px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
    text-align: left;
}

.footer-section h3 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-bottom .copyright {
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    .search-box {
        flex-direction: column;
    }

    #searchBtn {
        width: 100%;
    }

    .store-checkboxes {
        flex-direction: column;
    }

    .store-checkbox {
        width: 100%;
    }

    .result-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .view-btn {
        width: 100%;
        text-align: center;
    }
}

/* Fragrance List Styles */
.fragrances-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fragrance-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 24px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.fragrance-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.fragrance-info {
    flex: 1;
}

.fragrance-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.fragrance-meta {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
}

.fragrance-meta .brand {
    color: var(--accent);
    font-weight: 500;
}

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

.store-count {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.store-count svg {
    color: var(--accent);
}

.fragrance-card .arrow {
    color: var(--accent);
    transition: transform 0.3s ease;
}

.fragrance-card:hover .arrow {
    transform: translateX(8px);
}

/* Fragrance Image in Search Results */
.fragrance-image {
    width: 160px;
    height: 160px;
    object-fit: contain;
    border-radius: 8px;
    margin-right: 20px;
    flex-shrink: 0;
}

.fragrance-no-image {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.03);
    border: 2px dashed rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    margin-right: 20px;
    flex-shrink: 0;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .fragrance-image,
    .fragrance-no-image {
        width: 120px;
        height: 120px;
        margin-right: 12px;
    }
}

/* How It Works Section */
.how-it-works {
    margin-top: 32px;
    padding: 40px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.how-it-works h2 {
    text-align: center;
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 32px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step {
    text-align: center;
    padding: 20px;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: rgba(13, 148, 136, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--accent);
}

.step h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Featured Stores Section */
.featured-stores {
    margin-top: 24px;
    padding: 40px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.featured-stores h2 {
    text-align: center;
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
}

.store-card {
    display: block;
    background: rgba(13, 148, 136, 0.05);
    border: 1px solid rgba(13, 148, 136, 0.2);
    border-radius: 8px;
    padding: 16px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.store-card:hover {
    border-color: var(--accent);
    background: rgba(13, 148, 136, 0.1);
    transform: translateY(-2px);
    text-decoration: none;
}

.store-name {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Value Propositions Section */
.value-props {
    margin-top: 24px;
    padding: 40px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.value-props h2 {
    text-align: center;
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 32px;
}

.props-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.prop {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.prop-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.prop-icon.savings {
    background: rgba(22, 163, 74, 0.1);
    color: var(--success);
}

.prop-icon.time {
    background: rgba(13, 148, 136, 0.1);
    color: var(--accent);
}

.prop-icon.trust {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.prop-icon.value {
    background: rgba(234, 88, 12, 0.1);
    color: var(--warning);
}

.prop h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.prop p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .hero {
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

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

    .stats-bar {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .stat-divider {
        height: 30px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .props-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .prop {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .how-it-works,
    .featured-stores,
    .value-props {
        padding: 24px;
        margin-top: 24px;
    }

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

/* Page Header Styles */
.page-header {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 32px;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

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

.page-header.compact {
    padding: 20px 20px 8px;
    margin-bottom: 16px;
}

.page-header.compact h1 {
    margin-bottom: 4px;
}

.page-header.compact .page-subtitle {
    margin-bottom: 0;
}

/* Content Card Styles */
.content-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.content-card h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.content-card p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.content-card p:last-child {
    margin-bottom: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.feature-list strong {
    color: var(--text-primary);
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.contact-grid .content-card {
    padding: 24px;
    margin-bottom: 0;
}

.contact-icon {
    color: var(--accent);
    margin-bottom: 12px;
}

.contact-link {
    display: inline-block;
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    margin-top: 8px;
}

.contact-link:hover {
    text-decoration: underline;
}

.faq-list {
    margin-top: 12px;
}

.faq-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-item h4 {
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Fragrances Grid Page */
.filter-section {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.search-filter {
    flex: 1;
    min-width: 250px;
}

.search-filter input {
    width: 100%;
    padding: 14px 20px;
    background: var(--bg-primary);
    border: 2px solid transparent;
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-filter input:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
}

.filter-stats {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.fragrances-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.fragrance-tile {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.fragrance-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.tile-image {
    width: 100%;
    height: 180px;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tile-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tile-no-image {
    color: var(--text-secondary);
}

.tile-info {
    padding: 16px;
}

.tile-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tile-brand {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.tile-concentration {
    display: inline-block;
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-secondary);
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 4px;
}

.no-filter-results {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.no-filter-results svg {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.no-filter-results h3 {
    color: var(--text-primary);
    margin-bottom: 8px;
}

.no-filter-results p {
    color: var(--text-secondary);
}

/* Nav active state */
.nav-links a.active {
    color: var(--accent);
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 1.8rem;
    }

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

    .content-card {
        padding: 24px;
    }

    .fragrances-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .tile-image {
        height: 140px;
    }

    .tile-info {
        padding: 12px;
    }

    .tile-name {
        font-size: 0.9rem;
    }
}
