@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');

/* Modern Navigation Styling */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 115, 85, 0.1);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 0.6rem 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #4A3C31 !important;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #8B7355, #6B5744);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.navbar-brand:hover::after {
    width: 100%;
}

.navbar-brand:hover {
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(74, 60, 49, 0.2);
}

.navbar-nav {
    margin-left: 1rem;
    align-items: center;
}

.nav-item {
    position: relative;
    margin: 0 0.3rem;
}

.nav-link {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: #6B5744 !important;
    padding: 0.5rem 0.8rem !important;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.1), rgba(107, 87, 68, 0.05));
    border-radius: 25px;
    opacity: 0;
    transition: all 0.3s ease;
    transform: scale(0.8);
}

.nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-link:hover {
    color: #4A3C31 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.15);
}

.nav-link i {
    transition: all 0.3s ease;
    opacity: 0.8;
    font-size: 0.8rem;
    margin-right: 0.4rem;
}

.nav-link:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.nav-link.active i {
    opacity: 1;
}

.nav-link.active {
    background: linear-gradient(135deg, #8B7355, #6B5744);
    color: white !important;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(139, 115, 85, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(74, 60, 49, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}



/* Cart Button Styling */
.cart-buttons {
    display: flex;
    align-items: center;
    margin-left: 0.8rem;
}

.snipcart-checkout {
    background: linear-gradient(135deg, #8B7355, #6B5744);
    border: none;
    padding: 0.6rem;
    border-radius: 50%;
    color: white;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.snipcart-checkout:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.4);
    background: linear-gradient(135deg, #6B5744, #4A3C31);
    color: white;
}

.snipcart-checkout i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.snipcart-checkout:hover i {
    transform: scale(1.1);
}

.snipcart-items-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
    border: 2px solid white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
    }
    50% {
        box-shadow: 0 2px 15px rgba(220, 53, 69, 0.6);
    }
    100% {
        box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
    }
}

/* Mobile Navigation */
@media (max-width: 991.98px) {
    .navbar-nav {
        margin-left: 0;
        margin-top: 1rem;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 15px;
        padding: 1rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(139, 115, 85, 0.1);
    }
    
    .nav-item {
        margin: 0.3rem 0;
    }
    
    .nav-link {
        border-radius: 10px;
        margin: 0.2rem 0;
        padding: 0.8rem 1.2rem !important;
        font-size: 1rem;
    }
    
    .nav-link i {
        width: 20px;
        text-align: center;
    }
    

    
    .cart-buttons {
        margin: 1rem 0 0 0;
        justify-content: center;
    }
    
    .snipcart-checkout {
        width: 42px;
        height: 42px;
    }
    
    .snipcart-checkout i {
        font-size: 1.1rem;
    }
}

/* Tablet Navigation */
@media (min-width: 768px) and (max-width: 991.98px) {
    .navbar-nav {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .nav-item {
        margin: 0 0.2rem;
    }
    
    .nav-link {
        padding: 0.6rem 1rem !important;
        font-size: 0.9rem;
    }
}

body {
    padding-top: 70px;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #4A3C31;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Section styling improvements */
.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #4A3C31;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8B7355, #6B5744);
    border-radius: 2px;
}

/* Background patterns */
.bg-pattern {
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(139, 115, 85, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(107, 87, 68, 0.05) 0%, transparent 50%);
    background-size: 100px 100px;
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card,
.category-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading animation */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #4A3C31 !important;
}

.nav-link {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #6B5744 !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8B7355 !important;
}

.search-form {
    position: relative;
    max-width: 300px;
}

.search-form input {
    font-family: 'Source Sans Pro', sans-serif;
    border-radius: 20px;
    border: 1px solid #DED5C6;
    padding-left: 2.5rem;
    background-color: #FAF7F2;
}

.search-form .search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #8B7355;
}

.breadcrumb {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    margin: 1rem 0;
}

.cart-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.snipcart-checkout {
    background: none;
    border: none;
    padding: 0.5rem;
    color: #6c757d;
    position: relative;
}

.snipcart-checkout:hover {
    color: #495057;
}

.snipcart-items-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Hero Carousel Styling */
.hero-section {
    margin-top: -80px;
    position: relative;
}

.carousel {
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.carousel-item {
    height: 600px;
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 60, 49, 0.3), rgba(139, 115, 85, 0.2));
    z-index: 1;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    max-width: 600px;
    width: 90%;
}

.carousel-caption h1,
.carousel-caption h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #4A3C31 !important;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.carousel-caption p {
    color: #6B5744 !important;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.carousel-caption .btn {
    background: linear-gradient(135deg, #8B7355, #6B5744);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(139, 115, 85, 0.3);
}

.carousel-caption .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.4);
    background: linear-gradient(135deg, #6B5744, #4A3C31);
}



.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
    width: 30px;
    height: 30px;
}

/* Modern Product Cards Styling */
.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B7355, #6B5744, #4A3C31);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card .card-img-top {
    height: 280px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.4s ease;
}

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

.product-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: linear-gradient(145deg, #ffffff, #fafbfc);
}

.product-card .card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #4A3C31;
    font-size: 1.3rem;
    line-height: 1.3;
}

.product-card .card-title a {
    transition: color 0.3s ease;
}

.product-card .card-title a:hover {
    color: #8B7355 !important;
}

.product-card .card-text {
    flex: 1;
    color: #6B5744;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.product-card .price {
    font-weight: 700;
    color: #8B7355;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.product-card .btn {
    background: linear-gradient(135deg, #8B7355, #6B5744);
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(139, 115, 85, 0.2);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.3);
    background: linear-gradient(135deg, #6B5744, #4A3C31);
}

/* Product card badge for special items */
.product-card .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(220, 53, 69, 0.3);
}

/* Modern Category Cards Styling */
.category-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B7355, #6B5744, #4A3C31);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.category-card:hover::before {
    transform: scaleX(1);
}

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

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

.category-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: linear-gradient(145deg, #ffffff, #fafbfc);
}

.category-card .card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #4A3C31;
    font-size: 1.5rem;
    line-height: 1.3;
}

.category-card .card-text {
    flex: 1;
    color: #6B5744;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.category-card .btn {
    background: linear-gradient(135deg, #8B7355, #6B5744);
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(139, 115, 85, 0.2);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    color: white;
    text-decoration: none;
}

.category-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.3);
    background: linear-gradient(135deg, #6B5744, #4A3C31);
    color: white;
    text-decoration: none;
}

.contact-info {
    background: linear-gradient(135deg, #FAF7F2, #F5EDE3);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-map {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-form {
    background: linear-gradient(135deg, #FFFFFF, #FAF7F2);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #8B7355, #6B5744);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 1rem;
}

/* Modern Footer Styling */
.footer {
    background: linear-gradient(135deg, #4A3C31, #6B5744);
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Source Sans Pro', sans-serif;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(139, 115, 85, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(107, 87, 68, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #8B7355, #DED5C6);
    border-radius: 2px;
}

.footer p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 0;
    transition: all 0.3s ease;
}

.footer ul li::before {
    content: '→';
    position: absolute;
    left: -15px;
    color: #8B7355;
    opacity: 0;
    transition: all 0.3s ease;
    font-weight: bold;
}

.footer ul li:hover::before {
    opacity: 1;
    left: -10px;
}

.footer ul li:hover {
    padding-left: 10px;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 400;
}

.footer a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.footer address {
    font-style: normal;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.footer address strong {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: block;
}

.footer address a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer address a:hover {
    color: #8B7355;
    text-decoration: none;
}

.footer hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 2rem 0;
}

.footer .copyright {
    text-align: center;
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 -15px;
    border-radius: 10px;
    margin-top: 2rem;
}

.footer .copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}



/* Footer contact info with icons */
.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.footer-contact-item i {
    width: 20px;
    margin-right: 1rem;
    color: #8B7355;
    font-size: 1.1rem;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-item:hover a {
    color: #ffffff;
}

/* Mobile Footer Styling */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }
    
    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    

    
    .footer-contact-item {
        text-align: left;
        justify-content: center;
    }
    
    .footer-contact-item i {
        margin-right: 0.8rem;
    }
    
    .copyright {
        margin: 0 -10px;
        border-radius: 0;
    }
}

/* Footer animation on scroll */
.footer {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(33, 37, 41, 0.95);
    color: white;
    padding: 1rem 0;
    z-index: 1000;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

/* About Cafe Section Styling */
.about-cafe-section {
    background: linear-gradient(135deg, #FAF7F2 0%, #F5EDE3 100%);
    position: relative;
    overflow: hidden;
}

.about-cafe-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(139, 115, 85, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(107, 87, 68, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-cafe-section .container {
    position: relative;
    z-index: 2;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #4A3C31;
    margin-bottom: 1.5rem;
    position: relative;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8B7355, #6B5744);
    border-radius: 2px;
}

.about-content .lead {
    font-size: 1.2rem;
    color: #6B5744;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 115, 85, 0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B7355, #6B5744);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
}

.feature-icon i {
    color: white;
    font-size: 1.2rem;
}

.feature-content h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #4A3C31;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-content p {
    color: #6B5744;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* About Actions */
.about-actions .btn {
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.about-actions .btn-outline-primary {
    border: 2px solid #8B7355;
    color: #8B7355;
    background: transparent;
}

.about-actions .btn-outline-primary:hover {
    background: #8B7355;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 115, 85, 0.3);
}

.about-actions .btn-primary {
    background: linear-gradient(135deg, #8B7355, #6B5744);
    border: none;
    color: white;
}

.about-actions .btn-primary:hover {
    background: linear-gradient(135deg, #6B5744, #4A3C31);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 115, 85, 0.3);
}

/* About Image Container */
.about-image-container {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* About Stats */
.about-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #8B7355;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6B5744;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-image img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .about-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-actions {
        text-align: center;
    }
    
    .about-actions .btn {
        display: block;
        margin: 0.5rem 0;
        width: 100%;
    }
}
