/* <--- Inner Page  ---> */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #3e2723; 
    background-color: #f5f0e8; 
}

.tea-detail {
    padding: 60px 20px;
    margin-top: 90px;
    animation: fadeIn 1s ease-out;
}

.tea-detail-header {
    text-align: center;
    margin-bottom: 40px;
    animation: slideInFromTop 1s ease-out;
}

.tea-detail-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.tea-detail-header p {
    font-size: 18px;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeInUp 1.2s forwards;
}

.tea-detail-header .price {
    font-size: 24px;
    font-weight: bold;
    color: #3e2723; 
    opacity: 0;
    animation: fadeInUp 1.4s forwards;
}

.tea-detail-content {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    animation: fadeIn 1s ease-out;
}

.tea-detail-image {
    width: 100%;
    max-width: 400px;
    height: 300px; 
    overflow: hidden; 
    border-radius: 8px;
    border: 2px solid #d4a373; 
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff; 
}

.tea-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tea-detail-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.tea-detail-info {
    max-width: 600px;
    animation: fadeIn 1s ease-out;
}

.tea-detail-info h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #3e2723; 
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.tea-detail-info p {
    font-size: 16px;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeInUp 1.2s forwards;
}

.tea-detail-info ul {
    list-style: none;
    padding: 0;
}

.tea-detail-info ul li {
    font-size: 16px;
    margin-bottom: 5px;
    opacity: 0;
    animation: fadeInUp 1.4s forwards;
}

.contact-info {
    text-align: center;
    margin-top: 40px;
    background-color: #d4a373;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    margin: auto;
    margin-top: 22px;
    animation: fadeIn 1s ease-out;
    transition: transform 0.3s ease;
}

.contact-info:hover {
    transform: scale(1.02);
}

.contact-info p {
    font-size: 18px;
    color: #fff; 
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.contact-info a {
    color: #fff; 
    text-decoration: none;
    font-weight: bold;
    opacity: 0;
    animation: fadeInUp 1.2s forwards;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .tea-detail-content {
        flex-direction: column;
        align-items: center;
    }

    .tea-detail-image {
        height: 250px; 
        max-width: 100%;
    }

    .tea-detail-info {
        max-width: 90%;
    }
}
