:root {
    --color-primary: #3E4D44;
    /* Dark Sage Green */
    --color-secondary: #C5A065;
    /* Gold/Beige */
    --color-text-main: #333333;
    --color-text-light: #ffffff;
    --color-bg-light: #ffffff;
    --font-heading: 'Cinzel', serif;
    --font-subheading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --btn-border: 1px solid #fff;
    --btn-padding: 12px 30px;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Typography Utility Classes */
.h1,
.h2,
.h3 {
    font-family: var(--font-heading);
    font-weight: 400;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


/* Updated Product Card Grid Design matching screenshot */

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

.product-card {
    border: none;
    padding: 0;
    background: transparent;
    text-align: left;
    transition: transform 0.3s ease;
}

.product-card:hover {
    box-shadow: none;
    transform: none;
    /* Removed lift, keeping it simple as per screenshot */
}

.product-image {
    position: relative;
    margin-bottom: 20px;
    border-radius: 20px;
    /* Distinct rounded corners */
    overflow: hidden;
    aspect-ratio: 1/1;
    background-color: #ffffff;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Quick View Overlay */
.product-image::after {
    content: 'Quick View';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    color: #444;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image:hover::after {
    opacity: 1;
}

/* Badge Style */
.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #A64B29;
    /* Burnt orange color from screenshot */
    color: #fff;
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 20px;
    /* Pill shape */
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: none;
    z-index: 10;
}

.badge.new {
    background-color: #A64B29;
}

.badge.sale {
    background-color: #C15B5B;
}

/* Typography */
.product-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #444;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 5px;
    min-height: auto;
}

.product-info h4 a {
    color: #555;
    text-decoration: none;
}

.product-info .price {
    font-family: 'Lato', sans-serif;
    color: #666;
    /* Greyer text */
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 15px;
}

/* Button Style */
.btn-shop-add {
    display: block;
    width: 100%;
    background-color: #6F7D71;
    /* Desaturated Olive Green */
    color: #fff;
    border: none;
    padding: 12px 0;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 1;
    /* Always visible as per screenshot */
    transform: none;
    border-radius: 4px;
    /* Slight rounded */
    transition: background-color 0.3s ease;
}

.product-card:hover .btn-shop-add {
    background-color: #556257;
    /* Darker olive on hover */
    color: #fff;
    border: none;
    transform: none;
}

.sort-dropdown select {
    font-family: 'Playfair Display', serif;
    color: #555;
}

/* Header Styles */
.top-bar {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    text-align: center;
    padding: 8px 0;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-container {
    text-align: center;
    padding: 30px 0;
    background-color: #f7f8f3;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 3px;
    margin-bottom: 5px;
    color: #000;
}

.tagline {
    font-family: var(--font-subheading);
    font-style: italic;
    color: #666;
    font-size: 1rem;
    letter-spacing: 1px;
}

.main-nav {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    background-color: #f7f8f3;
    /* Match logo background */
    position: relative;
    z-index: 100;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: #555;
    font-weight: 400;
    padding: 10px 0;
    display: block;
}

.main-nav a:hover {
    color: var(--color-secondary);
}

/* Dropdown Container */
.main-nav ul li {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.main-nav ul ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px 0;
    display: block;
    /* Overrides flex from parent ul */
    border-radius: 4px;
    transition: all 0.3s ease;
    border-top: 2px solid var(--color-secondary);
}

/* Dropdown Links */
.main-nav ul ul li {
    display: block;
    text-align: center;
}

.main-nav ul ul li a {
    padding: 12px 20px;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #555;
    white-space: nowrap;
}

.main-nav ul ul li a:hover {
    background-color: #ffffff;
    color: var(--color-secondary);
}

/* Show Dropdown on Hover */
.main-nav ul li:hover>ul,
.main-nav ul li:focus-within>ul {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(10px);
}

/* Mobile Dropdown styles handled in media query below */

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

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

    .main-nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        border-bottom: 1px solid #eee;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
        gap: 0;
        /* Reset gap for list items */
        text-align: center;
    }

    .main-nav ul.active {
        display: flex;
    }

    .main-nav ul li {
        display: block;
        width: 100%;
    }

    /* Mobile Dropdown Reset */
    .main-nav ul ul {
        position: relative;
        visibility: visible;
        opacity: 1;
        transform: none;
        box-shadow: none;
        min-width: 100%;
        left: 0;
        top: 0;
        background-color: #ffffff;
        display: none;
        /* Collapsed by default on mobile? Or just show all? Let's show all for simplicity or toggle */
        padding: 0;
        border-top: none;
    }

    .main-nav ul li:hover>ul {
        display: block;
        transform: none;
    }
}

/* Hero Section */
.hero-section {
    height: 60vh;
    /* Reduced height to show 'About' teasingly */
    min-height: 500px;
    background-image: url('assets/images/cp23.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #ffffff;
    /* Fallback color */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    /* Ensure video doesn't spill out */
}


.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    /* Allow wider text */
    padding: 0 20px;
    background-color: transparent;
    /* Remove background box */
    backdrop-filter: none;
    /* Remove blur */
}

.hero-greeting {
    font-family: 'Playfair Display', serif;
    /* Or var(--font-heading) if defined as such */
    font-size: 2.5rem;
    /* Large size */
    line-height: 1.4;
    font-style: italic;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    /* Strong shadow for readability */
    margin: 0;
}

@media (max-width: 768px) {
    .hero-greeting {
        font-size: 1.8rem;
    }
}

.hero-greeting .highlight {
    font-family: var(--font-heading);
    background-color: var(--color-secondary);
    color: #fff;
    padding: 2px 10px;
    font-style: normal;
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-right: 5px;
    display: inline-block;
    vertical-align: middle;
}


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

.btn-hero {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #fff;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
    background-color: #fff;
    color: var(--color-primary);
}

.btn-hero.btn-secondary {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.btn-hero.btn-secondary:hover {
    background-color: #fff;
    color: var(--color-secondary);
    border-color: #fff;
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
}



/* About Section */
.about-section {
    background-color: var(--color-primary);
    color: #fff;
    padding: 80px 0 40px;
    position: relative;
    border-bottom: 20px solid #fff;
    /* Placeholder for divider if needed */
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-image {
    position: relative;
    width: 300px;
    height: 300px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    position: relative;
    z-index: 2;
}

.about-text {
    max-width: 500px;
}

.section-title {
    font-family: var(--font-subheading);
    font-style: italic;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.about-text p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    font-weight: 300;
}

.btn-text {
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-top: 10px;
    border-bottom: 1px solid transparent;
}

.btn-text:hover {
    border-bottom-color: var(--color-secondary);
}

/* Commission Section */
.commission-section {
    padding: 60px 0;
    background-color: #fff;
}

.commission-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    background-color: var(--color-primary);
    /* Use primary color for the card background if needed, but screenshot shows image + text block */
    /* Looking at screenshot again: The commission section has a large image on left, and a dark box on right (or overlaid) */
    /* Let's try to match the "Image Left, Text Right" block style typical of the reference */
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
}

.commission-container {
    /* Resetting container for this specific look */
    background: transparent;
    gap: 20px;
}

.commission-image {
    flex: 1;
    min-width: 300px;
}

.commission-image img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.commission-content {
    flex: 1;
    min-width: 300px;
    background-color: var(--color-primary);
    /* Or a similar dark grey/green */
    color: #fff;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    height: 100%;
    /* Match image height if possible */
    align-self: stretch;
}

.commission-content h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 2rem;
    letter-spacing: 2px;
}

.commission-content p {
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-style: italic;
    font-family: var(--font-subheading);
}

.btn-outline {
    border: 1px solid #fff;
    padding: 12px 30px;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-top: 10px;
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--color-primary);
}

/* Categories Section */
.categories-section {
    padding: 40px 0;
}

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

.category-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    display: block;
    aspect-ratio: 1/1;
    /* Square cards */
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.category-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.category-overlay .btn-text {
    border-bottom: 1px solid #fff;
}

/* Shop Favourites */
.shop-favourites {
    padding: 60px 0;
    background-color: var(--color-primary);
    color: #fff;
}

.shop-favourites .section-title {
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.shop-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.shop-item {
    width: 250px;
    text-align: center;
    color: #fff;
    display: block;
}

.shop-item img {
    border-radius: 5px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.shop-item:hover img {
    transform: translateY(-5px);
}

.shop-subtitle {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-transform: uppercase;
    opacity: 0.8;
}

.shop-item h4 {
    font-family: var(--font-subheading);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.btn-bg {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.shop-item:hover .btn-bg {
    background-color: var(--color-secondary);
}

/* Testimonial Section */
.testimonial-section {
    height: 400px;
    background-image: url('assets/images/cp12.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(62, 77, 68, 0.7);
    /* Dark green overlay */
}

.testimonial-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    max-width: 700px;
}

.stars {
    color: #fff;
    letter-spacing: 5px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

blockquote {
    font-family: var(--font-subheading);
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 30px;
}

cite {
    font-style: normal;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
}

/* Blog Section */
.blog-section {
    padding: 60px 0;
    background-color: var(--color-primary);
    color: #fff;
}

.blog-section .section-title {
    color: #fff;
    margin-bottom: 40px;
}

.blog-grid {
    display: flex;
    justify-content: center;
}

.blog-post {
    max-width: 400px;
    background-color: rgba(255, 255, 255, 0.05);
    /* Slight highlight */
    border-radius: 5px;
    overflow: hidden;
}

.blog-image {
    position: relative;
    height: 250px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-date {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #fff;
    color: #333;
    padding: 5px 10px;
    text-align: center;
    border-radius: 2px;
}

.blog-date .day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.blog-date .month {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
}

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

.blog-content h3 {
    font-family: var(--font-heading);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.blog-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.blog-content .btn-text {
    border-bottom: 1px solid #fff;
}

/* Misc Section */
.misc-section {
    padding: 60px 0;
    background-color: #333;
    /* Darker background */
    color: #fff;
    text-align: center;
}

.misc-section h2 {
    font-family: var(--font-heading);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.misc-section p {
    max-width: 600px;
    margin: 0 auto 25px;
    font-style: italic;
    font-family: var(--font-subheading);
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    background-color: var(--color-primary);
    display: flex;
    justify-content: center;
}

.newsletter-box {
    background-color: #fff;
    padding: 40px;
    text-align: center;
    max-width: 600px;
    width: 90%;
    border: 1px solid #ddd;
    /* Example border */
}

.envelope-icon {
    font-size: 2rem;
    color: #333;
    display: block;
    margin-bottom: 10px;
    font-style: normal;
}

.newsletter-box h3 {
    font-family: var(--font-heading);
    margin-bottom: 10px;
    color: #333;
    letter-spacing: 2px;
}

.newsletter-box p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-style: italic;
    font-family: var(--font-subheading);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    padding: 10px;
    border: 1px solid #ddd;
    width: 250px;
    font-family: var(--font-body);
}

.newsletter-form button {
    background-color: var(--color-primary);
    color: #fff;
    border: none;
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--color-secondary);
}

/* Footer */
.main-footer {
    background-color: #3e4d44;
    /* Dark green matching primary roughly */
    color: #fff;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-col h4 {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}

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

.footer-col ul li a {
    font-size: 0.85rem;
    color: #ddd;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    font-size: 0.9rem;
    border: 1px solid #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    background-color: #fff;
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.75rem;
}

/* Shop Page Styles */
.shop-hero {
    height: 400px;
    /* Taller hero */
    background-image: url('assets/images/cp11.jpeg');
    background-attachment: fixed;
    /* Parallax feel */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    position: relative;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
}

.shop-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.shop-hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
}

.shop-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    padding-bottom: 10px;
    animation: fadeInDown 1s ease-out;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shop-main {
    padding: 0 0 60px;
    background-color: #fff;
    min-height: 80vh;
}

.shop-layout {
    display: flex;
    gap: 40px;
}

.shop-sidebar {
    width: 200px;
    /* Thinner sidebar as per screenshot */
    flex-shrink: 0;
    padding-right: 40px;
    /* More breathing room */
}

/* Enhancements for "More Attractive" Look */
.shop-sidebar .filter-group h3 {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.shop-sidebar ul li a {
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
    display: inline-block;
}

.shop-sidebar ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 5px;
    left: 0;
    background-color: var(--color-primary);
    transition: width 0.3s;
}

.shop-sidebar ul li a:hover::after,
.shop-sidebar ul li a.active::after {
    width: 100%;
}

@media (max-width: 768px) {
    .shop-layout {
        flex-direction: column;
    }

    .shop-sidebar {
        width: 100%;
        margin-bottom: 30px;
    }
}

/* Commission & Gallery Styles */

.commission-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.commission-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.commission-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.commission-hero h1 {
    font-size: 3.5rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 5px;
    margin-bottom: 30px;
}



.btn-hero-outline {
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.btn-hero-outline:hover {
    background: #fff;
    color: #333;
}

/* Commission Process Steps */
.commission-intro {
    text-align: center;
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
}

.step {
    flex: 1;
    max-width: 300px;
}

.step h3 {
    font-family: 'Cinzel', serif;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.step-divider {
    width: 1px;
    height: 80px;
    background: #ccc;
    margin-top: 10px;
}

/* Pricing Table */
.pricing-section {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 60px;
}

.pricing-section h2 {
    font-family: 'Cinzel', serif;
    color: #444;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.pricing-table-container {
    max-width: 800px;
    margin: 0 auto 20px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
    font-family: 'Lato', sans-serif;
}

.pricing-table th {
    background-color: var(--color-primary);
    color: #fff;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    font-weight: 400;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.info-block img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.info-block h3 {
    font-family: 'Cinzel', serif;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Gallery Pages */
.gallery-section {
    text-align: center;
    margin-bottom: 80px;
}

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

.section-title h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #444;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.gallery-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.gallery-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
    /* Helps sketches blend if bg is not pure white */
}

.product-container {
    display: flex;
    gap: 60px;
}

.product-gallery {
    flex: 1;
    background-color: #ffffff;
}

.product-gallery img {
    width: 100%;
    height: auto;
    display: block;
}

.product-details {
    flex: 1;
    padding-top: 20px;
}

.breadcrumbs {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumbs a {
    color: #333;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
}

.product-price {
    font-family: var(--font-subheading);
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-bottom: 30px;
    font-weight: 700;
}


/* Home Page Gallery */
.home-gallery {
    padding: 60px 0;
    background-color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 1/1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

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

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

.product-description {
    margin-bottom: 30px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

.product-description ul {
    list-style: disc;
    margin-left: 20px;
    margin-top: 15px;
}

.product-description ul li {
    margin-bottom: 5px;
}

.purchase-options {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.purchase-options input {
    padding: 10px;
    width: 60px;
    border: 1px solid #ddd;
    text-align: center;
    font-family: var(--font-body);
}

.purchase-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.add-to-cart-btn,
.buy-now-btn {
    flex: 1;
    padding: 15px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-body);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn {
    background-color: white;
    border: 1px solid #333;
    color: #333;
}

.add-to-cart-btn:hover {
    background-color: #f0f0f0;
}

.buy-now-btn {
    background-color: var(--color-primary);
    color: white;
    border: 1px solid var(--color-primary);
}

.buy-now-btn:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.delivery-info {
    border-top: 1px solid #eee;
    padding-top: 20px;
    font-size: 0.85rem;
    color: #666;
}

.product-container {
    flex-direction: column;
    gap: 30px;
}

/* =========================================
   Updated Commission Styles 
   ========================================= */

.commission-hero {
    height: 500px;
    /* Taller hero */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}

.commission-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Darker overlay for contrast */
}

.commission-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.commission-hero h1 {
    font-size: 4rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 8px;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    display: inline-block;
    padding-bottom: 10px;
}



.btn-hero-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 15px 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.btn-hero-outline:hover {
    background: #fff;
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Process Steps & Types */
.commission-section {
    margin-bottom: 80px;
}

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

.section-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #ccc, transparent);
    /* Elegant divider */
    margin: 80px 0;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.step {
    flex: 1;
    max-width: 300px;
    padding: 20px;
    background: #fff;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.step h3 {
    font-family: 'Cinzel', serif;
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.step-divider {
    width: 1px;
    background: #e0e0e0;
    align-self: stretch;
}

/* Step Headers */
.step-title {
    font-family: 'Cinzel', serif;
    color: var(--color-primary);
    font-size: 1.8rem;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--color-secondary);
    /* Olive accent */
    padding-bottom: 10px;
    display: inline-block;
}

/* Visual Break Row */
.visual-break-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 60px 0;
}

.floating-img {
    height: 150px;
    width: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.floating-img:hover {
    transform: scale(1.1) rotate(2deg);
}

/* Pricing Table */
.pricing-table-container {
    max-width: 800px;
    margin: 40px auto;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    border-radius: 8px;
    overflow: hidden;
}

.pricing-table th {
    background-color: var(--color-primary);
    color: #fff;
    padding: 25px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.pricing-table td {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.pricing-table tr:hover td {
    background-color: #ffffff;
}

/* Info Box */
.info-box {
    background: #ffffff;
    padding: 30px;
    border-left: 4px solid var(--color-primary);
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

/* Info Grid & Images */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-image-grid img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.styled-list li {
    position: relative;
    margin-bottom: 15px;
    padding-left: 25px;
    font-size: 1.05rem;
}

.styled-list li::before {
    content: '✦';
    /* Star/Sparkle bullet */
    color: var(--color-secondary);
    position: absolute;
    left: 0;
    top: 2px;
}

/* Policies */
.policies-section {
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 8px;
    margin-bottom: 60px;
}

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

.policy-item h4 {
    font-family: 'Cinzel', serif;
    color: #333;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.commission-cta {
    background: #ffffff;
    padding: 80px;
    border: 1px solid #eee;
}

/* =========================================
   Contact Page Styles 
   ========================================= */

.contact-hero {
    height: 400px;
    background-color: var(--color-primary);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
}

.contact-hero h1 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    letter-spacing: 8px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    padding-bottom: 15px;
}

/* Contact Hero Chat Buttons */
.hero-chat-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.hero-chat-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.hero-chat-btn i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.hero-chat-btn:hover i {
    transform: scale(1.2);
}

/* WhatsApp button */
.whatsapp-btn {
    background-color: #25D366;
    color: #fff;
    border: 2px solid #25D366;
}

.whatsapp-btn:hover {
    background-color: #fff;
    color: #25D366;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}

/* Instagram button */
.instagram-btn {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    border: 2px solid transparent;
}

.instagram-btn:hover {
    background: #fff;
    color: #bc1888;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(188, 24, 136, 0.4);
}

@media (max-width: 480px) {
    .hero-chat-buttons {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

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

.container-narrow {
    max-width: 700px;
    background: #fff;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    /* Card look */
    border-radius: 8px;
    margin-bottom: 80px;
}

.contact-intro {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-socials {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.contact-socials a {
    color: #aaa;
    font-size: 1.4rem;
    margin: 0 15px;
    transition: all 0.3s;
    display: inline-block;
}

.contact-socials a:hover {
    color: var(--color-primary);
    transform: translateY(-3px);
}

/* Form Styling */
.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--color-secondary);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(166, 75, 41, 0.1);
    /* Subtle focus glow */
}

.contact-form textarea {
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 30px;
}

.form-row .form-group {
    flex: 1;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #ffffff;
    padding: 15px;
    border-radius: 4px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
    transition: color 0.2s;
}

.radio-label:hover {
    color: #000;
}

.btn-submit {
    background-color: #6F7D71;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    margin-top: 30px;
    transition: all 0.3s ease;
    width: 100%;
    border-radius: 4px;
}

.btn-submit:hover {
    background-color: #556257;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Newsletter Section Icons */
.newsletter-icon {
    font-size: 3rem;
    color: #6F7D71;
    margin-bottom: 20px;
    font-weight: 100;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.mailmunch-badge {
    margin-top: 20px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.mailmunch-badge:hover {
    filter: grayscale(0%);
}

/* Logo Styles */
.logo-container {
    text-align: center;
    padding: 20px 0;
    background-color: #f7f8f3
        /* User specified off-white */
}

.logo-img {
    max-width: 300px;
    height: auto;
    display: inline-block;
    transition: max-width 0.3s ease;
}

@media (max-width: 768px) {
    .logo-img {
        max-width: 200px;
        /* Smaller logo on mobile */
    }
}

/* Hide old text logo styles if present, or override */
.logo {
    display: none;
}

/* =========================================
   Redesigned About Page (Meet The Artist)
   ========================================= */

.meet-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
}

/* Transparent grey overlay if needed, or just text shadow */
.meet-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    color: #fff;
    /* White text as per screenshot usually, or dark if bg is light */
    letter-spacing: 5px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.meet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
    align-items: start;
}

.studio-portrait {
    width: 100%;
    border-radius: 8px;
    /* Slightly rounded corners */
    display: block;
}

.meet-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #444;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-weight: 400;
}

.meet-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
    font-weight: 300;
}

.meet-text-col {
    background-color: #ffffff;
    /* Matches header background */
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.meet-text-col p {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
    /* Clean blocks of text */
}

.meet-text-col .btn-text {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 30px;
    background-color: var(--color-secondary);
    /* Use the gold/secondary color */
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.meet-text-col .btn-text:hover {
    background-color: #333;
    /* Darken on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

    .meet-hero h1 {
        font-size: 2.5rem;
    }

    /* Commissions Responsiveness */
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .step-divider {
        width: 80%;
        height: 1px;
        margin: 10px 0;
    }

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

    .info-image-grid {
        order: -1;
        /* Move images above text on mobile */
    }

    .pricing-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 15px 10px;
        font-size: 0.9rem;
    }

    .step-title {
        font-size: 1.5rem;
    }

    .commission-hero h1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .policies-section {
        padding: 40px 20px;
    }

    .commission-cta {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .commission-hero h1 {
        font-size: 2rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 12px 8px;
        font-size: 0.85rem;
    }
}

.home-contact {
    padding: 80px 0;
    background-color: #fff;
}

/* WhatsApp Floating Button Styling */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background-color: #22c55e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    z-index: 50;
    animation: bounce-float 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #16a34a;
    color: #ffffff;
}

.whatsapp-float i {
    font-size: 1.875rem;
}

@keyframes bounce-float {

    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

@media (min-width: 768px) {
    .whatsapp-float {
        bottom: 32px;
        right: 32px;
    }
}

/* Instagram Floating Button Styling */
.instagram-float {
    position: fixed;
    bottom: 104px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 50;
    text-decoration: none;
}

.instagram-float:hover {
    transform: scale(1.15);
    color: #ffffff;
}

.instagram-float i {
    font-size: 2rem;
}

@media (min-width: 768px) {
    .instagram-float {
        bottom: 112px;
        right: 32px;
    }
}

/* Form Status Styles */
.form-status {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: 'Lato', sans-serif;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    transform: translateY(-10px);
    display: none;
}

.form-status.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.form-status.success {
    background-color: #f4f9f4;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.form-status.error {
    background-color: #fff8f8;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* Button Loading State */
button:disabled,
.btn-submit:disabled,
.newsletter-form button:disabled {
    background-color: #a8b2ac !important;
    color: rgba(255, 255, 255, 0.8) !important;
    cursor: not-allowed !important;
    opacity: 0.8;
    transform: none !important;
    box-shadow: none !important;
}