:root {
    /* Warm Bakery Color Palette */
    --bakery-brown: #8b4513;
    --bakery-light-brown: #d2691e;
    --bakery-cream: #f5f5dc;
    --bakery-warm-white: #fff8dc;
    --bakery-gold: #ffd700;
    --bakery-orange: #ffb347;
    --bakery-dark: #5d2f0a;
    --bakery-accent: #cd853f;
    
    /* Bootstrap overrides with warm colors */
    --bs-primary: #8b4513;
    --bs-primary-rgb: 139, 69, 19;
    --bs-secondary: #d2691e;
    --bs-success: #228b22;
    --bs-warning: #ffd700;
    --bs-info: #cd853f;
    --bs-light: #f5f5dc;
    --bs-dark: #5d2f0a;
    
    /* Theme System Variables */
    --theme-bg-primary: #ffffff;
    --theme-bg-secondary: #f8f9fa;
    --theme-text-primary: #2c1810;
    --theme-text-secondary: #6c757d;
    --theme-navbar-bg: #ffffff;
    --theme-card-bg: #ffffff;
    --theme-border: #dee2e6;
    --theme-shadow: rgba(0,0,0,0.1);
}

/* Dark Theme Variables */
[data-theme="dark"] {
    --theme-bg-primary: #2c1810;
    --theme-bg-secondary: #3d251a;
    --theme-text-primary: #f5f5dc;
    --theme-text-secondary: #d2b48c;
    --theme-navbar-bg: #3d251a;
    --theme-card-bg: #3d251a;
    --theme-border: #5d2f0a;
    --theme-shadow: rgba(139, 69, 19, 0.2);
}

/* Apply Theme Variables */
body {
    background-color: var(--theme-bg-primary);
    color: var(--theme-text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar {
    background-color: var(--theme-navbar-bg) !important;
    border-bottom: 1px solid var(--theme-border);
}

/* Navigation elements theme support */
.navbar-brand {
    color: var(--theme-text-primary) !important;
}

.nav-link {
    color: var(--theme-text-primary) !important;
}

.nav-link:hover {
    color: var(--bakery-light-brown) !important;
}

.navbar-toggler-icon {
    filter: var(--theme-text-primary) == '#f8f9fa' ? invert(1) : invert(0);
}

.card {
    background-color: var(--theme-card-bg);
    border-color: var(--theme-border);
}

.bg-light {
    background-color: var(--theme-bg-secondary) !important;
}

/* Ensure consistent text colors */
.text-muted {
    color: var(--theme-text-secondary) !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem var(--theme-shadow) !important;
}

/* Theme Toggle Button */
.theme-toggle {
    background: none;
    border: 2px solid var(--theme-text-primary);
    color: var(--theme-text-primary);
    border-radius: 50px;
    padding: 8px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.theme-toggle:hover {
    background-color: var(--theme-text-primary);
    color: var(--theme-bg-primary);
    transform: scale(1.05);
}

/* Force override all primary colors */
.btn-primary, .text-primary, .bg-primary, .border-primary, .alert-primary, .badge-primary {
    --bs-primary: var(--bakery-brown) !important;
    --bs-primary-rgb: 139, 69, 19 !important;
}

.btn-primary {
    background-color: var(--bakery-brown) !important;
    border-color: var(--bakery-brown) !important;
    color: var(--bakery-cream) !important;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: var(--bakery-dark) !important;
    border-color: var(--bakery-dark) !important;
    color: var(--bakery-cream) !important;
}

.btn-outline-primary {
    color: var(--bakery-brown) !important;
    border-color: var(--bakery-brown) !important;
}

.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
    background-color: var(--bakery-brown) !important;
    border-color: var(--bakery-brown) !important;
    color: var(--bakery-cream) !important;
}

.text-primary {
    color: var(--bakery-brown) !important;
}

.bg-primary {
    background-color: var(--bakery-brown) !important;
}

/* Custom button styles */
.btn-bakery-primary {
    background: var(--bakery-brown);
    border: none;
    color: var(--bakery-cream);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-bakery-primary:hover {
    background: var(--bakery-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    color: var(--bakery-cream);
}

.btn-bakery-gold {
    background: linear-gradient(45deg, var(--bakery-gold), var(--bakery-orange));
    border: none;
    color: var(--bakery-brown);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-bakery-gold:hover {
    background: linear-gradient(45deg, var(--bakery-orange), var(--bakery-gold));
    color: var(--bakery-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* Navbar specific styling */
.navbar .btn-bakery-gold {
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.navbar .btn-bakery-gold:hover {
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
    transform: translateY(-1px);
}

/* Card hover effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.15);
}

/* Warm gradient backgrounds */
.bg-warm-gradient {
    background: linear-gradient(135deg, var(--bakery-cream), var(--bakery-warm-white));
}

.bg-brown-gradient {
    background: linear-gradient(135deg, var(--bakery-brown), var(--bakery-light-brown));
}

/* Text colors */
.text-bakery-brown {
    color: var(--bakery-brown) !important;
}

.text-bakery-light-brown {
    color: var(--bakery-light-brown) !important;
}

.text-bakery-cream {
    color: var(--bakery-cream) !important;
}

/* Navigation styling */
.navbar-brand {
    color: var(--bakery-brown) !important;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-link {
    color: var(--bakery-brown) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--bakery-light-brown) !important;
}

/* Footer styling */
.footer-warm {
    background: linear-gradient(135deg, var(--bakery-dark), var(--bakery-brown));
    color: var(--bakery-cream);
}

/* Service icons */
.service-icon i {
    color: var(--bakery-light-brown);
    transition: all 0.3s ease;
}

.card:hover .service-icon i {
    color: var(--bakery-brown);
    transform: scale(1.1);
}

/* Custom animations */
@keyframes bakery-glow {
    0%, 100% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes iconSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.glow-gold {
    animation: bakery-glow 2s infinite;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

.bounce-hover:hover {
    animation: bounce 1s ease;
}

/* New animation classes */
.pulse {
    animation: pulse 2s ease-in-out infinite;
}

.float {
    animation: float 3s ease-in-out infinite;
}

.rotate {
    animation: rotate 2s linear infinite;
}

.scale-in {
    animation: scaleIn 0.6s ease-out;
}

.slide-in-up {
    animation: slideInUp 0.8s ease-out;
}

.zoom-in {
    animation: zoomIn 0.5s ease-out;
}

.shake {
    animation: shake 0.5s ease;
}

.icon-spin:hover {
    animation: iconSpin 1s linear;
}

/* Staggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Form field animations */
.form-control:focus,
.form-select:focus {
    transform: scale(1.02);
    transition: transform 0.3s ease;
    box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.25);
    border-color: var(--bakery-brown);
}

.form-control,
.form-select {
    transition: all 0.3s ease;
}

.form-control:hover,
.form-select:hover {
    border-color: var(--bakery-light-brown);
    transition: border-color 0.3s ease;
}

.form-label {
    transition: color 0.3s ease;
}

.form-control:focus + .form-label,
.form-select:focus + .form-label {
    color: var(--bakery-brown);
    font-weight: 600;
}

/* Button hover animations */
.btn-animated {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-animated::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-animated:hover::before {
    width: 300px;
    height: 300px;
}

.btn-animated:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Card entrance animations */
.card-entrance {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: cardEntrance 0.6s ease-out forwards;
}

@keyframes cardEntrance {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.card-entrance-delay-1 {
    animation-delay: 0.1s;
}

.card-entrance-delay-2 {
    animation-delay: 0.2s;
}

.card-entrance-delay-3 {
    animation-delay: 0.3s;
}

/* Icon circle animations */
.icon-circle-animated {
    transition: all 0.3s ease;
}

.icon-circle-animated:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.3);
}

/* Card animations */
.card-animate {
    opacity: 1 !important;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.card-animate:hover {
    transform: translateY(-2px);
}

.card-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.card-animate.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.card-animate.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations for multiple cards */
.card-animate:nth-child(1) { animation-delay: 0.1s; }
.card-animate:nth-child(2) { animation-delay: 0.2s; }
.card-animate:nth-child(3) { animation-delay: 0.3s; }
.card-animate:nth-child(4) { animation-delay: 0.4s; }

/* Badge overrides */
.badge-primary {
    background-color: var(--bakery-brown) !important;
    color: var(--bakery-cream) !important;
}

/* Alert overrides */
.alert-primary {
    background-color: var(--bakery-cream) !important;
    border-color: var(--bakery-brown) !important;
    color: var(--bakery-brown) !important;
}

.alert {
    animation: slideInUp 0.5s ease-out;
    transition: all 0.3s ease;
}

.alert:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Page layout styles */
.navbar {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

main {
    padding-top: 0 !important;
}

.hero-section {
    margin-top: 85px;
}

/* Enhanced card styles */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Product and service thumbnails */
.product-thumbnail,
.service-thumbnail {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.product-thumbnail-placeholder,
.service-thumbnail-placeholder {
    width: 50px;
    height: 50px;
    background-color: var(--bakery-cream);
    border: 2px solid var(--bakery-brown);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bakery-brown);
    font-size: 20px;
}

/* Status badges */
.status-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-active {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-inactive {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.status-pending {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.status-processing {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.status-completed {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-cancelled {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.status-paid {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-failed {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.status-refunded {
    background-color: #e2e3e5;
    color: #383d41;
    border: 1px solid #d6d8db;
}

/* Utility classes for inline style replacement */
.text-bakery-gold {
    color: var(--bakery-gold) !important;
}

.bg-bakery-primary {
    background-color: var(--bakery-brown) !important;
}

.border-bakery-primary {
    border-color: var(--bakery-brown) !important;
}

/* Navbar brand styling */
.navbar-brand-bakery {
    color: var(--bakery-brown) !important;
    font-family: 'Playfair Display', serif !important;
}

/* Navigation active link */
.nav-link-active {
    color: var(--bakery-light-brown) !important;
}

/* Hero section backgrounds */
.hero-about {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1509440159596-0249088772ff?w=1920&h=800&fit=crop&crop=center') center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
}

.hero-contact {
    background: linear-gradient(rgba(139, 69, 19, 0.7), rgba(205, 133, 63, 0.7)), url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1920&h=600&fit=crop&crop=center') center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
}

.hero-index {
    height: 100vh;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.85), rgba(205, 133, 63, 0.75));
}

/* Text color variations */
.text-hero-primary {
    color: #f5f5dc !important;
}

.text-hero-secondary {
    color: #f5f5dc !important;
    opacity: 0.9;
}

.text-hero-accent {
    color: #ffd700 !important;
}

.text-muted-light {
    opacity: 0.8;
}

.text-muted-lighter {
    opacity: 0.7;
}

/* Icon circles */
.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.icon-circle-primary {
    background-color: var(--bakery-brown);
    color: var(--bakery-cream);
}

.icon-circle-warning {
    background-color: var(--bakery-gold);
    color: var(--bakery-brown);
}

.icon-circle-60 {
    width: 60px;
    height: 60px;
}

.icon-circle-50 {
    width: 50px;
    height: 50px;
}

/* Button variations */
.btn-outline-bakery {
    border-color: var(--bakery-brown);
    color: var(--bakery-brown);
}

.btn-outline-bakery:hover {
    background-color: var(--bakery-brown);
    border-color: var(--bakery-brown);
    color: white;
}

/* Animation delays */
.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

/* Footer styling */
.footer-brand {
    font-family: 'Playfair Display', serif;
}

.footer-text {
    color: #f5f5dc;
    opacity: 0.9;
}

/* Gradient backgrounds */
.bg-hero-cta {
    background: linear-gradient(135deg, var(--bakery-brown), var(--bakery-light-brown));
    color: white;
}

.bg-shop-gold-gradient {
    background: linear-gradient(45deg, #ffd700, #ffb347);
    border: none;
    transition: all 0.3s ease;
}

.bg-shop-gold-gradient:hover {
    background: linear-gradient(45deg, #ffb347, #ffd700) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Display text sizes */
.display-hero {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Product card styles */
.product-card-height {
    height: 200px;
    object-fit: cover;
}

.product-card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Font sizes and weights */
.fs-hero {
    font-size: 1.5rem;
}

.lh-relaxed {
    line-height: 1.75;
}

/* Main content padding */
.main-content-shop {
    padding-top: 90px !important;
}

/* Hover effects for buttons */
.btn-gold-hover:hover {
    background: linear-gradient(45deg, #ffb347, #ffd700) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Theme variables for easy switching */
:root[data-theme="light"] {
    --text-primary: var(--bakery-brown);
    --text-secondary: var(--bakery-light-brown);
    --bg-primary: var(--bakery-cream);
    --bg-secondary: var(--bakery-warm-white);
}

:root[data-theme="dark"] {
    --text-primary: var(--bakery-cream);
    --text-secondary: var(--bakery-gold);
    --bg-primary: var(--bakery-dark);
    --bg-secondary: var(--bakery-brown);
}

/* Hero button border styles */
.border-hero-outline {
    border: 2px solid #f5f5dc !important;
}

/* Additional missing classes */
.text-muted-95 {
    opacity: 0.95;
}

/* Icon backgrounds */
.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.icon-circle-primary {
    background-color: var(--bakery-brown);
    color: var(--bakery-cream);
}

.icon-circle-warning {
    background-color: var(--bakery-gold);
    color: var(--bakery-brown);
}

/* Animation delays */
.animation-delay-01 {
    animation-delay: 0.1s;
}

.animation-delay-02 {
    animation-delay: 0.2s;
}

/* Size classes for icons and elements */
.icon-circle-60 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.icon-circle-50 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icon-circle {
    width: 50px;
    height: 50px;
}

/* Typography styles */
.font-playfair {
    font-family: 'Playfair Display', serif;
}

.font-size-13 {
    font-size: 1.3rem;
    font-weight: 600;
}

.font-weight-600 {
    font-weight: 600;
}

.max-width-700 {
    max-width: 700px;
}

.text-hero-accent {
    color: var(--bakery-gold);
    font-weight: 600;
}

.fs-hero {
    font-size: 1.25rem;
}

/* Opacity classes */
.opacity-05 {
    opacity: 0.5;
}

.opacity-06 {
    opacity: 0.6;
}

.opacity-07 {
    opacity: 0.7;
}

.opacity-08 {
    opacity: 0.8;
}

.opacity-09 {
    opacity: 0.9;
}

.opacity-095 {
    opacity: 0.95;
}

/* Card image heights */
.product-card-height {
    height: 200px;
    object-fit: cover;
}

.card-img-250 {
    height: 250px;
    object-fit: cover;
}

/* Footer styles */
.footer-text {
    color: #f5f5dc;
    opacity: 0.9;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    color: var(--bakery-gold);
}

/* Button variants */
.btn-directions {
    border: 1px solid var(--bakery-brown);
    color: var(--bakery-brown);
    --bs-btn-border-color: var(--bakery-brown);
    --bs-btn-color: var(--bakery-brown);
    --bs-btn-hover-bg: var(--bakery-brown);
    --bs-btn-hover-color: white;
}

.btn-contact-submit {
    background: var(--bakery-brown);
    border: none;
    color: var(--bakery-cream);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-contact-submit:hover,
.btn-contact-submit:focus {
    background: var(--bakery-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
    color: var(--bakery-cream) !important;
}

.btn-shop-outline {
    border: 1px solid var(--bakery-brown);
    color: var(--bakery-brown);
}

.btn-shop-outline:hover {
    background: var(--bakery-brown);
    color: white;
}

.btn-cta-special {
    background: var(--bakery-cream);
    color: var(--bakery-brown);
    border: 2px solid var(--bakery-cream);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-special:hover,
.btn-cta-special:focus {
    background: var(--bakery-gold) !important;
    color: var(--bakery-brown) !important;
    border-color: var(--bakery-gold) !important;
}

/* Height utilities */
.height-400 {
    height: 400px;
}

.height-100vh {
    height: 100vh;
}

/* Map styles */
.map-container {
    height: 400px;
    background: var(--bakery-warm-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-iframe {
    border: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
}

/* Hero section background */
.hero-index-bg {
    height: 100vh;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.85), rgba(205, 133, 63, 0.75));
}

/* Special text color combinations */
.text-admin-small {
    opacity: 0.6;
    font-size: 0.875rem;
}

/* Responsive font sizing */
@media (max-width: 768px) {
    .display-1 { font-size: 2.5rem; }
    .display-2 { font-size: 2rem; }
    .display-3 { font-size: 1.8rem; }
    
    .hero-section {
        margin-top: 70px;
        height: 50vh !important;
    }
    
    .navbar {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
}