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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #1abc9c 0%, #8e44ad 50%, #16a085 100%);
    z-index: -10;
}

.background-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, #1abc9c 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, #8e44ad 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, #7fb3d3 0%, transparent 50%);
    opacity: 0.4;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(26, 188, 156, 0.3), rgba(142, 68, 173, 0.3));
    backdrop-filter: blur(10px);
    animation: float 20s infinite ease-in-out;
    z-index: -5;
}

.element-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: -7s;
}

.element-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0.25rem 0;
    background: 
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.015) 0%,
            rgba(255, 255, 255, 0.008) 40%,
            rgba(255, 255, 255, 0.015) 100%
        ),
        radial-gradient(
            ellipse at top center,
            rgba(255, 255, 255, 0.02) 0%,
            transparent 80%
        );
    backdrop-filter: blur(80px) saturate(140%) brightness(1.1) contrast(90%);
    -webkit-backdrop-filter: blur(80px) saturate(140%) brightness(1.1) contrast(90%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 1px 0 0 rgba(255, 255, 255, 0.1) inset,
        0 -1px 0 0 rgba(0, 0, 0, 0.05) inset,
        0 0 40px rgba(0, 0, 0, 0.01),
        0 20px 40px -20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translate3d(0, 0, 0);
    will-change: transform, backdrop-filter, background;
    isolation: isolate;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.03) 45%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.03) 55%,
        transparent 100%
    );
    transform: translateX(-100%);
    animation: prismShimmer 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes prismShimmer {
    0% {
        transform: translateX(-100%);
    }
    50%, 100% {
        transform: translateX(200%);
    }
}


.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.logo-img {
    height: 48px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
    border-radius: 12px;
}

.logo:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.2));
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    position: relative;
    width: 25px;
    height: 21px;
    z-index: 1002;
    padding: 10px;
    margin: -10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    backdrop-filter: none;
    background: transparent;
    border: none;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    z-index: -1;
}

.nav-menu a:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.nav-menu a:hover::before {
    opacity: 1;
    transform: scale(1);
    box-shadow: 
        0 8px 25px rgba(255, 255, 255, 0.1),
        0 3px 10px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-menu a:active {
    transform: translateY(0) scale(0.98);
}

.nav-menu a:active::before {
    transform: scale(0.95);
}

.hero {
    min-height: calc(100vh - 80px);
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    margin-top: 80px;
}

.hero-content {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-card {
    width: 100%;
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    text-align: left;
    padding: 2.5rem;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-logo {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    border-radius: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #1abc9c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.location-tag {
    font-size: 1.1rem !important;
    color: rgba(255, 255, 255, 0.9);
    margin-top: -1.5rem;
    margin-bottom: 2rem !important;
    font-weight: 400 !important;
    opacity: 0.95;
}

.parking-info {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 1rem;
    font-style: italic;
}

.cta-button {
    background: linear-gradient(45deg, #1abc9c, #16a085);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 188, 156, 0.4);
}

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

section {
    padding: 5rem 0;
}

.about {
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.quote-section {
    text-align: center;
    padding: 4rem 0;
}

.quote-card {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.featured-quote {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    color: #ffffff;
    margin: 0;
    padding: 2rem;
    position: relative;
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.1), rgba(142, 68, 173, 0.1));
    border-left: 4px solid #1abc9c;
}

.featured-quote::before {
    content: '"';
    font-size: 4rem;
    color: #1abc9c;
    position: absolute;
    top: -1rem;
    left: 1rem;
    font-family: serif;
    opacity: 0.5;
}

.featured-quote::after {
    content: '"';
    font-size: 4rem;
    color: #1abc9c;
    position: absolute;
    bottom: -2rem;
    right: 1rem;
    font-family: serif;
    opacity: 0.5;
}

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

.coffee-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.coffee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.coffee-card {
    text-align: center;
    transition: all 0.3s ease;
    padding: 1.5rem;
}

.coffee-image {
    width: 100%;
    max-width: 160px;
    height: auto;
    margin-bottom: 0.8rem;
    border-radius: 8px;
}

.coffee-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1abc9c;
}

.coffee-card p {
    margin-bottom: 1rem;
    opacity: 0.9;
    font-size: 0.9rem;
    line-height: 1.4;
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1abc9c;
    margin-bottom: 0.8rem;
}

.add-to-cart-btn {
    background: linear-gradient(45deg, #1abc9c, #16a085);
    color: white;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.3);
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 188, 156, 0.4);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 2000;
    transition: right 0.3s ease;
}

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

.cart-content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    border-radius: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.5rem;
}

#close-cart {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

#close-cart:hover {
    color: #D2691E;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 2rem;
    min-height: 0;
}

.empty-cart {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-top: 2rem;
}

.cart-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-info h4 {
    margin: 0 0 0.5rem 0;
    color: #1abc9c;
    font-size: 1rem;
}

.cart-item-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

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

.qty-btn, .remove-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: rgba(26, 188, 156, 0.3);
}

.remove-btn:hover {
    background: rgba(220, 20, 60, 0.3);
}

.quantity {
    color: #ffffff;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.cart-footer {
    padding: 1.5rem 2rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    max-height: 50vh;
    overflow-y: auto;
}

.cart-total {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

#paypal-checkout-container {
    margin-top: 1rem;
    border-radius: 10px;
}

#paypal-checkout-container:not(:empty) {
    min-height: 200px;
    background: #ffffff;
    padding: 1rem;
}

/* PayPal form styling fixes */
#paypal-checkout-container * {
    color: #000000 !important;
    background-color: transparent !important;
}

#paypal-checkout-container input,
#paypal-checkout-container select,
#paypal-checkout-container textarea {
    background-color: #ffffff !important;
    color: #000000 !important;
    border: 1px solid #cccccc !important;
}

#paypal-checkout-container label,
#paypal-checkout-container span,
#paypal-checkout-container div {
    color: #000000 !important;
}

#paypal-checkout-container button {
    background-color: #0070ba !important;
    color: #ffffff !important;
}

.cart-footer h3,
.cart-footer .cart-total {
    color: #ffffff !important;
}

#cart-toggle {
    position: relative;
}

#cart-count {
    background: #1abc9c;
    color: white;
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Customer Form Styles */
.customer-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.customer-form h4 {
    color: #1abc9c;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.9rem;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1abc9c;
    background: rgba(255, 255, 255, 0.15);
}

.proceed-btn,
.cancel-btn,
.checkout-button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0.5rem 0.5rem 0 0;
}

.proceed-btn,
.checkout-button {
    background: linear-gradient(45deg, #1abc9c, #16a085);
    color: white;
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.3);
}

.proceed-btn:hover,
.checkout-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 188, 156, 0.4);
}

.cancel-btn {
    background: rgba(220, 20, 60, 0.2);
    color: #ffffff;
    border: 1px solid rgba(220, 20, 60, 0.3);
}

.cancel-btn:hover {
    background: rgba(220, 20, 60, 0.3);
}

.checkout-button {
    width: 100%;
    margin: 1rem 0;
}

.contact {
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.contact p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Map and Calendar Container */
.map-calendar-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
    align-items: center;
}

/* Desktop: side by side */
@media (min-width: 1025px) {
    .map-calendar-container {
        flex-direction: row;
        gap: 2rem;
        align-items: stretch;
        justify-content: center;
    }
}

.map-container {
    width: 100%;
    max-width: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

/* Desktop: fixed width */
@media (min-width: 1025px) {
    .map-container {
        width: 320px;
    }
}

.map-container iframe {
    flex: 1;
    min-height: 0;
}

/* Calendar Styles */
.calendar-container {
    margin: 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 350px;
    flex-shrink: 0;
}

/* Desktop: fixed width */
@media (min-width: 1025px) {
    .calendar-container {
        width: 320px;
    }
}

.calendar-container h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    text-align: center;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.calendar-nav {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.calendar-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

#currentMonth {
    font-size: 0.95rem;
    margin: 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    margin-bottom: 0.8rem;
}

.day-header {
    text-align: center;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.3rem;
    color: rgba(255, 255, 255, 0.7);
}

.calendar-days {
    display: contents;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-height: 28px;
}

.calendar-day.other-month {
    opacity: 0.3;
}

.calendar-day.saturday {
    font-weight: 600;
}

.calendar-day.saturday.open {
    background: rgba(26, 188, 156, 0.3);
    border-color: rgba(26, 188, 156, 0.5);
    color: white;
}

.calendar-day.saturday.closed {
    background: rgba(231, 76, 60, 0.3);
    border-color: rgba(231, 76, 60, 0.5);
    color: white;
}

.calendar-day.today {
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-weight: bold;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.8rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.legend-dot.open {
    background: rgba(26, 188, 156, 0.8);
}

.legend-dot.closed {
    background: rgba(231, 76, 60, 0.8);
}

.contact-info {
    margin-top: 2rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn.accept {
    background: linear-gradient(45deg, #1abc9c, #16a085);
    color: white;
}

.cookie-btn.accept:hover {
    background: linear-gradient(45deg, #16a085, #138d75);
    transform: translateY(-2px);
}

.cookie-btn.decline {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Mobile cookie banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        padding: 0.9rem 1rem;
        font-size: 0.85rem;
    }
}

/* Origins Map Section */
.origins-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
}

.origins-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #1abc9c, #16a085);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.origins-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.map-container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.world-map {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.map-svg {
    width: 100%;
    height: auto;
    max-height: 400px;
}

.origin-point {
    fill: #1abc9c;
    stroke: rgba(255, 255, 255, 0.8);
    stroke-width: 2;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.origin-point:hover {
    fill: #16a085;
    r: 12;
    stroke-width: 3;
}

.origin-point.detroit {
    fill: #e74c3c;
    stroke: rgba(231, 76, 60, 0.8);
}

.origin-point.detroit:hover {
    fill: #c0392b;
}

.journey-line {
    stroke-dasharray: 5,5;
    animation: dash 3s linear infinite;
    transition: opacity 0.5s ease;
}

@keyframes pulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

@keyframes dash {
    to {
        stroke-dashoffset: -20;
    }
}

.coffee-info-card {
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    z-index: 100;
    pointer-events: none;
}

.coffee-info-card.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.coffee-info-card h4 {
    margin: 0 0 0.5rem 0;
    color: #1abc9c;
    font-size: 1rem;
    font-weight: 600;
}

.coffee-info-card p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

/* Position info cards */
.ethiopia-info { top: 200px; right: 150px; }
.guatemala-info { top: 220px; left: 180px; }
.nicaragua-info { top: 240px; left: 200px; }
.colombia-info { top: 260px; left: 280px; }
.detroit-info { top: 150px; left: 120px; }

/* Mobile responsive */
@media (max-width: 768px) {
    .origins-section {
        padding: 3rem 0;
    }
    
    .origins-section h2 {
        font-size: 2rem;
    }
    
    .world-map {
        padding: 1rem;
    }
    
    .coffee-info-card {
        width: 200px;
        padding: 0.8rem;
        font-size: 0.8rem;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        top: auto !important;
        right: auto !important;
    }
    
    .coffee-info-card.show {
        transform: translateX(-50%) translateY(0);
    }
}

.footer {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    opacity: 0.7;
}

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

/* Tablet styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        min-height: calc(100vh - 80px);
        height: calc(100vh - 80px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 4rem 0 0 0;
        margin-top: 80px;
        box-sizing: border-box;
    }
    
    .hero-content {
        width: 100%;
        max-width: 80%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: calc(100vh - 80px);
    }
    
    .hero-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        width: 100%;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 1.2rem;
        line-height: 1.1;
    }
    
    .hero p {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }
    
    .hero-logo {
        max-height: 320px;
    }
    
    /* Map and Calendar on tablet - default mobile behavior applies */
}

@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
    }
    
    .nav-menu {
        display: flex !important;
        position: fixed;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100vh;
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.9) 100%
        );
        backdrop-filter: blur(40px) saturate(180%);
        -webkit-backdrop-filter: blur(40px) saturate(180%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 0;
        margin: 0;
        transition: left 0.3s ease-in-out;
        z-index: 1001;
        list-style: none;
        box-sizing: border-box;
    }
    
    .nav-menu.active {
        left: 0 !important;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        font-weight: 500;
        padding: 0.8rem 2rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        min-width: 200px;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    }
    
    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo-img {
        height: 42px;
    }
    
    .hero {
        padding: 0;
        min-height: 100vh;
        height: 100vh;
        margin-top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 0;
        box-sizing: border-box;
    }
    
    .hero-card {
        padding: 2rem 1rem;
        margin: 0 auto;
        gap: 2rem;
        max-width: 90vw;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .coffee-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .coffee-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .coffee-card {
        padding: 1.2rem;
    }
    
    .coffee-image {
        max-width: 140px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .glass-card {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .about h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .about p,
    .contact p {
        font-size: 1rem;
    }
    
    .featured-quote {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
    
    .featured-quote::before,
    .featured-quote::after {
        font-size: 3rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .cart-sidebar {
        width: 100vw;
        right: -100vw;
    }
    
    .cart-sidebar.active {
        right: 0;
    }
    
    .cart-content {
        border-radius: 0;
    }
    
    .cart-header {
        padding: 1rem;
    }
    
    .cart-items {
        padding: 1rem;
    }
    
    .cart-footer {
        padding: 1rem;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .cart-item-controls {
        align-self: flex-end;
    }
    
    .hero-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text {
        order: 2;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
        width: 100%;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-logo {
        max-height: 300px;
        max-width: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
    }
    
    .floating-element {
        display: none;
    }
}

/* Additional mobile improvements */
@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 0;
        box-sizing: border-box;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-card {
        padding: 1.5rem 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: auto;
    }
    
    .coffee-card {
        padding: 1rem;
    }
    
    .glass-card {
        padding: 1rem;
    }
    
    .add-to-cart-btn {
        width: 100%;
        margin-top: 1rem;
    }
    
    .cta-button {
        width: auto;
        max-width: 90%;
        margin: 0 auto;
    }
    
    .nav-menu {
        padding-top: 2rem;
        gap: 1.5rem;
    }
    
    /* Mobile specific adjustments */
    .map-container {
        max-width: 300px;
    }
    
    .calendar-container {
        padding: 0.8rem;
        max-width: 300px;
    }
    
    .calendar-day {
        font-size: 0.7rem;
        min-height: 24px;
    }
    
    .calendar-nav {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
    
    #currentMonth {
        font-size: 0.85rem;
    }
    
    .day-header {
        font-size: 0.65rem;
        padding: 0.2rem;
    }
    
    .legend-item {
        font-size: 0.7rem;
        gap: 0.3rem;
    }
    
    .legend-dot {
        width: 8px;
        height: 8px;
    }
}

/* Ultra small devices */
@media (max-width: 360px) {
    .hero {
        min-height: 100vh;
        height: 100vh;
        padding-top: 0;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-card {
        padding: 1rem 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.1;
    }
    
    .hero-logo {
        max-height: 250px;
        max-width: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
    }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 0;
        min-height: 100vh;
        height: 100vh;
        margin-top: 0;
        padding-top: 0;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-card {
        flex-direction: column;
        gap: 1.5rem;
        min-height: auto;
        overflow-y: auto;
    }
    
    .hero-logo {
        max-height: 200px;
        max-width: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
    }
}

/* Success Notification */
.success-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.95) 0%, rgba(22, 160, 133, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    min-width: 400px;
    max-width: 90vw;
    text-align: center;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    z-index: 10000;
    opacity: 0;
    scale: 0.8;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-notification.show {
    opacity: 1;
    scale: 1;
}

.success-notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.success-notification-overlay.show {
    opacity: 1;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: successPulse 2s infinite ease-in-out;
}

.success-icon::before {
    content: '✓';
    font-size: 2.5rem;
    color: white;
    font-weight: bold;
}

@keyframes successPulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

.success-notification h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.success-notification p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.success-notification .customer-name {
    color: white;
    font-weight: 600;
}

.success-close-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.success-close-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .success-notification {
        min-width: auto;
        width: 90vw;
        padding: 2rem 1.5rem;
    }
    
    .success-notification h2 {
        font-size: 1.5rem;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .success-icon::before {
        font-size: 2rem;
    }
}

