@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;700&family=Manrope:wght@400;500&display=swap');
*{
    font-family: 'Fredoka One', cursive;
}
/* Main Navigation Styles */
.main-nav {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #FFF8F0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #8a1b1b;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
}
.home-button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #333;
}

.home-button:hover {
    color: #ff9900; /* Hoặc màu phù hợp với giao diện */
}

.nav-logo span {

    font-size: 1.8rem;
    font-weight: 700;
    color: #8a1b1b;
    letter-spacing: 2px;
}

.nav-icons {
    display: flex;
    gap: 20px;
}

.nav-icon {
    color: #8a1b1b;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.nav-icon:hover {
    transform: scale(1.1);
}

.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 10%;
    padding: 5%;
    background-color: #FFF8F0;
}

.nav-button {
    display: inline-block;
    transition: transform 0.5s ease;
    border-radius: 50%;
    overflow: visible;
    width: 100%px;
    height: auto;
}

.nav-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.nav-button:hover {
    animation: spin 100s linear infinite;
}

.nav-button:hover img {
    animation: spin 10s linear infinite;
}

/* Keyframes cho animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
.item-containt{

    width: 100%;
    height: auto;
    background-color: #e1aa59;
}
/* Base Styles */
.cookie-container {
    display: flex;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
    padding-top: 24px;
    flex-direction: column;
    padding-left: 8px;
    padding-right: 8px;
    
}

@media (min-width: 768px) {
    .cookie-container {
        padding-top: 40px;
        flex-direction: row;
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* Image Styles */
.cookie-image {
    display: none;
    width: 460px;
    height: 460px;
}

@media (min-width: 768px) {
    .cookie-image {
        display: flex;
    }
}

@media (min-width: 1280px) {
    .cookie-image {
        display: none;
    }
}

.cookie-image-xl {
    display: none;
    width: 650px;
    height: 650px;
}

@media (min-width: 1280px) {
    .cookie-image-xl {
        display: flex;
    }
}

.cookie-image-mobile {
    display: block;
    width: 360px;
    height: 360px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .cookie-image-mobile {
        display: none;
    }
}

/* Content Styles */
.cookie-content {
    color: white;
    margin-left: 16px;
    margin-right: 16px;
    display: block;
    text-align: left;
}

@media (min-width: 768px) {
    .cookie-content {
        margin-left: 75px;
        margin-right: 75px;
    }
}

/* Text Styles */
.served-warm {
    font-weight: bold;
    font-size: 18px;
    line-height: 20px;
}

.cookie-title {
    font-weight: 800;
    font-size: 34px;
    line-height: 40px;
    padding-top: 10px;
}

.cookie-description {
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    max-width: 700px;
}

/* Mobile Text Styles */
@media (max-width: 767px) {
    .served-warm-mobile {
        font-weight: normal;
        font-size: 12px;
        line-height: 16px;
    }
    
    .cookie-title-mobile {
        font-weight: 800;
        font-size: 44px;
        line-height: 50px;
    }
    
    .cookie-description-mobile {
        font-weight: normal;
        font-size: 14px;
        line-height: 18px;
    }
}

/* Button Container */
.button-container {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 10px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

@media (min-width: 768px) {
    .button-container {
        padding-top: 30px;
    }
}

@media (min-width: 1024px) {
    .button-container {
        flex-direction: row;
    }
}

/* Buttons */
.order-button {
    display: flex;
    white-space: nowrap;
    align-items: center;
    min-height: 40px;
    border-radius: 9999px;
    padding: 2px 30px;
    z-index: 10;
    max-width: 400px;
    height: 40px;
    background-color: #ffffff;
    color: #8a1b1b;
    justify-content: center;
    width: 100%;
    text-decoration: none;
}


.favorite-button {
    display: flex;
    white-space: nowrap;
    align-items: center;
    border-radius: 9999px;
    padding: 12px 25px 12px 30px;
    max-width: 400px;
    min-height: 40px;
    height: 40px;
    background-color: transparent;
    color: #8a1b1b;
    border: 1px solid white;
    justify-content: center;
    width: 100%;
    text-transform: capitalize;
}

.favorite-button svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    color: #8a1b1b;
}

.favorite-button span {
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    width: 100%;
}

/* Rating Styles */
.rating-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .rating-container {
        flex-direction: row;
    }
}

.stars-container {
    display: inline-flex;
    align-items: center;
    padding-bottom: 12px;
}

.star-icon {
    width: 48px;
    height: 48px;
    color: black;
}

.rating-text-container {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (min-width: 768px) {
    .rating-text-container {
        padding-left: 8px;
    }
}

.avg-rating {
    font-weight: bold;
    font-size: 14px;
    line-height: 18px;
    white-space: nowrap;
}

.reviews-count {
    font-weight: normal;
    font-size: 13px;
    line-height: 15px;
    white-space: nowrap;
}

.divider {
    color: black;
}

/* Responsive Adjustments */
@media (min-width: 640px) {
    .order-button, .favorite-button {
        min-height: 50px;
        height: 50px;
    }
}

@media (min-width: 1536px) {
    .served-warm {
        font-size: 20px;
        line-height: 22px;
    }
    
    .cookie-title {
        font-size: 55px;
        line-height: 65px;
    }
    
    .cookie-description {
        font-size: 16px;
        line-height: 20px;
    }
    
    .order-button span, .favorite-button span {
        font-size: 18px;
        line-height: 22px;
    }
    
    .avg-rating {
        font-size: 16px;
        line-height: 20px;
    }
    
    .reviews-count {
        font-size: 14px;
        line-height: 16px;
    }
}

@media (min-width: 768px) {
    .cookie-title {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

/* Wave Effect */
.wave {
    width: 100%;
    height: 150px;
    background-color: #ffffff;
    /* Change this to modify wave color */
    -webkit-mask: url('../images/wave-sm.417370b1.png') repeat-x;
    -webkit-mask-size: cover;
    mask: url('../images/wave-sm.417370b1.png') repeat-x;
    mask-size: cover;
}

/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #000;
}

.reviews-container {
    color: #8a1b1b;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.reviews-header {
    margin-left: 10%;
    text-align: left;
}

.reviews-header .reviews-title {
    font-size: 44px;
    font-weight: bold;
    margin-bottom: 10px;
}

.reviews-header .reviews-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.reviews-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.reviews-card {
    background-color: #fff;
    border: 1px solid #000;
    box-shadow: 6px 6px 0px 0px #000;
    border-radius: 10px;
    padding: 20px;
    max-width: 25%;
    text-align: left;
}

.reviews-icon {
    width: 36px;
    height: 36px;
    color: #8a1b1b; /* Pink color for the quote icon */
    margin-bottom: 10px;
}

.reviews-text {
    font-size: 16px;
    margin-bottom: 10px;
}

.reviews-author {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.reviews-footer {
    margin-top: 30px;
}

.reviews-footer p {
    font-size: 14px;
    color: #666;
}

.reviews-btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}

.reviews-btn:hover {
    background-color: #333;
}
/* Container Styles */
.ingredients-container {
    color: #8a1b1b;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    align-items: center;
}
.ingredients-body{
    width: 80%;
    align-items: start;
}
/* Title Styles */
.ingredients-title {
    font-weight: 800;
    font-size: 34px;
    line-height: 40px;
}

@media (min-width: 1024px) {
    .ingredients-title {
        font-size: 46px;
        line-height: 46px;
    }
}

@media (min-width: 1536px) {
    .ingredients-title {
        font-size: 55px;
        line-height: 65px;
    }
}

/* Description Styles */
.ingredients-description {
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
    color: #666;
}

@media (min-width: 1536px) {
    .ingredients-description {
        font-size: 18px;
        line-height: 22px;
    }
}

/* Image Styles */
.ingredients-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 0 auto;
    border-radius: 10px;
}

/* Container */
.nutrition-container {
    width: 75%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    margin: 0 auto;
}

/* Title */
.nutrition-title {
    font-size: 24px;
    /* font-weight: bold; */
}
/* Info Section */
.nutrition-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.nutrition-icon {
    width: 20px;
    height: 20px;
}

.nutrition-note {
    font-size: 16px;
    color: #666;
}

/* Collapsible Section */
.nutrition-section {
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
}

.nutrition-toggle {
    color: #8a1b1b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px;
    background-color: #f9f9f9;
    cursor: pointer;
    border: none;
    outline: none;
}

.nutrition-toggle-title {
    font-size: 18px;
    /* font-weight: bold; */
}

.nutrition-arrow {
    font-size: 14px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.nutrition-details {
    padding: 15px;
    background-color: #fff;
    display: none; /* Hidden by default */
}

.nutrition-details.active {
    display: block; /* Shown when active */
}

/* Table Styles */
.nutrition-table {
    width: 100%;
    border-collapse: collapse;
}

.nutrition-table th,
.nutrition-table td {
    padding: 8px;
    border-bottom: 1px solid #ccc;
    font-weight: normal;
    color: #333;
}

.align-right {
    text-align: right;
}

/* Full Info Button */
.nutrition-full-info-btn {
    width: 25%;
    margin-top: 20px;
    padding: 10px 20px;
    border: 1px solid #8a1b1b;
    border-radius: 25px;
    background-color: transparent;
    color: #8a1b1b;
    cursor: pointer;
}

.nutrition-full-info-btn:hover {
    background-color: #000;
    color: #fff;
}