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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #F2F0EB;
    color: #2D2D2D;
    line-height: 1.6;
}

/* Loading State */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    font-size: 1.1rem;
    color: #6B6B6B;
}

.loading::after {
    content: '...';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {

    0%,
    20% {
        content: '.';
    }

    40% {
        content: '..';
    }

    60%,
    100% {
        content: '...';
    }
}

/* Header */
header {
    background-color: #F2F0EB;
    padding: 1.5rem 0;
    border-bottom: 1px solid #E8E6E1;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-family: 'Uncial Antiqua', cursive;
    font-size: 2.5rem;
    color: #554319;
}

nav {
    margin-left: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #554319;
    transition: all 0.3s;
}

nav a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #554319;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #6E5A2E;
}

/* Cart Icon */
.cart-icon {
    position: relative;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #554319;
    transition: color 0.3s;
}

.cart-icon:hover {
    color: #6E5A2E;
}

.cart-icon svg {
    width: 28px;
    height: 28px;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #7A6039;
    color: #FAF9F7;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.cart-count.hidden {
    display: none;
}

/* Hero/Intro */
.hero {
    text-align: center;
    padding: 4rem 2rem 3rem;
    background-color: #FAF9F7;
}

.hero h1 {
    font-family: 'Alice', serif;
    font-size: 2.5rem;
    color: #554319;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    color: #6B6B6B;
    max-width: 600px;
    margin: 0 auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Section Titles */
.section-title {
    font-family: 'Alice', serif;
    font-size: 2rem;
    color: #554319;
    margin-bottom: 2rem;
    text-align: center;
}

/* Order Info Box */
.order-info-box {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background-color: #FAF9F7;
    border: 1px solid #E8E6E1;
    border-left: 4px solid #C4A05A;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
}

.order-info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    color: #7A6039;
}

.order-info-icon svg {
    width: 100%;
    height: 100%;
}

.order-info-content h3 {
    font-family: 'Alice', serif;
    font-size: 1.2rem;
    color: #554319;
    margin-bottom: 0.5rem;
}

.order-info-content p {
    font-size: 0.95rem;
    color: #6B6B6B;
    line-height: 1.6;
}

.order-info-content strong {
    color: #554319;
}

/* Help Icon Tooltip */
.help-icon-wrapper {
    position: relative;
    display: inline-block;
}

.help-icon {
    width: 20px;
    height: 20px;
    color: #7A6039;
    cursor: pointer;
    transition: color 0.3s;
    vertical-align: middle;
    margin-left: 0.5rem;
}

.help-icon:hover {
    color: #554319;
}

.help-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background-color: #554319;
    color: #FAF9F7;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.5;
    width: 280px;
    box-shadow: 0 4px 12px rgba(85, 67, 25, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 100;
}

.help-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: #554319;
}

.help-tooltip.visible {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .order-info-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .order-info-icon {
        width: 36px;
        height: 36px;
    }

    .help-tooltip {
        left: auto;
        right: -20px;
        transform: none;
        width: 250px;
    }

    .help-tooltip::after {
        left: auto;
        right: 30px;
        transform: none;
    }
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-card {
    background-color: #FAF9F7;
    border: 1px solid #E8E6E1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(85, 67, 25, 0.15);
}

.product-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    background-color: #E8E6E1;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-name-band {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(85, 67, 25, 0.9);
    padding: 1rem;
    text-align: center;
}

.product-name {
    font-family: 'Alice', serif;
    font-size: 1.3rem;
    color: #FAF9F7;
    margin: 0;
}

.product-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #C4A05A;
    margin-top: 0.3rem;
}

/* About Section */
.about-section {
    background-color: #FAF9F7;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    border-radius: 8px;
}

.about-section .section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.about-section p {
    max-width: 700px;
    margin: 0 auto 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: center;
}

/* Baker Bio */
.baker-bio {
    display: flex;
    gap: 3rem;
    align-items: center;
    background-color: #FAF9F7;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.baker-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #C4A05A;
}

.baker-text h3 {
    font-family: 'Alice', serif;
    font-size: 1.8rem;
    color: #554319;
    margin-bottom: 1rem;
}

.baker-text p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Social Section */
.social-section {
    text-align: center;
    padding: 2rem;
    background-color: #FAF9F7;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background-color: #554319;
    color: #FAF9F7;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: #6E5A2E;
}

.social-icon {
    width: 24px;
    height: 24px;
    fill: #FAF9F7;
}

/* Footer */
footer {
    background-color: #FAF9F7;
    border-top: 1px solid #E8E6E1;
    padding: 2rem;
    text-align: center;
    color: #6B6B6B;
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
}

@media (min-width: 769px) {
    .modal.active {
        align-items: center;
    }
}

.modal-content {
    background-color: #FAF9F7;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    padding: 2rem;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: #554319;
    cursor: pointer;
    border: none;
    background: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
    z-index: 10;
}

.modal-close:hover {
    color: #6E5A2E;
}

@media (max-width: 768px) {
    .modal-close {
        background-color: #FAF9F7;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.modal-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.modal-thumbnails {
    display: flex;
    gap: 0.5rem;
}

.modal-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.modal-thumbnail:hover,
.modal-thumbnail.selected {
    border-color: #C4A05A;
}

.video-thumbnail {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    background-clip: padding-box;
    /* Prevents black bg from showing through transparent border */
    overflow: hidden;
    border-radius: 4px;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    color: #FAF9F7;
    font-size: 1.5rem;
    background-color: rgba(85, 67, 25, 0.8);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.modal-main-content {
    width: 100%;
    height: 400px;
}

.modal-main-content iframe {
    width: 100%;
    height: 100%;
}

.modal-details h2 {
    font-family: 'Alice', serif;
    font-size: 2rem;
    color: #554319;
    margin-bottom: 0.5rem;
}

.modal-details .price {
    font-size: 1.3rem;
    color: #7A6039;
    font-weight: 600;
    margin-bottom: 1rem;
}

.modal-details p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #E8E6E1;
    background-color: #FAF9F7;
    color: #554319;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.quantity-btn:hover {
    background-color: #F2F0EB;
}

.quantity-value {
    font-size: 1.2rem;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.add-to-cart-btn {
    padding: 1rem 2rem;
    background-color: #7A6039;
    color: #FAF9F7;
    border: none;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-container {
        gap: 0rem;
    }

    .logo {
        font-size: 1.8rem;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
    }



    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 0;
        height: 0;
        margin: 0;
        padding: 0;
    }

    nav ul {
        display: none;
        flex-direction: column;
        background-color: #F2F0EB;
        padding: 1rem 2rem;
        border-bottom: 1px solid #E8E6E1;
        gap: 0.5rem;
        text-align: center;
        width: 100vw;
    }

    nav ul.active {
        display: flex;
    }

    header {
        position: relative;
    }

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

    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 0;
        padding: 1.5rem;
        max-height: 95vh;
        overflow-y: auto;
    }

    .modal.active {
        padding: 1rem;
    }

    .modal-main-image {
        height: 250px;
    }

    .modal-main-content {
        height: 250px;
    }

    /* dynamic sizing: 4 items fill width minus 3 gaps of 0.5rem */
    .modal-thumbnail {
        width: calc((100% - 1.5rem) / 4);
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .baker-bio {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }
}

/* New badge using accent color */
.new-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #8B9B87;
    color: #FAF9F7;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.error-message {
    text-align: center;
    padding: 2rem;
    color: #6B6B6B;
    font-size: 1.1rem;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    max-width: 90vw;
    height: 100vh;
    background-color: #FAF9F7;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #E8E6E1;
}

.cart-header h2 {
    font-family: 'Alice', serif;
    font-size: 1.5rem;
    color: #554319;
    margin: 0;
}

.cart-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #554319;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.cart-close:hover {
    color: #6E5A2E;
}

.cart-content {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #6B6B6B;
    text-align: center;
}

.cart-empty svg {
    width: 80px;
    height: 80px;
    color: #E8E6E1;
    margin-bottom: 1rem;
}

.cart-items {
    flex: 1;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background-color: #F2F0EB;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cart-item-name {
    font-family: 'Alice', serif;
    font-size: 1.1rem;
    color: #554319;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: #7A6039;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-quantity-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #E8E6E1;
    background-color: #FAF9F7;
    color: #554319;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.cart-quantity-btn:hover {
    background-color: #F2F0EB;
}

.cart-quantity {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.cart-item-remove {
    margin-left: auto;
    background: none;
    border: none;
    color: #6B6B6B;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.25rem;
    transition: color 0.3s;
}

.cart-item-remove:hover {
    color: #554319;
}

.cart-footer {
    border-top: 1px solid #E8E6E1;
    padding: 1.5rem;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #554319;
}

.cart-total-label {
    font-family: 'Alice', serif;
}

.cart-total-amount {
    color: #7A6039;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cart-checkout-btn {
    padding: 1rem;
    background-color: #7A6039;
    color: #FAF9F7;
    border: none;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cart-checkout-btn:hover {
    background-color: #96774A;
}

.cart-clear-btn {
    padding: 0.75rem;
    background-color: transparent;
    color: #6B6B6B;
    border: 1px solid #E8E6E1;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.cart-clear-btn:hover {
    background-color: #F2F0EB;
    color: #554319;
}

/* Checkout Form */
/* #pickup-time {
    width: 200px;
} */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #554319;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #E8E6E1;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    background-color: #FAF9F7;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C4A05A;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Read-only date field styling */
.readonly-date {
    background-color: #F2F0EB !important;
    cursor: default;
    color: #554319;
    font-weight: 500;
}

/* .form-row {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 1rem;
} */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 100%;
    overflow: hidden;
}

.form-row .form-group {
    min-width: 0;
}

.checkout-success {
    text-align: center;
    padding: 2rem;
}

.checkout-success svg {
    width: 64px;
    height: 64px;
    color: #8B9B87;
    margin-bottom: 1rem;
}

.checkout-success h3 {
    font-family: 'Alice', serif;
    font-size: 1.5rem;
    color: #554319;
    margin-bottom: 0.5rem;
}

.checkout-success p {
    color: #6B6B6B;
}

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

/* Contact Modal - ADD THIS TO THE END OF YOUR styles.css */

/* Contact Modal Trigger */
.contact-trigger {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #7A6039;
    color: #FAF9F7;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(85, 67, 25, 0.3);
    transition: all 0.3s;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
}

.contact-trigger.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-trigger:hover {
    background-color: #96774A;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(85, 67, 25, 0.4);
}

.contact-trigger svg {
    width: 28px;
    height: 28px;
    fill: #FAF9F7;
}

/* Contact Modal Styles */
.contact-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
}

.contact-modal-overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.contact-modal-content {
    background-color: #FAF9F7;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    padding: 2rem;
    position: relative;
}

.contact-modal-header {
    margin-bottom: 1.5rem;
}

.contact-modal-header h2 {
    font-family: 'Alice', serif;
    font-size: 1.8rem;
    color: #554319;
    margin-bottom: 0.5rem;
}

.contact-modal-header p {
    color: #6B6B6B;
    font-size: 0.95rem;
}

.contact-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: #554319;
    cursor: pointer;
    border: none;
    background: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.contact-modal-close:hover {
    color: #6E5A2E;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form label {
    font-weight: 500;
    color: #554319;
}

.required-label::after {
    content: " *";
    color: #554319;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem;
    border: 1px solid #E8E6E1;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    background-color: #FAF9F7;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #C4A05A;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    padding: 1rem 2rem;
    background-color: #7A6039;
    color: #FAF9F7;
    border: none;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 0.5rem;
}

.contact-submit-btn:hover {
    background-color: #96774A;
}

.contact-success {
    text-align: center;
    padding: 2rem;
}

.contact-success svg {
    width: 64px;
    height: 64px;
    color: #8B9B87;
    margin-bottom: 1rem;
}

.contact-success h3 {
    font-family: 'Alice', serif;
    font-size: 1.5rem;
    color: #554319;
    margin-bottom: 0.5rem;
}

.contact-success p {
    color: #6B6B6B;
}

@media (max-width: 768px) {
    .contact-trigger {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
    }

    .contact-trigger svg {
        width: 24px;
        height: 24px;
    }

    .contact-modal-overlay.active {
        padding: 1rem;
        align-items: flex-start;
    }

    .contact-modal-content {
        margin-top: 2rem;
        padding: 1.5rem;
    }
}