body {
    font-family: 'Playfair Display', serif;
    background-color: rgb(251, 247, 238);
}

.navbar,
.btn,
footer {
    font-family: 'Quicksand', sans-serif;
}

.copyright {
    background-color: #4e342e;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
    margin-top: 40px;
    border-top: 2px solid #a1887f;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer {
    background-color: #4e342e;
    color: #fff;
    padding: 30px 20px;
    font-size: 0.95rem;
    border-top: 2px solid #a1887f;
}

    footer h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        color: #ffe0b2;
    }

    footer a {
        color: #ffcc80;
        text-decoration: none;
    }

        footer a:hover {
            text-decoration: underline;
        }

    footer #map iframe {
        width: 100%;
        height: 300px;
        border-radius: 10px;
        border: none;
        margin-top: 15px;
    }

/* Make footer columns stack on small screens */
@media (max-width: 768px) {
    footer .row {
        flex-direction: column;
    }

    footer .col {
        margin-bottom: 30px;
    }
}

.badge-hot {
    font-size: 1.25rem;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    box-shadow: 0 0.5rem 1rem rgba(255, 0, 0, 0.3);
}

.category-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #6C4D41;
    text-transform: uppercase;
    border-bottom: 3px solid #6C4D41;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.main-title {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffe0b2;
    background: linear-gradient(90deg, #a56c36, #6d4c41, #3e2723);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.tea-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s ease-in-out;
}

    .tea-card:hover {
        transform: scale(1.02);
    }

.tea-img {
    width: 100%;
    height: auto;
    max-width: 200px;
}

.tea-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #6d4c41;
}

.tea-desc {
    font-size: 0.85rem;
    color: #555;
    max-width: 80%;
    margin: 0 auto;
}

.hot-badge {
    background-color: #e74c3c;
    color: white;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 0 8px rgba(231, 76, 60, 0.3);
    z-index: 1;
}

.tea-price-row {
    margin-top: 0.5rem;
}

.tea-price {
    font-weight: 600;
    color: #6d4c41;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.size-label {
    margin-right: 0.25rem;
    font-weight: inherit;
    font-size: inherit;
}

.hot-badge,
.tea-title,
.category-title {
    font-family: 'Playfair Display', serif;
}

/* Detail Page Styling - UPDATED */
.detail-img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.detail-title {
    font-weight: bold;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #6d4c41;
}

.detail-main-desc {
    font-style: italic;
    color: #555;
    font-size: 2.25rem;
    margin-bottom: 1.2rem;
}

.detail-price-block {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.detail-size {
    margin-bottom: 1.2rem;
}

.detail-size-title {
    font-weight: 600;
    font-size: 2.25rem;
    margin-bottom: 0.3rem;
    color: #6d4c41;
}

.price {
    color: #000;
    font-weight: bold;
    font-size: 2.25rem;
    color: #6d4c41;
}

.detail-desc {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Grid layout for drink items */
.drink-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* 2 Columns for medium */
@media (min-width: 400px) {
    .drink-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 3 Columns for larger screens */
@media (min-width: 768px) {
    .drink-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Make images responsive */
.tea-img {
    width: 100%;
    height: auto;
}

@media (max-width: 480px) {
    .hot-badge {
        font-size: 0.9rem;
        padding: 8px 14px;
        border-radius: 18px;
    }
}
.detail-desc {
    font-size: 2.25rem; /* or even 1.3rem */
    color: #5a4a42;
    margin: 0.3rem 0 1rem;
    font-style: italic;
}
.single-price {
    justify-content: center;
    display: flex;
    font-size: 1.2rem;
    font-weight: 600;
    color: #6d4c41;
}
iframe[src*="somee.com"],
a[href*="somee.com"],
div:has(a[href*="somee.com"]),
footer:has(a[href*="somee.com"]) {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
}

