/* Global Styles */
:root {
    /* Background Colors */
    --bg-dark-primary: #000000;
    --bg-dark-secondary: #341a02;
    --bg-dark-tertiary: #000000;
    --bg-dark-highlight: #ffffff;

    /* Text Colors */
    --text-light-primary: #F5EFE6;
    --text-light-secondary: #D4C2B3;
    --text-dark-on-light-accent: #5e3a24;

    /* Accent Colors */
    --accent-gold: #efe35e;
    --accent-gold-darker: #D4AF37;
    --accent-berry: #C0504D;
    --accent-cream: #FFF8F0;

    /* Theme Mapping */
    --primary: var(--bg-dark-secondary);
    --secondary: var(--accent-gold);
    --accent: var(--accent-berry);
    --light: var(--bg-dark-primary);
    --dark: var(--text-light-primary);

    /* Gradients */
    --gradient-1: linear-gradient(45deg, var(--bg-dark-tertiary), var(--bg-dark-secondary));
    --gradient-2: linear-gradient(135deg, var(--accent-gold-darker), var(--accent-gold));
    --gradient-3: linear-gradient(90deg, var(--bg-dark-secondary), var(--bg-dark-tertiary));

    /* Shadows */
    --shadow-color: rgba(0, 0, 0, 0.3);
    --shadow-color-light: rgba(0, 0, 0, 0.5);
}

/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;500;600;700&family=Dancing+Script:wght@700&display=swap');

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/*Scrollbar Styling*/
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark-tertiary);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-2);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold-darker);
}

/* Header & Navigation */
header {
    background: var(--gradient-1);
    color: var(--text-light-primary);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    z-index: 100;
    box-shadow: 0 4px 20px var(--shadow-color);
    transition: all 0.4s ease;
}

header.scrolled {
    padding: 0.7rem 2rem;
    background: rgba(42, 29, 21, 0.95);
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo Styles */
.logo {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo span {
    color: var(--text-light-primary);
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent-gold);
    transition: width 0.5s ease;
}

.logo:hover::after {
    width: 100%;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-light-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-light-primary);
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-icon {
    color: var(--text-light-primary);
    font-size: 1.3rem;
    position: relative;
    text-decoration: none;
    padding: 0.5rem;
}

.nav-icon:hover {
    color: var(--accent-gold);
}

.icon-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent-berry);
    color: var(--text-light-primary);
    border-radius: 50%;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

/* Order Now Button */
.order-now-btn {
    background: var(--gradient-2);
    color: var(--text-dark-on-light-accent);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    animation: pulse 2s infinite;
}

.order-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
                url('https://img.freepik.com/premium-photo/baking-ingredients-black-background-flour-eggs-sugar-cooking-dough-dishes-cooking-background_166116-3305.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light-primary);
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    background-color: rgba(255, 215, 0, 0.5);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-35px) translateX(-15px) rotate(180deg);
        opacity: 0.9;
    }
    75% {
        transform: translateY(-15px) translateX(20px) rotate(270deg);
        opacity: 0.5;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    background: linear-gradient(to right, var(--accent-cream), var(--accent-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content p {
    font-size: clamp(1rem, 3vw, 1.6rem);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.9);
}

/* Button Styles */
.btn {
    display: inline-block;
    background: var(--gradient-2);
    color: var(--text-dark-on-light-accent);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s;
    box-shadow: 0 8px 25px var(--shadow-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--gradient-1);
    transition: all 0.4s;
    border-radius: 50px;
    z-index: -1;
}

.btn:hover {
    color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-color-light);
}

.btn:hover::before {
    width: 100%;
}

/* Featured Banner */
.featured-banner {
    
    padding: 1rem 0;
    background: var(--gradient-3);
    color: var(--text-light-primary);
    text-align: center;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.featured-banner p {
    animation: marquee 20s linear infinite;
    white-space: nowrap;
    display: inline-block;
    padding-left: 0;
    transform: translateX(100%);
}

.featured-banner span {
    color: var(--accent-gold);
    font-weight: 700;
    margin: 0 10px;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Section Titles */
.section-title {
    text-align: center;
    margin: 6rem 0 4rem;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--accent-cream);
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: var(--gradient-2);
    border-radius: 10px;
}

.section-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-gold-darker), var(--accent-gold), var(--accent-gold-darker));
    margin: 0.8rem auto;
    border-radius: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light-secondary);
    max-width: 800px;
    margin: -2rem auto 3rem;
}

/* Products Section */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 0 2rem;
    margin-bottom: 6rem;
}

.product-card {
    background-color: var(--bg-dark-secondary);
    color: var(--text-light-primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: all 0.5s;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
}

.product-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px var(--shadow-color-light);
}

.product-tag {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent-berry);
    color: var(--text-light-primary);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(192, 80, 77, 0.3);
    text-align: center;
    transform-origin: top right;
}

.product-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.product-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    opacity: 0.8;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s, filter 0.8s;
}

.product-card:hover .product-img img {
    transform: scale(1.15);
    filter: brightness(1.1);
}

.product-info {
    padding: 2rem;
    position: relative;
}

.product-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--gradient-2);
    border-radius: 2px;
}

.product-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--accent-cream);
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
}

.product-info h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-berry);
    transition: width 0.3s ease;
}

.product-card:hover .product-info h3::after {
    width: 100%;
}

.product-info p {
    margin-bottom: 1.5rem;
    color: var(--text-light-secondary);
    line-height: 1.6;
    min-height: 60px;
}

.price-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
}

.price small {
    font-size: 1rem;
    color: var(--text-light-secondary);
    text-decoration: line-through;
    margin-left: 8px;
}

.rating {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.rating .fa-star-half-alt {
    color: var(--accent-gold);
}

.rating .far.fa-star {
    color: var(--bg-dark-tertiary);
}

.product-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.add-to-cart {
    background: var(--gradient-3);
    color: var(--text-light-primary);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.add-to-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow-color);
    background: var(--bg-dark-highlight);
    color:#000;
}

.wishlist-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark-tertiary);
    background: var(--bg-dark-secondary);
    color: var(--text-light-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.wishlist-btn:hover,
.wishlist-btn.active {
    border-color: var(--accent-berry);
    color: var(--accent-berry);
    transform: scale(1.1);
}

.wishlist-btn.active .fa-heart {
    font-weight: 900;
}

/* Featured Products */
.featured-products {
    background: linear-gradient(135deg, rgba(42, 29, 21, 0.3), rgba(62, 44, 33, 0.5));
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.featured-products::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--bg-dark-primary));
    z-index: 1;
}

.featured-products::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, transparent, var(--bg-dark-primary));
    z-index: 1;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.featured-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px var(--shadow-color);
    transition: all 0.5s;
    cursor: pointer;
    height: 300px;
    opacity: 0;
    transform: scale(0.9);
}

.featured-item.animate {
    opacity: 1;
    transform: scale(1);
}

.featured-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px var(--shadow-color-light);
}

.featured-item:nth-child(1) {
    grid-column: span 6;
    grid-row: span 2;
    height: 615px;
}

.featured-item:nth-child(2),
.featured-item:nth-child(5) {
    grid-column: span 6;
}

.featured-item:nth-child(3),
.featured-item:nth-child(4) {
    grid-column: span 3;
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.featured-item:hover .featured-img {
    transform: scale(1.1);
}

.featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--text-light-primary);
    transition: all 0.5s;
}

.featured-item:hover .featured-content {
    padding-bottom: 3rem;
}

.featured-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.featured-price {
    color: var(--accent-gold);
    font-size: 1.4rem;
    font-weight: 700;
}

/* About Section */
.about {
    background: var(--gradient-1);
    color: var(--text-light-primary);
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 0 !important;
}

.about-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(245, 239, 230, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    align-items: center;
}

.about-text {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s;
}

.about-text.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--accent-cream);
    position: relative;
}

.about-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--gradient-2);
    margin: 1rem 0;
    border-radius: 2px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-light-secondary);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(245, 239, 230, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
    border: 1px solid rgba(245,239,230,0.1);
}

.stat:hover {
    transform: translateY(-10px);
    background: rgba(245, 239, 230, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light-secondary);
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px var(--shadow-color-light);
    height: 500px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s;
}

.about-image.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 120px;
    height: 120px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 10px 20px var(--shadow-color);
    animation: rotate 10s linear infinite;
    color: var(--text-dark-on-light-accent);
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.about-badge span {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.2rem;
}

/* Special Offers */
.special-offers {
    padding: 6rem 2rem;
    text-align: center;
    background-color: var(--bg-dark-primary);
}

.offer-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.offer-card {
    width: 350px;
    padding: 2.5rem;
    border-radius: 20px;
    background: var(--bg-dark-secondary);
    color: var(--text-light-primary);
    text-align: center;
    box-shadow: 0 15px 40px var(--shadow-color);
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
}

.offer-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.offer-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 30px #8e7114;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-2);
}

.offer-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-3);
    color: var(--text-light-primary);
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px var(--shadow-color);
}

.offer-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-cream);
    font-family: 'Playfair Display', serif;
}

.offer-text {
    color: var(--text-light-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.offer-code {
    padding: 0.7rem 1.5rem;
    background: rgba(62, 44, 33, 0.5);
    border-radius: 50px;
    font-weight: 600;
    color: var(--accent-gold);
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid var(--accent-gold-darker);
}

.offer-card .btn {
    background: var(--gradient-2);
    color: var(--text-dark-on-light-accent);
}

.offer-card .btn:hover {
    background: var(--accent-gold-darker);
    color: #ffffff;
}

/* Testimonials */
.testimonials {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(42, 29, 21, 0.3), rgba(62, 44, 33, 0.5));
    position: relative;
    overflow: hidden;
}

.testimonial-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 2rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    scroll-snap-align: start;
    min-width: 350px;
    flex: 0 0 350px;
    background: var(--bg-dark-secondary);
    color: var(--text-light-primary);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-color);
    position: relative;
    transition: all 0.4s;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-color-light);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    color: rgba(245, 239, 230, 0.05);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-light-secondary);
    min-height: 100px;
}

.testimonial-rating {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.customer {
    display: flex;
    align-items: center;
}

.customer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid var(--accent-gold);
}

.customer-info h4 {
    margin-bottom: 0.2rem;
    color: var(--accent-cream);
    font-size: 1.2rem;
}

.customer-info span {
    color: var(--text-light-secondary);
    font-size: 0.9rem;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-dark-highlight);
    border: none;
    box-shadow: 0 5px 15px var(--shadow-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-dark-on-light-accent);
}

.slider-btn:hover {
    background: var(--accent-gold);
    color: var(--text-dark-on-light-accent);
    transform: translateY(-3px);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--bg-dark-tertiary);
    color: var(--text-light-secondary);
}

/* Gallery Section */
.gallery {
    padding: 6rem 0 0;
    overflow: hidden;
    background-color: var(--bg-dark-primary);
    margin-bottom: 0 !important;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s;
    aspect-ratio: 1/1;
}

.gallery-item.wide {
    aspect-ratio: 2/1;
}

.gallery-item.tall {
    aspect-ratio: 1/2;
}

.gallery-item.animate {
    opacity: 1;
    transform: scale(1);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 29, 21, 0.8);
    color: var(--text-light-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s;
    text-align: center;
    padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    transform: translateY(-20px);
    transition: transform 0.4s;
}

.gallery-item:hover .gallery-title {
    transform: translateY(0);
}

.gallery-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    transform: translateY(20px);
    transition: transform 0.4s;
}

.gallery-item:hover .gallery-icon {
    transform: translateY(0);
}

/* Contact Section */
.contact {
    padding: 8rem 2rem;
    background: linear-gradient(rgba(42, 29, 21, 0.9), rgba(42, 29, 21, 0.95)),
                url('https://images.unsplash.com/photo-1559620192-032c4bc4674e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: var(--text-light-primary);
    margin-bottom: 0 !important;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s;
}

.contact-info.animate {
    opacity: 1;
    transform: translateX(0);
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    color: var(--accent-cream);
}

.contact-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-2);
    margin: 1rem 0;
    border-radius: 2px;
}

.contact-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: var(--text-light-secondary);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item a {
    color: var(--text-light-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--accent-gold);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(245, 239, 230, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--accent-gold);
    transition: all 0.3s;
    flex-shrink: 0;
}

.contact-item:hover .contact-icon {
    background: var(--accent-gold);
    color: var(--text-dark-on-light-accent);
    transform: scale(1.1);
}

.contact-hours {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(245, 239, 230, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(245,239,230,0.1);
}

.hours-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--text-light-secondary);
}

.hours-row span:first-child {
    color: var(--text-light-primary);
}

.form-container {
    background: var(--bg-dark-secondary);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px var(--shadow-color-light);
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s;
}

.form-container.animate {
    opacity: 1;
    transform: translateX(0);
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--accent-cream);
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light-secondary);
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: rgba(255, 255, 255, 0.05);
    background-color:rgba(255, 255, 255, 0.05);
    color: var(--text-light-primary);
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 1rem;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.05);
    opacity: 0.7;
}

.form-input:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
    outline: none;
    background-color: var(--bg-dark-secondary);
}

.form-textarea {
    height: 150px;
    resize: none;
}

.form-submit {
    width: 100%;
    background: var(--gradient-2);
    color: var(--text-dark-on-light-accent);
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.form-submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-color);
    background: var(--accent-gold-darker);
}

/* Footer Styles */
.footer {
    background: var(--gradient-1);
    color: var(--text-light-primary);
    padding: 4rem 0 0;
    position: relative;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-col {
    padding: 1rem;
}

.footer-logo h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--text-light-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link, .social-link:hover, .social-link:focus {
    text-decoration: none !important;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light-primary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-gold);
    color: var(--bg-dark-primary);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-links {
    list-style: none;
}

.footer-link {
    margin-bottom: 0.8rem;
}

.footer-link a {
    color: var(--text-light-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input {
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    color: var(--text-light-primary);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.newsletter-submit {
    padding: 0.8rem;
    background: var(--accent-gold);
    color: var(--bg-dark-primary);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-submit:hover {
    background: var(--accent-gold-darker);
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-light-secondary);
    margin-bottom: 1rem;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-bottom-link {
    color: var(--text-light-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom-link:hover {
    color: var(--accent-gold);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    color: var(--text-dark-on-light-accent);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
    z-index: 1000;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-color);
    background: var(--accent-gold-darker);
}

/* Modals (General) */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85); /* Darker overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0s 0.4s;
}
.modal.show { opacity: 1; visibility: visible; transition: opacity 0.4s; }
.modal-content {
    width: 90%;
    max-width: 600px; /* Slightly wider for cart/wishlist items */
    background: var(--bg-dark-secondary);
    color: var(--text-light-primary);
    border-radius: 20px;
    overflow: hidden;
    transform: translateY(-50px) scale(0.9);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    box-shadow: 0 25px 50px var(--shadow-color-light);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}
.modal.show .modal-content { transform: translateY(0) scale(1); }
.modal-header { background: var(--gradient-1); color: var(--text-light-primary); padding: 1.5rem; text-align: center; position: relative; }
.modal-title { font-size: 1.8rem; font-family: 'Playfair Display', serif; color: var(--accent-cream); }
.close-modal { position: absolute; top: 15px; right: 15px; background: rgba(245, 239, 230, 0.1); width: 30px; height: 30px; border-radius: 50%; display: flex; justify-content: center; align-items: center; cursor: pointer; transition: all 0.3s; border: none; color: var(--text-light-primary); }
.close-modal:hover { background: var(--accent-cream); color: var(--bg-dark-primary); transform: rotate(90deg); }
.modal-body { padding: 2rem; overflow-y: auto; }
.modal-body .form-group:last-child { margin-bottom: 0; }
.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--bg-dark-tertiary);
    text-align: right;
}
.modal-footer h4 { color: var(--accent-cream); margin-bottom: 1rem; font-size: 1.2rem; }
.modal-footer .btn:disabled { background: var(--bg-dark-tertiary); color: var(--text-light-secondary); cursor: not-allowed; opacity: 0.7; }


/* Wishlist & Cart Item Styling */
.wishlist-item, .cart-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--bg-dark-tertiary);
}
.wishlist-item:last-child, .cart-item:last-child { border-bottom: none; }
.item-image img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; }
.item-details { flex-grow: 1; }
.item-details h5 { font-size: 1.1rem; color: var(--accent-cream); margin-bottom: 0.3rem; }
.item-details p { font-size: 1rem; color: var(--accent-gold); }
.item-actions button, .quantity-controls button {
    background: var(--accent-berry);
    color: var(--text-light-primary);
    border: none;
    padding: 0.5rem 0.8rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.item-actions button:hover, .quantity-controls button:hover { background: #a5423f; /* Darker berry */ }
.quantity-controls { display: flex; align-items: center; gap: 0.5rem; }
.quantity-controls input {
    width: 40px;
    text-align: center;
    background-color: var(--bg-dark-highlight);
    color: #000;
    border: 1px solid var(--bg-dark-tertiary);
    border-radius: 4px;
    padding: 0.3rem;
}
.empty-message { text-align: center; color: var(--text-light-secondary); padding: 2rem 0; }

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-gold);
    color: var(--text-dark-on-light-accent);
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-color);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    font-weight: 500;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(-20px); }


/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-actions {
        margin-left: auto;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
    }

    .testimonial-container {
        padding: 0 1rem;
    }

    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .offer-container {
        flex-direction: column;
    }

    .offer-card {
        width: 100%;
    }

    .testimonial-card {
        min-width: 100%;
    }

    .gallery-container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        max-width: 350px;
        margin: 0 auto;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: auto;
        grid-row: auto;
    }

    .contact-info,
    .form-container {
        padding: 1.5rem;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Utility Classes */
.animate {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-delay-1 {
    animation-delay: 0.2s;
}

.animate-delay-2 {
    animation-delay: 0.4s;
}

.animate-delay-3 {
    animation-delay: 0.6s;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 2.5rem; }

.ml-1 { margin-left: 0.5rem; }
.ml-2 { margin-left: 1rem; }
.ml-3 { margin-left: 1.5rem; }
.ml-4 { margin-left: 2rem; }
.ml-5 { margin-left: 2.5rem; }

.mr-1 { margin-right: 0.5rem; }
.mr-2 { margin-right: 1rem; }
.mr-3 { margin-right: 1.5rem; }
.mr-4 { margin-right: 2rem; }
.mr-5 { margin-right: 2.5rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 2.5rem; }

.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pt-4 { padding-top: 2rem; }
.pt-5 { padding-top: 2.5rem; }

.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-4 { padding-bottom: 2rem; }
.pb-5 { padding-bottom: 2.5rem; }

.pl-1 { padding-left: 0.5rem; }
.pl-2 { padding-left: 1rem; }
.pl-3 { padding-left: 1.5rem; }
.pl-4 { padding-left: 2rem; }
.pl-5 { padding-left: 2.5rem; }

.pr-1 { padding-right: 0.5rem; }
.pr-2 { padding-right: 1rem; }
.pr-3 { padding-right: 1.5rem; }
.pr-4 { padding-right: 2rem; }
.pr-5 { padding-right: 2.5rem; }

.d-flex { display: flex; }
.d-grid { display: grid; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-none { display: none; }

.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.flex-grow-1 { flex-grow: 1; }
.flex-shrink-0 { flex-shrink: 0; }

.justify-content-start { justify-content: flex-start; }
.justify-content-end { justify-content: flex-end; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-around { justify-content: space-around; }

.align-items-start { align-items: flex-start; }
.align-items-end { align-items: flex-end; }
.align-items-center { align-items: center; }
.align-items-baseline { align-items: baseline; }
.align-items-stretch { align-items: stretch; }

.text-primary { color: var(--text-light-primary); }
.text-secondary { color: var(--text-light-secondary); }
.text-accent { color: var(--accent-gold); }
.text-cream { color: var(--accent-cream); }

.bg-primary { background-color: var(--bg-dark-primary); }
.bg-secondary { background-color: var(--bg-dark-secondary); }
.bg-tertiary { background-color: var(--bg-dark-tertiary); }
.bg-highlight { background-color: var(--bg-dark-highlight); }

.rounded { border-radius: 8px; }
.rounded-circle { border-radius: 50%; }
.rounded-0 { border-radius: 0; }

.shadow-sm { box-shadow: 0 2px 4px var(--shadow-color); }
.shadow { box-shadow: 0 4px 6px var(--shadow-color); }
.shadow-lg { box-shadow: 0 10px 15px var(--shadow-color); }
.shadow-none { box-shadow: none; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }
.mw-100 { max-width: 100%; }
.mh-100 { max-height: 100%; }

.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }
.position-sticky { position: sticky; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-scroll { overflow: scroll; }
.overflow-visible { overflow: visible; }

.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.cursor-not-allowed { cursor: not-allowed; }

.user-select-none { user-select: none; }
.user-select-auto { user-select: auto; }
.user-select-all { user-select: all; }

.visible { visibility: visible; }
.invisible { visibility: hidden; }

.opacity-0 { opacity: 0; }
.opacity-25 { opacity: 0.25; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

.z-0 { z-index: 0; }
.z-1 { z-index: 1; }
.z-2 { z-index: 2; }
.z-3 { z-index: 3; }
.z-4 { z-index: 4; }
.z-5 { z-index: 5; }

.transition { transition: all 0.3s ease; }
.transition-fast { transition: all 0.15s ease; }
.transition-slow { transition: all 0.5s ease; }

.transform-none { transform: none; }
.transform-scale { transform: scale(1.1); }
.transform-rotate { transform: rotate(45deg); }
.transform-translate { transform: translateY(-5px); }
