/* Colors */
:root {
    --cocoa: #1F1712;
    --espresso: #2B211B;
    --linen: #F3E9DF;
    --sand: #E6D6C6;
    --oat: #D9C8B7;
    --mocha: #6B4E3D;
    --caramel: #A47255;
    --terracotta: #C86E4A;
    --text-light: #F7F3EE;
    --text-secondary: #CDB9A8;
    --success: #7BB07E;
    --info: #8BA7C9;
    --warning: #D9A441;
    --shadow: rgba(17, 12, 9, 0.35);
}

/* Typography */
body {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--cocoa);
    background: var(--linen);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant', serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

h1 { font-size: 44px; line-height: 1.1; }
h2 { font-size: 32px; line-height: 1.2; }
h3 { font-size: 24px; line-height: 1.3; }

/* Background Colors */
.bg-cocoa { background-color: var(--cocoa); }
.bg-linen { background-color: var(--linen); }
.bg-sand { background-color: var(--sand); }

/* Text Colors */
.text-sand { color: var(--sand) !important; }

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px var(--shadow);
}

.navbar-brand {
    font-family: 'Cormorant', serif;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.02em;
}

/* Fixed header */
.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

/* Add padding to body to account for fixed header */
body {
    padding-top: 80px;
}

/* Menu items alignment */
.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 600px;
}

.nav-menu .nav-item {
    flex: 1;
    text-align: center;
}

.nav-menu .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 40px;
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
}

.search-form {
    position: relative;
}

.search-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--sand);
    padding-right: 2.5rem;
    width: 200px;
    font-size: 14px;
}

.search-input::placeholder {
    color: rgba(230, 214, 198, 0.7);
}

.search-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 0.25rem rgba(230, 214, 198, 0.15);
    color: var(--sand);
}

.search-form .btn {
    position: absolute;
    right: 0;
    top: 0;
    padding: 0.375rem 0.75rem;
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--terracotta);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

/* Buttons */
.btn {
    border-radius: 14px;
    padding: 0.75rem 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px var(--shadow);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: linear-gradient(135deg, var(--mocha) 0%, var(--caramel) 100%);
    border: none;
}

/* Breadcrumbs */
.breadcrumb {
    padding: 0.75rem 0;
    margin-bottom: 2rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-secondary);
}

.breadcrumb-item a {
    color: var(--mocha);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Cart and User Icons */
.btn-link {
    padding: 0.5rem;
    font-size: 1.25rem;
    text-decoration: none;
}

.badge {
    font-family: 'Titillium Web', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hide cart total price */
.snipcart-total-price {
    display: none !important;
}

/* Banner height reduction */
.hero-section .carousel-item img {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

/* Currency override for cart - simplified approach */
.snipcart-modal__container .snipcart-summary-fees__amount,
.snipcart-modal__container .snipcart-item__price,
.snipcart-checkout .snipcart-total-price {
    /* Ensure proper spacing */
    white-space: nowrap;
}

/* Hide any duplicate currency symbols that might appear */
.snipcart-modal__container .snipcart-summary-fees__amount-currency,
.snipcart-modal__container .snipcart-item__price-currency {
    display: none !important;
}
/* Footer */
.footer-shadow {
    box-shadow: 0 -2px 4px var(--shadow);
}

footer h4 {
    font-size: 22px;
    margin-bottom: 1.5rem;
    position: relative;
}

footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 40px;
    height: 2px;
    background: var(--terracotta);
}

footer a.text-sand {
    position: relative;
    display: inline-block;
}

footer a.text-sand::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: var(--sand);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

footer a.text-sand:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
/* Contact Page Styles */
.contact-info a {
    color: var(--mocha);
    transition: color 0.2s ease;
}

.contact-info a:hover {
    color: var(--caramel);
    text-decoration: none;
}

.accordion-button {
    background: linear-gradient(180deg, var(--linen) 0%, var(--sand) 100%);
    border: none;
    color: var(--cocoa);
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(180deg, var(--sand) 0%, var(--oat) 100%);
    color: var(--mocha);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(164, 114, 85, 0.25);
}

.business-hours .card {
    transition: transform 0.3s ease;
}

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