﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: #FFF8F0;
}

/* Floating Contact Buttons */
.floating-contacts {
    position: fixed;
    right: 20px;
    top: 50%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

    .floating-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}


.floating-contacts svg {
    width: 30px;
}

.floating-contacts a {
    opacity: 0.5 !important;
}

    .floating-contacts a:hover {
        opacity: 1 !important;
    }


.floating-btn:hover::before {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #FFD6E7 0%, #FFF8F0 50%, #FFD8B1 100%);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInDown 1s ease;
}

.header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    animation: zoomIn 1s ease;
    margin-top:20px;
}

.header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FF69B4;
    margin-bottom: 1rem;
    animation: slideInDown 1s ease-out;
}

.header p {
    font-size: 1.5rem;
    color: #D32F2F;
    margin-bottom: 2rem;
    animation: slideInUp 1s ease-out 0.3s both;
}

/* Menu Section */
}

/* Menu Section */
.menu-section {
    padding: 5rem 2rem;
    F0;
    position: relative;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Menu Items */
.menu-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    animadeInUp 0.6s ease-out forwards;
    position: relative;
}

    .menu-item:hover {
        background-color: rgba(255, 105, 180, 0.05);
        border-radius: 10px;
    }

    .menu-item.out-of-stock {
        opacity: 0.5 !important;
        position: relative;
    }



    .menu-item .img {
        width: 80px;
        height: 80px;
        border-radius: 10px;
        margin-right: 15px;
        background: linear-gradient(135deg, #fce7f3, #fed7aa);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        position: relative;
    }

    .menu-item .info {
        flex: 1;
        position: relative;
    }

        .menu-item .info h3 {
            margin: 0 0 5px;
            font-size: 1.2rem;
            color: #009688;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .menu-item .info p {
            margin: 0;
            font-size: 0.95rem;
            color: #777;
        }

    .menu-item .price {
        font-size: 1.2rem;
        font-weight: bold;
        color: #3F51B5;
        flex-direction: column;
        align-items: flex-end;
        gap: 5px;
    }

/* Tags */
.tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 12px;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .tag.hot {
        background: linear-gradient(135deg, #ff4757, #ff3742);
        color: white;
        animation: pulse 2s infinite;
    }

    .tag.new {
        background: linear-gradient(135deg, #2ed573, #1dd1a1);
        color: white;
    }

    .tag.sale {
        background: linear-gradient(135deg, #ffa502, #ff6348);
        color: white;
        animation: flash 1.5s infinite;
    }

    .tag.out-of-stock {
        background: linear-gradient(135deg, #747d8c, #57606f);
        color: white;
    }

    .tag.special {
        background: linear-gradient(135deg, #a55eea, #8854d0);
        color: white;
    }

/* Price styles */
.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    font-weight: normal;
}

.sale-price {
    color: #ff4757;
    font-weight: bold;
}

.out-of-stock-price {
    color: #999;
}

/* Animations for tags */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0.7;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #FFD8B1 0%, #FFD6E7 50%, #FFF8F0 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease;
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF69B4, #f43f5e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    box-shadow: 0 15px 30px rgba(255, 105, 180, 0.3);
}

.footer-title h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #FF69B4;
    margin-bottom: 1rem;
}

.footer-title p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
}

.contacts {
    margin-bottom: 2rem;
    color: #555;
    font-size: 0.9rem;
}

    .contacts p {
        margin-bottom: 0.5rem;
    }

    .contacts ul {
        list-style: none;
        padding: 0;
        margin: 10px 0;
    }

    .contacts li {
        margin-bottom: 5px;
    }

/* Contact Buttons */
.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
}

    .contact-buttons a {
        text-decoration: none;
        color: #fff;
        padding: 12px 24px;
        border-radius: 25px;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-block;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

        .contact-buttons a:hover {
            transform: scale(1.1) translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .contact-buttons a.call {
            background-color: #E74C3C;
        }

        .contact-buttons a.zalo {
            background-color: #0068FF;
        }

        .contact-buttons a.fb {
            background-color: #3b5998;
        }

        .contact-buttons a.messenger {
            background-color: #0084FF;
        }

/* Copyright */
.copyright {
    color: #555;
    font-size: 0.9rem;
}

    .copyright p {
        margin-bottom: 0.5rem;
    }

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Show animation for menu items */
.menu-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* Animation delays for menu items */
.menu-item:nth-child(1) {
    animation-delay: 0.1s;
}

.menu-item:nth-child(2) {
    animation-delay: 0.2s;
}

.menu-item:nth-child(3) {
    animation-delay: 0.3s;
}

.menu-item:nth-child(4) {
    animation-delay: 0.4s;
}

.menu-item:nth-child(5) {
    animation-delay: 0.5s;
}

.menu-item:nth-child(6) {
    animation-delay: 0.6s;
}

.menu-item:nth-child(7) {
    animation-delay: 0.7s;
}

.menu-item:nth-child(8) {
    animation-delay: 0.8s;
}

.menu-item:nth-child(9) {
    animation-delay: 0.9s;
}

/* Animation delays for floating buttons */
.floating-btn:nth-child(1) {
    animation-delay: 0s;
}

.floating-btn:nth-child(2) {
    animation-delay: 0.2s;
}

.floating-btn:nth-child(3) {
    animation-delay: 0.4s;
}

.floating-btn:nth-child(4) {
    animation-delay: 0.6s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2.5rem;
    }

    .header p {
        font-size: 1.2rem;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

        .contact-buttons a {
            width: 200px;
            text-align: center;
        }

    .floating-contacts {
        right: 10px;
        gap: 10px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }



    .menu-item .info h3 {
        font-size: 1rem;
    }

    .tag {
        font-size: 0.6rem;
        padding: 2px 6px;
        margin-left: 20px;
    }
}

@media (max-width: 465px) {
    .tag {
        margin-left: 0px;
    }
}

.image-product {
    width: 100%;
    object-fit: cover;
    height: 100%;
}




.price-mobile {
    display: none;
}



.footer {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* khoảng cách giữa 2 cột */
    flex-wrap: wrap; /* tự xuống hàng trên mobile */
}

.footer-left,
.footer-right {
    flex: 1; /* mỗi khối chiếm 50% */
    min-width: 250px; /* để responsive */
}

    .footer-left a,
    .footer-right a {
        display: block;
        margin-bottom: 5px;
        color: #333;
        text-decoration: none;
    }

.divFooterContact {
    display: flex;
    text-align: left;
}


@media (max-width: 465px) {
    .price-mobile {
        display: block !important;
        float: left;
    }

    .menu-section {
        padding: 0 10px;
    }

    .price-des {
        display: none !important;
    }

    .divFooterContact {
        display: block;
    }
}

.contacts a {
    text-decoration: none;
    color: #555;
}
