.am-thuc-wrapper {
    padding: 60px 0;
    /* Fallback */
}

.am-thuc-wrapper * {
    box-sizing: border-box;
}

.am-thuc-wrapper .am-thuc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Tabs */
.am-thuc-wrapper .am-thuc-tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    border-bottom: 1px solid #e0e0e0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.am-thuc-wrapper .am-thuc-tabs::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.am-thuc-wrapper .am-thuc-tabs li {
    margin-right: 30px;
    white-space: nowrap;
}

.am-thuc-wrapper .am-thuc-tabs li a {
    text-decoration: none;
    color: #333;
    font-size: var(--text-base);
    padding-bottom: 10px;
    display: block;
    position: relative;
    transition: color 0.3s;
    text-transform: uppercase;
}

.am-thuc-wrapper .am-thuc-tabs li.active a,
.am-thuc-wrapper .am-thuc-tabs li a:hover {
    color: #EC7954;
}

.am-thuc-wrapper .am-thuc-tabs li.active a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #EC7954;
}

/* Grid */
.am-thuc-wrapper .am-thuc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Card */
.am-thuc-wrapper .am-thuc-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #f7f7f7;
}

.am-thuc-wrapper .am-thuc-card .am-thuc-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.am-thuc-wrapper .am-thuc-card .am-thuc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.am-thuc-wrapper .am-thuc-card:hover .am-thuc-image img {
    transform: scale(1.05);
}

.am-thuc-wrapper .am-thuc-card .am-thuc-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.am-thuc-wrapper .am-thuc-card .am-thuc-category {
    font-size: var(--text-xs);
    font-weight: 700;
    color: #EC7954;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.am-thuc-wrapper .am-thuc-card .am-thuc-title {
    font-size: var(--heading-4);
    color: #333;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.3;
}

.am-thuc-wrapper .am-thuc-card .am-thuc-desc {
    font-size: var(--text-lg);
    color: #555;
    line-height: 1.6;
    margin: 0 0 20px 0;
    font-weight: 300;
}

.am-thuc-wrapper .am-thuc-card .am-thuc-info {
    font-size: var(--text-lg);
    color: #444;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 300;
}

.am-thuc-wrapper .am-thuc-card .am-thuc-info p {
    margin: 0 0 5px 0;
}

.am-thuc-wrapper .am-thuc-card .am-thuc-info p:last-child {
    margin: 0;
}

.am-thuc-wrapper .am-thuc-card .am-thuc-info strong {
    font-weight: 400;
    color: #333;
}

.am-thuc-wrapper .am-thuc-card .am-thuc-action {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.am-thuc-wrapper .am-thuc-card .am-thuc-btn {
    display: inline-block;
    background-color: #173633;
    color: #fff;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 2px;
    border: 1px solid #173633;
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.3s, color 0.3s;
}

.am-thuc-wrapper .am-thuc-card .am-thuc-btn:hover {
    background-color: #ec7954;
    border-color: #ec7954;
}

.am-thuc-wrapper .am-thuc-card .am-thuc-btn-outline {
    background-color: transparent;
    color: #173633;
    border-color: #173633;
}

.am-thuc-wrapper .am-thuc-card .am-thuc-btn-outline:hover {
    background-color: #ec7954;
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .am-thuc-wrapper .am-thuc-grid {
        gap: 20px;
    }
.am-thuc-wrapper {
    padding: 10px 0px;
}
    .am-thuc-wrapper .am-thuc-card .am-thuc-title {
        font-size: var(--text-xl);
    }

    .am-thuc-wrapper .am-thuc-card .am-thuc-content {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .am-thuc-wrapper .am-thuc-grid {
        grid-template-columns: 1fr;
    }

    .am-thuc-wrapper .am-thuc-tabs li {
        margin-right: 15px;
    }

    .am-thuc-wrapper .am-thuc-tabs li a {
        font-size: var(--text-sm);
    }

    .am-thuc-wrapper .am-thuc-card .am-thuc-image {
        height: 250px;
    }
}