/* ========================================
   LUXE PERFUME WEBSITE - CSS
   ======================================== */

/* Color Palette */
:root {
    --deep-black: #111111;
    --luxury-gold: #D4AF37;
    --ivory-white: #FAF9F6;
    --soft-beige: #EDE6D6;
    --charcoal-gray: #2C2C2C;
    --dark-gray: #3A3A3A;
    --light-gray: #F5F5F5;
    --success: #4CAF50;
    --error: #F44336;
    --warning: #FF9800;
    --info: #2196F3;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--ivory-white);
    color: var(--deep-black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
    overflow-wrap: anywhere;
    word-break: break-word;
}

a {
    color: var(--deep-black);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--luxury-gold);
}

.container {
    width: min(100%, 1200px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.cta-button {
    background-color: var(--deep-black);
    color: var(--ivory-white);
    border: 2px solid var(--deep-black);
    padding: 14px 40px;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    border-radius: 2px;
}

/* Section layout */
.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.collections {
    padding: 80px 0;
}

.collections-container {
    text-align: center;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 30px;
    justify-items: center;
    align-items: stretch;
    margin-top: 2rem;
}

.collection-card {
    width: 100%;
    max-width: 400px;
    background: white;
    border: 1px solid var(--soft-beige);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(17, 17, 17, 0.06);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    transition: all 0.3s ease;
}

.collection-card-image {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1 / 1.1;
    object-fit: contain;
    border-radius: 16px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--light-gray), var(--soft-beige));
    padding: 1rem;
    transition: all 0.3s ease;
}

.collection-card h3,
.collection-card p,
.collection-card a {
    text-align: center;
}

@media (max-width: 900px) {
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .collection-card {
        max-width: 100%;
    }
}

.cta-button:hover {
    background-color: var(--luxury-gold);
    border-color: var(--luxury-gold);
    color: var(--deep-black);
}

.btn-primary {
    background-color: var(--deep-black);
    color: var(--ivory-white);
    border: none;
    padding: 10px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border-radius: 2px;
    font-weight: 500;
}

.btn-primary:hover:not(:disabled) {
    background-color: var(--luxury-gold);
    color: var(--deep-black);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--deep-black);
    border: 2px solid var(--deep-black);
    padding: 10px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border-radius: 2px;
    font-weight: 500;
}

.btn-secondary:hover {
    background-color: var(--deep-black);
    color: var(--ivory-white);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--ivory-white);
    border-bottom: 1px solid var(--soft-beige);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding-left: 0;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-left: 6px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--deep-black);
    margin: 0;
}

.tagline {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--luxury-gold);
    margin: 0;
    font-weight: 300;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

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

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

.nav-icons {
    display: flex;
    gap: 25px;
    align-items: center;
}

.icon-btn {
    position: relative;
    color: var(--deep-black);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.icon-btn:hover {
    color: var(--luxury-gold);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--error);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

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

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--deep-black);
    transition: all 0.3s ease;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100svh;
    width: 100%;
    max-width: 100%;
    background: linear-gradient(135deg, var(--charcoal-gray) 0%, var(--deep-black) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 10vh, 140px) clamp(16px, 4vw, 24px);
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="luxury" patternUnits="userSpaceOnUse" width="200" height="200"><circle cx="100" cy="100" r="50" fill="none" stroke="%23D4AF37" stroke-width="0.5" opacity="0.1"/><path d="M50,50 L150,150" stroke="%23D4AF37" stroke-width="0.3" opacity="0.1"/></pattern></defs><rect width="1200" height="600" fill="url(%23luxury)"/></svg>');
    background-size: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--ivory-white);
    width: min(100%, 720px);
    max-width: 100%;
    padding: clamp(12px, 3vw, 24px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 4.25rem);
    line-height: 1.15;
    margin-bottom: 0;
    letter-spacing: 0.15em;
    font-weight: 300;
    word-break: break-word;
    max-width: 100%;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.9vw, 1.25rem);
    line-height: 1.7;
    margin-bottom: 0.25rem;
    letter-spacing: 0.06em;
    font-weight: 300;
    color: var(--soft-beige);
    max-width: 640px;
}

.hero .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: min(280px, 100%);
    margin-top: 0.5rem;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive hero adjustments */
@media (max-width: 900px) {
    .hero {
        min-height: 90svh;
        padding: 72px 16px;
    }

    .hero-content {
        width: 100%;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 3rem);
    }

    .hero-subtitle {
        font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 80svh;
        padding: 56px 14px;
    }

    .hero-content {
        width: 100%;
        padding: 0;
        gap: 0.85rem;
    }

    .hero-title {
        letter-spacing: 0.08em;
        line-height: 1.25;
    }

    .hero-subtitle {
        margin-bottom: 0.25rem;
    }

    .hero .cta-button {
        width: 100%;
        max-width: 100%;
        font-size: 0.95rem;
        padding: 12px 18px;
    }
}

@media (max-height: 650px) {
    .hero {
        min-height: auto;
        padding: 48px 14px;
    }
}

/* ========================================
   COLLECTIONS SECTION
   ======================================== */
.collections {
    padding: 80px 0;
    background-color: var(--ivory-white);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    letter-spacing: 2px;
}

.collection-card {
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    max-width: 100%;
}

.collection-card:hover {
    transform: translateY(-5px);
}

.collection-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--soft-beige), var(--light-gray));
    margin-bottom: 20px;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.collection-card:hover .collection-image {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.collection-card h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--deep-black);
}

.collection-card p {
    color: var(--charcoal-gray);
    font-size: 1.05rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.collection-link {
    color: var(--luxury-gold);
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
}

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

.collection-link:hover::after {
    width: 100%;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.best-sellers,
.new-arrivals {
    padding: 80px 0;
    background-color: var(--ivory-white);
    min-height: 500px;
}

.new-arrivals {
    background-color: var(--light-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
    gap: 30px;
    min-height: 400px;
}

.product-card {
    background-color: white;
    border: 1px solid var(--soft-beige);
    transition: all 0.3s ease;
    border-radius: 2px;
    overflow: hidden;
}

.product-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-gray), var(--soft-beige));
    aspect-ratio: 1 / 1.08;
    padding: 34px;
}

.product-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.99), rgba(237,230,214,0.99));
    border-radius: 30px;
    padding: 32px;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.97);
}

.product-image img {
    width: 100%;
    height: 100%;
    max-width: 420px;
    max-height: 420px;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: auto;
    filter: drop-shadow(0 16px 32px rgba(17, 17, 17, 0.22));
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--luxury-gold);
    color: var(--deep-black);
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 2px;
}

.wishlist-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.wishlist-btn:hover {
    background-color: var(--luxury-gold);
}

.wishlist-btn.active {
    background-color: var(--error);
    color: white;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 1.2rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.product-description {
    font-size: 0.9rem;
    color: var(--charcoal-gray);
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-price {
    margin-bottom: 15px;
}

.price {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--deep-black);
}

.original-price {
    font-size: 0.9rem;
    color: var(--charcoal-gray);
    text-decoration: line-through;
    margin-left: 10px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.longevity {
    color: var(--charcoal-gray);
}

.stock-status {
    padding: 4px 8px;
    border-radius: 2px;
    font-weight: 500;
}

.stock-status.in-stock {
    background-color: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
}

.stock-status.out-stock {
    background-color: rgba(244, 67, 54, 0.1);
    color: #c62828;
}

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

.product-actions .btn-secondary,
.product-actions .btn-primary {
    flex: 1;
    padding: 8px 12px;
    font-size: 0.9rem;
}

/* ========================================
   BRAND STORY
   ======================================== */
.brand-story {
    padding: 80px 0;
    background-color: var(--ivory-white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--charcoal-gray);
    margin-bottom: 20px;
}

.story-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--soft-beige), var(--light-gray));
    border-radius: 2px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* ========================================
   REVIEWS
   ======================================== */
.reviews {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

.review-card {
    background-color: white;
    padding: 30px;
    border-left: 4px solid var(--luxury-gold);
    border-radius: 2px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stars {
    color: var(--luxury-gold);
    font-size: 1rem;
    margin-bottom: 15px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--charcoal-gray);
    font-style: italic;
}

.reviewer-name {
    font-weight: 600;
    color: var(--deep-black);
    margin: 0;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    padding: 80px 0;
    background-color: var(--ivory-white);
}

.faq-list {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    padding: 24px 28px;
    border-left: 4px solid var(--luxury-gold);
    border-radius: 2px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.faq-item p {
    margin-bottom: 0;
    color: var(--charcoal-gray);
}

/* ========================================
   NEWSLETTER
   ======================================== */
.newsletter {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--deep-black), var(--charcoal-gray));
    color: var(--ivory-white);
    text-align: center;
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--luxury-gold);
}

.newsletter p {
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 20px;
}

.newsletter-form input {
    flex: 1 1 200px;
    padding: 14px 20px;
    border: none;
    border-radius: 2px;
    font-size: 1rem;
    background-color: var(--ivory-white);
    min-width: 150px;
}

.newsletter-form input::placeholder {
    color: var(--charcoal-gray);
}

.newsletter-form button {
    padding: 14px 30px;
    flex-shrink: 0;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background-color: var(--deep-black);
    color: var(--ivory-white);
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: var(--luxury-gold);
    margin-bottom: 15px;
    font-size: 1rem;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--soft-beige);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--luxury-gold);
    margin-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--charcoal-gray);
    color: var(--soft-beige);
    font-size: 0.9rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .container {
        padding: 0 14px;
    }

    .navbar .container {
        flex-wrap: wrap;
        row-gap: 10px;
    }

    .navbar-brand {
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 90px);
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
        gap: 5px;
        margin-left: 0;
        padding: 6px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 0;
        background-color: var(--ivory-white);
        flex-direction: column;
        padding: 0 20px;
        border-bottom: 1px solid var(--soft-beige);
        gap: 0;
        list-style: none;
        z-index: 999;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .nav-links li {
        border-bottom: 1px solid var(--soft-beige);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
        color: var(--deep-black);
        text-decoration: none;
        font-weight: 500;
    }

    /* Mobile Menu Open State */
    body.menu-open .nav-links {
        display: flex;
        max-height: 400px;
        padding: 20px;
    }

    body.menu-open .menu-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    body.menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    body.menu-open .menu-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero {
        height: 400px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }

    .story-content {
        grid-template-columns: 1fr;
    }

    .story-image {
        height: 300px;
    }

    .collections-grid,
    .products-grid,
    .reviews-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .collection-card {
        padding: 1.5rem 1rem;
    }

    .collection-card-image {
        max-width: 200px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .navbar {
        padding: 12px 0;
    }

    .tagline {
        font-size: 0.6rem;
    }

    .nav-icons {
        gap: 12px;
    }

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

    .cart-count {
        width: 18px;
        height: 18px;
        font-size: 0.65rem;
    }

    .hero {
        height: 300px;
    }

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

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

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .collections-grid,
    .products-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .product-image-wrapper {
        padding: 18px;
    }

    .product-image {
        padding: 16px;
        border-radius: 20px;
    }

    .collection-card-image {
        max-width: 180px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-actions {
        flex-direction: column;
        gap: 8px;
    }

    .product-actions button {
        width: 100%;
    }

    .product-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .hero-title {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }

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

    .review-card,
    .faq-item,
    .collection-card {
        width: 100%;
        max-width: 100%;
    }

    .product-name,
    .product-description,
    .product-price,
    .product-meta,
    .review-text,
    .faq-item p,
    .story-text p {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 8px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .faq-item {
        padding: 16px 20px;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 15px 25px;
    background-color: white;
    border-left: 4px solid var(--success);
    border-radius: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    animation: slideInRight 0.3s ease;
}

.notification.error {
    border-left-color: var(--error);
}

.notification.warning {
    border-left-color: var(--warning);
}

.notification.info {
    border-left-color: var(--info);
}

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

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--soft-beige);
    border-top-color: var(--luxury-gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Fade In Animation */
.fade-in {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Hidden */
.hidden {
    display: none !important;
}

/* Disabled */
.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
