/* ============================================================
   FEEL2ART GALLERY - Stylesheet
   ============================================================ */

/* ============================================
   CSS Variables
   ============================================ */
:root {
    /* Colors */
    --color-primary: #2c3e50;
    --color-secondary: #8b7355;
    --color-accent: #c9a86c;
    --color-bg: #faf9f7;
    --color-bg-alt: #f5f3f0;
    --color-text: #2c3e50;
    --color-text-light: #6b7280;
    --color-white: #ffffff;
    --color-border: #e5e5e5;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    
    /* Container */
    --container-max: 1200px;
    --container-padding: 1.5rem;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Accessibility: screen-reader only utility class */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Accessibility: visible focus indicators for keyboard navigation */
:focus-visible {
    outline: 2px solid #8b6914;
    outline-offset: 3px;
    border-radius: 3px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #8b6914;
    outline-offset: 3px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

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

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

ul, ol {
    list-style: none;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

/* ============================================
   Layout
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--spacing-xxl) 0;
}

.section-alt {
    background-color: var(--color-bg-alt);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xl);
    font-size: 1.1rem;
}

.section-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text-light);
    border: 1px solid var(--color-border);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* ============================================
   Header
   ============================================ */
.header {
    position: sticky;
    top: 0;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    z-index: 100;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-primary);
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-weight: 300;
}

.nav {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-link {
    font-size: 0.95rem;
    color: var(--color-text-light);
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--color-accent);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: var(--spacing-md);
    z-index: 99;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: var(--spacing-sm);
    font-size: 1.1rem;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .nav {
        display: flex;
        gap: 0;
        align-items: center;
    }
    
    /* Hide all nav links except the cart link on mobile */
    .nav .nav-link:not(.nav-cart) {
        display: none;
    }
    
    /* Position the mobile cart icon to the left of the hamburger button */
    .nav-cart {
        margin-right: 12px;
        font-size: 0.85rem;
        color: var(--color-primary);
    }
    
    .mobile-menu-btn {
        display: flex;
    }
}

/* ============================================
   Hero
   ============================================ */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    background-color: var(--color-bg-alt);
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-xxl);
}

.hero-title {
    font-size: 4rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    max-width: 450px;
}

.hero-image {
    background-color: var(--color-border);
    background-size: cover;
    background-position: center;
}

@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-content {
        padding: var(--spacing-xl);
        text-align: center;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-image {
        height: 50vh;
    }
}

/* ============================================
   Gallery Grid
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

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

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

@media (max-width: 768px) {
    .gallery-grid,
    .gallery-grid-large {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .gallery-grid,
    .gallery-grid-large {
        grid-template-columns: 1fr;
    }
}

/* Gallery Card */
.gallery-card {
    position: relative;
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-card * {
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-card-image {
    aspect-ratio: 1;
    background-color: var(--color-bg-alt);
    background-size: cover;
    background-position: center;
}

.gallery-card-info {
    padding: var(--spacing-md);
}

.gallery-card-emotion {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-accent);
    margin-bottom: 0.25rem;
}

.gallery-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.gallery-card-desc {
    font-size: 0.875rem;
    color: var(--color-text-light);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================
   Categories Grid
   ============================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

.category-card {
    background-color: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.category-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.category-desc {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* ============================================
   Uses Grid
   ============================================ */
.uses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

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

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

.use-card {
    text-align: center;
    padding: var(--spacing-lg);
}

.use-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.use-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.use-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* ============================================
   CTA Banner
   ============================================ */
.section-cta-banner {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    padding: var(--spacing-xxl) 0;
}

.section-cta-banner h2 {
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.section-cta-banner p {
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
}

.notify-form {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    max-width: 450px;
    margin: 0 auto;
}

.notify-form input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
}

.notify-form .btn {
    white-space: nowrap;
}

@media (max-width: 480px) {
    .notify-form {
        flex-direction: column;
    }
}

/* ============================================
   Page Header
   ============================================ */
.page-header {
    background-color: var(--color-bg-alt);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: var(--color-text-light);
}

/* ============================================
   Filters
   ============================================ */
.filters-section {
    background-color: var(--color-white);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 70px;
    z-index: 50;
}

.filters {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-end;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.filter-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-light);
}

.filter-select,
.filter-input {
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    background-color: var(--color-white);
    min-width: 180px;
}

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

.filter-search .filter-input {
    width: 100%;
}

.results-info {
    margin-top: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* Filter Toggle Button */
.filter-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--color-white);
    border: 1.5px solid var(--color-accent);
    border-radius: var(--radius-md);
    color: var(--color-accent);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-toggle:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

.filter-toggle[aria-expanded="true"] {
    background: var(--color-accent);
    color: var(--color-white);
}

.filter-icon {
    width: 18px;
    height: 18px;
    stroke: var(--color-accent);
}

.filter-toggle[aria-expanded="true"] .filter-icon {
    stroke: var(--color-white);
}

@media (max-width: 768px) {
    .filter-toggle {
        display: flex;
        margin-bottom: var(--spacing-sm);
    }
    
    .filters {
        flex-direction: column;
        align-items: stretch;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.2s ease, margin 0.3s ease;
        margin-bottom: 0;
    }
    
    .filters.expanded {
        max-height: 500px;
        opacity: 1;
        margin-bottom: var(--spacing-sm);
    }
    
    .filter-select,
    .filter-input {
        min-width: 100%;
    }
    
    .results-info {
        margin-top: 0;
    }
}

/* ============================================
   Product Page
   ============================================ */
.breadcrumb {
    padding: var(--spacing-sm) 0;
    background-color: var(--color-bg-alt);
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.breadcrumb a {
    color: var(--color-text-light);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--color-primary);
}

.breadcrumb span {
    margin: 0 0.5rem;
}

.product-section {
    padding: var(--spacing-xl) 0;
}

.product-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xxl);
}

@media (max-width: 968px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
}

.product-main-image {
    aspect-ratio: 1;
    background-color: var(--color-bg-alt);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: var(--radius-md);
    flex: 0 0 auto;
    min-height: 0;
    max-height: calc(100vh - 190px);
}

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

.product-title {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.product-description {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.product-benefits,
.product-ideal,
.product-colors {
    margin-bottom: var(--spacing-lg);
}

.product-benefits h3,
.product-ideal h3,
.product-colors h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

.product-benefits ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.product-benefits li {
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.ideal-tags,
.color-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag,
.color-tag {
    background-color: var(--color-bg-alt);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--color-text);
}

.color-tag {
    background-color: var(--color-accent);
    color: var(--color-white);
    opacity: 0.9;
}

.product-cta {
    background-color: var(--color-bg-alt);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    text-align: center;
}

.coming-soon-badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.cta-text {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

/* ============================================
   Modal
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 200;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    max-width: 450px;
    width: 90%;
    position: relative;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-light);
}

.modal h2 {
    margin-bottom: var(--spacing-sm);
}

.modal p {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
}

.modal .notify-form {
    flex-direction: column;
}

/* ============================================
   Loading
   ============================================ */
.loading {
    text-align: center;
    padding: var(--spacing-xl);
    color: var(--color-text-light);
    grid-column: 1 / -1;
}

/* ============================================
   Load More
   ============================================ */
.load-more-container {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
}

.footer-brand .logo-text {
    color: var(--color-white);
    font-size: 1.5rem;
}

.footer-brand p {
    opacity: 0.7;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-size: 0.9rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--spacing-md);
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.6;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links-column a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-size: 0.9rem;
}

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

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* ============================================
   Gallery Section Padding Fix
   ============================================ */
.gallery-section {
    padding-top: var(--spacing-xl);
}

/* ============================================
   Empty/No Results State
   ============================================ */
.no-results {
    text-align: center;
    padding: var(--spacing-xxl);
    grid-column: 1 / -1;
}

.no-results h3 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

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

/* Wall Preview Trigger Button */
.wall-preview-trigger {
    width: 100%;
    margin-top: 16px;
    padding: 14px 20px;
    background: #c9a86c;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.wall-preview-trigger:hover {
    background: #b8956d;
}

/* Notification Toast */
.notification-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    padding: 16px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10001;
    animation: slideIn 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.notification-toast span {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.4;
}

.notification-toast button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.7;
    padding: 0;
    line-height: 1;
}

.notification-toast button:hover {
    opacity: 1;
}

.notification-success {
    background: #e8f5e9;
    border: 1px solid #4caf50;
    color: #2e7d32;
}

.notification-error {
    background: #ffebee;
    border: 1px solid #f44336;
    color: #c62828;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .notification-toast {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
}

/* AURA Two-Section Wrapper */
.aura-two-section-wrapper {
    width: 100%;
}

/* AURA Two-Section Divider */
.aura-section-divider {
    grid-column: 1 / -1;
    width: 100%;
    padding: 36px 0 20px;
    margin-top: 32px;
    border-top: 2px solid #c9a86c;
    display: flex;
    align-items: center;
    gap: 16px;
}

.aura-section-divider::before,
.aura-section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e0d8;
}

.aura-section-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c9a86c;
    display: block;
    white-space: nowrap;
    padding: 0 8px;
}

/* AURA Filters Banner */
.aura-filters-banner {
    background: linear-gradient(135deg, #fdf8f0 0%, #f9f3e8 100%);
    border: 1px solid #e8dcc8;
    border-left: 4px solid #c9a86c;
    padding: 12px 20px;
    margin: 0;
}

.aura-banner-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.aura-banner-icon {
    font-size: 1.25rem;
}

.aura-banner-text {
    flex: 1;
    font-size: 0.9rem;
    color: var(--color-text);
}

.aura-banner-text strong {
    color: #c9a86c;
}

.aura-emotion-tags {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-left: 4px;
}

.aura-tag {
    display: inline-block;
    background: #c9a86c;
    color: #fff;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.aura-banner-clear {
    background: transparent;
    border: 1px solid #c9a86c;
    color: #c9a86c;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.aura-banner-clear:hover {
    background: #c9a86c;
    color: #fff;
}

@media (max-width: 768px) {
    .aura-filters-banner {
        padding: 10px 15px;
    }
    
    .aura-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .aura-banner-text {
        font-size: 0.85rem;
    }
    
    .aura-emotion-tags {
        display: flex;
        margin-left: 0;
        margin-top: 4px;
    }
    
    .aura-banner-clear {
        align-self: flex-end;
    }
}

.logo-img {
    height: 45px;
    width: auto;
}

.footer-brand .logo-img {
    height: 35px;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .logo-img { height: 35px; }
    .footer-brand .logo-img { height: 30px; }
}

/* ============================================
   Cart Badge
   ============================================ */

.nav-cart {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-badge {
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    padding: 0 5px;
    line-height: 1;
}

@keyframes cartBounce {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.4); }
    70%  { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.cart-badge.bounce {
    animation: cartBounce 0.4s ease;
}

/* ============================================
   Image Protection - Prevent casual downloading
   ============================================ */
.gallery-card-image,
.product-main-image,
.hero-image {
    -webkit-user-drag: none;
    user-select: none;
}

/* Transparent overlay blocks right-click and drag on image areas */
.gallery-card-image,
.product-main-image {
    position: relative;
}

.gallery-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.product-main-image::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    cursor: default;
    -webkit-tap-highlight-color: transparent;
}

/* ============================================================
   PRODUCT PAGE - Sticky Image Column
   Append these rules to the bottom of style.css
   ============================================================ */

/* Desktop: image column sticks while right panel scrolls */
.product-images {
    position: sticky;
    top: 80px;
    align-self: start;
    max-height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
}

/* Mobile: single column layout - cap image height so it doesn't dominate */
@media (max-width: 968px) {
    .product-images {
        position: static;
        max-height: none;
    }

    .product-main-image {
        max-height: 38vh;
        background-size: contain;
        background-repeat: no-repeat;
    }
}



/* ============================================
   ART CURSOR - gold ring with glow on hover
   ============================================ */
.art-cursor {
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 99999;
    display: none;
    top: 0;
    left: 0;
}

.art-cursor-ring {
    transition: opacity 0.15s ease;
}

@media (hover: none), (pointer: coarse) {
    .art-cursor { display: none !important; }
}

/* ============================================
   PHASE 1A, STEP 1A.2 — HEADER ICONS (heart + bag)
   ============================================ */

/* Icons container — sits inside .nav after the text links */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: var(--spacing-md);
}

/* Single icon button (heart or bag) */
.icon-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--color-text-light);
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.15s ease;
    text-decoration: none;
}

.icon-btn:hover {
    color: var(--color-primary);
    background-color: rgba(201, 168, 108, 0.08);
}

.icon-btn:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.icon-btn svg {
    width: 22px;
    height: 22px;
    display: block;
}

/* When populated (favorites count >= 1 OR cart count >= 1) the icon turns gold */
.icon-btn.active {
    color: var(--color-accent);
}

/* Heart click pulse animation */
.icon-btn.pulse svg {
    animation: heartPulse 200ms ease-out;
}

@keyframes heartPulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.25); }
    100% { transform: scale(1); }
}

/* Generic badge — used by both fav-badge and cart-badge */
/* Positioned OUTSIDE the icon (top-right corner) so it doesn't overlap the icon shape */
.icon-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background-color: var(--color-accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    line-height: 1;
    border-radius: 9px;
    box-sizing: border-box;
    border: 2px solid var(--color-bg, #fff);  /* white ring separates badge from icon */
    z-index: 2;
}

/* The favorites badge specifically (matches cart-badge styling, just different selector for clarity) */
.fav-badge {
    /* inherits everything from .icon-badge */
}

/* Mobile responsive — keep icons visible but tighten spacing */
@media (max-width: 768px) {
    .nav-icons {
        margin-left: 0;
        gap: 0;
    }

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

    .icon-btn svg {
        width: 20px;
        height: 20px;
    }

    /* Tighter spacing between icons and hamburger menu on mobile */
    .mobile-menu-btn {
        margin-left: 4px;
    }

    /* Smaller badge on mobile, tighter offset */
    .icon-badge {
        top: -2px;
        right: -2px;
        min-width: 16px;
        height: 16px;
        font-size: 0.6rem;
        padding: 0 4px;
        border-width: 1.5px;
    }
}

@media (max-width: 480px) {
    .icon-btn {
        width: 36px;
        height: 36px;
    }
}

/* ============================================
   PHASE 1A, STEP 1A.3 - FAVORITES FEATURE
   Heart on gallery cards, product page heart,
   favorites page styles, toast styling.
   ============================================ */

/* Title row holds the product title AND the heart side-by-side */
.gallery-card-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
}

/* Card title sits naturally inside the title-row */
.gallery-card-title-row .gallery-card-title {
    flex: 1;
    margin: 0;
    min-width: 0; /* allows text wrap */
}

/* Card heart button - clean outline icon, subtle until interacted with */
.card-heart {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: -6px -6px 0 0; /* visual nudge: aligns icon center with title baseline */
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--color-text-light);
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, transform 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.card-heart svg {
    width: 20px;
    height: 20px;
    display: block;
    transition: fill 0.2s ease;
    fill: none;
}

.card-heart:hover {
    color: var(--color-accent);
    background: rgba(201, 168, 108, 0.10);
}

.card-heart:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* Favorited state - gold outline + gold fill */
.card-heart.is-favorited {
    color: var(--color-accent);
}

.card-heart.is-favorited svg {
    fill: var(--color-accent);
}

/* Click pulse animation */
.card-heart.pulse svg {
    animation: heartPulse 200ms ease-out;
}

/* Mobile sizing - heart stays comfortable to tap */
@media (max-width: 768px) {
    .card-heart {
        width: 38px;
        height: 38px;
    }
    .card-heart svg {
        width: 20px;
        height: 20px;
    }
}

/* ============================================
   Product Page - Heart Next to Title
   ============================================ */
.product-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 1rem;
}

.product-title-row .product-title {
    margin: 0;
    flex: 1;
    min-width: 0;
}

.product-heart {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-top: -4px;
    padding: 0;
    border: 1.5px solid var(--color-border);
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-text-light);
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.product-heart svg {
    width: 22px;
    height: 22px;
    display: block;
    fill: none;
    transition: fill 0.2s ease;
}

.product-heart:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
    background: rgba(201, 168, 108, 0.06);
}

.product-heart:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.product-heart.is-favorited {
    color: var(--color-accent);
    border-color: var(--color-accent);
    background: rgba(201, 168, 108, 0.08);
}

.product-heart.is-favorited svg {
    fill: var(--color-accent);
}

.product-heart.pulse svg {
    animation: heartPulse 200ms ease-out;
}

@media (max-width: 480px) {
    .product-heart {
        width: 40px;
        height: 40px;
    }
    .product-heart svg {
        width: 20px;
        height: 20px;
    }
}

/* ============================================
   Favorites Page - Empty State
   ============================================ */
.favorites-empty {
    max-width: 480px;
    margin: var(--spacing-xl) auto;
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-md);
}

.favorites-empty-icon {
    color: var(--color-accent);
    margin: 0 auto var(--spacing-md);
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 108, 0.08);
    border-radius: 50%;
}

.favorites-empty-icon svg {
    width: 36px;
    height: 36px;
    display: block;
}

.favorites-empty-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.favorites-empty-text {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

@media (max-width: 480px) {
    .favorites-empty {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    .favorites-empty-title {
        font-size: 1.5rem;
    }
    .favorites-empty-icon {
        width: 64px;
        height: 64px;
    }
    .favorites-empty-icon svg {
        width: 32px;
        height: 32px;
    }
}

