* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
}
body {
    font-size: 1.6rem;
    font-family: "Poppins", sans-serif;
}
:root {
    --header-color: #060409;
    --white-color: #fff;
    --black-color: #000;
    --text-color: #333;
}
*::-webkit-scrollbar {
    width: 5px;
}
*::-webkit-scrollbar-track {
    background: #fafafa;
}
*::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.45);
    border-radius: 10px;
    -webkit-box-shadow: rgba(255, 255, 255, 0.3) 0 0 0 1px;
    box-shadow: rgba(255, 255, 255, 0.3) 0 0 0 1px;
}
a {
    text-decoration: none;
    color: inherit;
}
.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: var(--line-clamp, 2); /*default: 2*/
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.container {
    /* max-width: 1360px; */
    max-width: calc(100% - 130px);
    margin-right: auto;
    margin-left: auto;
}
.btn {
    display: inline-block;
    width: 190px;
    height: 55px;
    font-size: 1.6rem;
    font-weight: 600;
    color: #060409;
    border: none;
    border-radius: 30px;
    background: #fff;
    cursor: pointer;
    transition: color, background 0.3s;
}
.btn:hover {
    opacity: 0.9;
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: -40px;
    width: 100%;
    height: 112px;
    background: var(--header-color);
    z-index: 10;
}
.header-topbar {
    width: 100%;
    height: 40px;
    padding: 8px 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-weight: 600;
}
.topbar__tittle {
    display: block;
    text-align: center;
    font-weight: 500;
    font-size: 1.3rem;
    color: #ff5238;
}
.topbar__btn {
    min-width: 110px;
    height: 20px;
    padding: 4px 10px;
    font-size: 1.2rem;
    text-align: center;
    background: #060409;
    color: #fff;
    border-radius: 8px;
}
.header__body {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--header-color);
    /* overflow: hidden    ; */
}
.logo {
    width: 216px;
    height: 70px;
    object-fit: cover;
}

.header__search {
    margin-left: 10px;
    width: 600px;
}
.search-form {
    position: relative;
}
.search-recommend {
    position: absolute;
    width: 100%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
    display: none;
}
.search-recommend__heading {
    padding: 15px 16px;
    border-bottom: 1px solid #e2e8f0;
}
.search-recommend__top-row {
    display: flex;
    color: #a6a6a6;
}
.search-recommend__icon {
    margin-left: auto;
    color: #333;
}
.search-recommend__icon i {
    font-size: 1.9rem;
    margin-right: 4px;
    padding: 4px;
}
.search-recommend__icon i:first-child {
    border: 1px solid #333;
}
.search-recommend__tittle {
    margin-top: 10px;
}
.search-list {
    max-height: 40vh;
    overflow-y: auto;
}
.search-item {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    padding: 15px 26px;
    border-top: 1px solid #e2e8f0;
}
.search-item:hover {
    background: #f7f7f7;
}
.search-item__img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}
.search-item__info {
    margin-left: 22px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.search-item__price {
    font-weight: 600;
}
.search-recommend__bottom {
    cursor: pointer;
    padding: 15px;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}
.search-form__input {
    width: 100%;
    height: 44px;
    padding: 0 50px 0 30px;
    font-size: 1.6rem;
    outline: none;
    border: none;
    border-radius: 99px;
}
.search-form__btn {
    position: absolute;
    right: 0;
    top: 0;
    padding-right: 8px;
    width: 44px;
    height: 44px;
    font-size: 2.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: rgb(32, 200, 94); */
    border-radius: 0px 200px 200px 0px;
    transition: background 0.25s;
}
.search-form__btn:hover {
    background: #ccc;
}
.heahder-right {
    display: flex;
    align-items: center;
    gap: 40px;
    font-weight: 500;
}
/* ====== Hotline ======= */
.header__call {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}
.header-call__icon {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-call__box {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.header__cta {
    display: flex;
    align-items: center;
}
.header__account {
    width: 70px;
    height: 50px;
    padding: 10px 40px 10px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    border-right: 2px solid #fff;
    cursor: pointer;
    z-index: 1;
}
.header__account::before {
    content: "";
    position: absolute;
    display: block;
    left: -26px;
    bottom: -8px;
    right: -75px;
    width: 90px;
    height: 20px;
    background: transparent;
}
.header__account::after {
    position: absolute;
    top: 18px;
    right: 20px;
    content: "";
    width: 4px;
    height: 4px;
    rotate: 136deg;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
.header__account:hover .account-btn {
    visibility: visible;
    opacity: 1;
}
.header-user {
    font-size: 2rem;
}
.user-title {
    padding-top: 5px;
    font-size: 1.2rem;
}
.header__cart {
    position: relative;
    font-size: 2rem;
    padding: 20px;
    color: #fff;
    cursor: pointer;
}
.header__cart::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    height: 20px;
    width: 100%;
    background: transparent;
}
.header__cart:hover .cart-box {
    opacity: 1;
    visibility: visible;
    scale: 1;
}
.cart-box {
    position: absolute;
    top: 60px;
    right: 0;
    width: 420px;
    min-height: 300px;
    padding: 20px 0;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    scale: 0;
    transform-origin: calc(100% - 32px) top;
    transition: 0.25s ease;
}
.cart-box::before {
    content: "";
    position: absolute;
    top: -33px;
    right: 10px;
    border-bottom: 20px solid #fff;
    border-top: 20px solid transparent;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
}

.cart-box__tittle {
    width: 100%;
    text-transform: uppercase;
    color: #060409;
    font-weight: 500;
    text-align: center;
    padding: 0 0 10px;
    border-bottom: 1px solid #e7e7e7;
}
.cart-box__empty {
    padding: 30px 0;
    text-align: center;
    color: #060409;
    border-bottom: 1px solid #e7e7e7;
}
.cart-box__empty p {
    font-size: 1.6rem;
    font-weight: 400;
}
.cart-box__empty i {
    font-size: 5rem;
    margin-bottom: 10px;
}
.cart-box__total {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
}
.cart-box__total--text {
    font-size: 1.6rem;
    text-transform: uppercase;
    color: #060409;
}
.cart-box__total--price {
    font-size: 1.6rem;
    color: red;
}
.cart-box__btn {
    text-align: center;
    font-size: 1.6rem;
    margin: 0 14px;
    margin-top: 16px;
    width: 94%;
    height: 36px;
    line-height: 36px;
    background: #060409;
    color: #fff;
}
.account-btn,
.create-btn {
    width: 100%;
}
.signin-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 20px -8px #060409;
}
.signin-btn:hover {
    color: #fff;
    background: #060409;
}
.account-btn {
    position: absolute;
    z-index: 10;
    top: 58px;
    width: 230px;
    height: 160px;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s;
}
.create-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    color: #fff;
    border: 1px solid #060409;
    background: #060409;
}

/* .header__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 10px 0;
} */

/* ===== MENU CATAGORY ====== */
.menu-catagory {
    width: 100%;
    height: 50px;
    padding: 8px 0;
    background: var(--header-color);
}
.menu__list {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 40px;
    font-size: 1.5rem;
    font-weight: 500;
    gap: 8px;
    color: #fff;
    border-left: 1px solid #fff;
    z-index: 1;
    cursor: pointer;
}
.menu-item:hover .item-down {
    rotate: 180deg;
}
.menu-item:hover {
    color: #f49002;
}
.item-down {
    margin-top: -2px;
    font-size: 1rem;
    transition: 0.25s;
}
.item-right {
    transform: translateY(-1px);
    margin-left: 3px;
    font-size: 9px;
    transform-origin: top;
    transition: 0.25s;
}
.dropdown-item {
    position: relative;
    z-index: 100;
}
.service-cata__dropdown,
.cat-cata__dropdown,
.dog-cata__dropdown {
    position: absolute;
    top: 30px;
    left: 34px;
    min-width: 250px;
    border-top: 2px solid #333;
    z-index: 10;
    color: #333;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    transform-origin: top center;
    animation: rotateMenu 0.4s ease-in-out forwards;
}
.service-cata__dropdown {
    left: 0px;
    min-width: 240px;
}
@keyframes rotateMenu {
    0% {
        transform: rotateX(-90deg);
    }
    70% {
        transform: rotateX(20deg);
    }
    100% {
        transform: rotateX(0deg);
    }
}
.service-cata:hover .service-cata__dropdown,
.cat-cata:hover .cat-cata__dropdown,
.dog-cata:hover .dog-cata__dropdown {
    display: block;
}
.detail-list {
    position: absolute;
    z-index: 500 !important;
    right: -100%;
    top: 6px;
    min-width: 215px;
    min-height: 70px;
    background: #fff;
    border-top: 2px solid #333;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    animation: rotateY 0.3s ease-in-out forwards;
    transform-origin: top center;
}
@keyframes rotateY {
    0% {
        transform: rotateY(90deg);
    }
    80% {
        transform: rotateY(-10deg);
    }
    100% {
        transform: rotateY(0);
    }
}
.detail-item {
    color: #303030;
    padding: 14px;
    border-bottom: 1px solid #ccc;
}
.dropdown__item {
    position: relative;
    color: #303030;
    width: 100%;
    padding: 14px;
    border-bottom: 1px solid #ccc;
    display: block;
    opacity: 1;
}
.detail-item:hover a,
.dropdown__item:hover {
    color: #f49002;
}
.dropdown__item:hover .item-right {
    transform-origin: center;
    transform: translateY(3px);
    rotate: -180deg;
}
.dog-cata::after,
.cat-cata::after,
.service-cata::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 20px;
    top: 14px;
    left: 0;
    background: transparent;
}
.delivery-dropdown__item:hover .delivery-type__list,
.services-dropdown__item:hover .services-type__list,
.health-dropdown__item:hover .health-type__list,
.supplies-dropdown__item:hover .supplies-type__list,
.treats-dropdown__item:hover .treats-type__list,
.food-dropdown__item:hover .food-type__list {
    left: 100%;
    top: -2px;
    display: block;
}
.delivery-type__list,
.services-type__list {
    min-height: 100px;
}

.delivery-dropdown__item:hover .delivery-type__list,
.services-dropdown__item:hover .services-type__list,
.health-dropdown__item:hover .health-type__list,
.supplies-dropdown__item:hover .supplies-type__list,
.treats-dropdown__item:hover .treats-type__list,
.food-dropdown__item:hover .food-type__list {
    display: block;
}

/* ===== Top Seller ====== */
.top-seller {
    margin: 20px auto;
    margin-top: 50px;
}
.top-seller__body {
    height: 480px;
    padding: 15px;
    background: #272c2d;
}
.top-seller__top {
    display: flex;
    align-items: center;
}
.top-seller__count {
    display: flex;
    align-items: center;
}
.top-seller__count-box {
    width: 39px;
    height: 39px;
    border-radius: 4px;
    background: yellow;
    margin-left: 10px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 500;
    padding-top: 5px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.top-seller__tittle {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 550;
}
.seller-wrap {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    column-gap: 10px;
}
.seller-item {
    height: 330px;
    padding: 8px;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}
.seller-item:hover .seller-img {
    scale: 1.07;
}
.seller-img {
    display: block;
    width: 100px;
    height: 180px;
    margin: 0 auto;
    object-fit: cover;
    transition: 0.25s;
}
.seller-item__info {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.seller-name {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.25px;
}
.seller-price {
    font-weight: 600;
    font-size: 1.6rem;
}
.seller-cart {
    position: relative;
    z-index: 1;
    margin-top: 4px;
    height: 36px;
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 5px;
    border: 1px solid #060409;
    background: #fff;
    transition: 0.25s;
}
.seller-cart p {
    position: relative;
    z-index: 2;
    font-weight: 500;
    transition: 0.5s;
}
.seller-cart:hover p {
    color: #fff;
}
.seller-cart::after {
    display: inline-block;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 36px;
    background: #060409;
    transition: 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),
        -webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.seller-cart:hover::after {
    left: 0;
    width: 100%;
}
.top-seller__action {
    margin-top: 10px;
    text-align: center;
}
.seeall-btn {
    margin-top: 10px;
    display: inline-block;
    width: 324px;
    height: 42px;
    font-weight: 600;
    background: #fff;
    color: #060606;
    line-height: 42px;
}
.seeall-btn:hover {
    opacity: 0.9;
}
/* ===== Feature ====== */
.features {
    margin-top: 20px;
    margin-bottom: 20px;
}
.features-container {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
    /* border-top: 1px solid #000;
    border-bottom: 1px solid #000; */
}
.feature {
    text-align: center;
    padding: 15px;
    width: 30%;
}
.feature:not(:first-child) {
    border-left: 1px solid #000;
}
.feature__icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}
.feature__icon-shipping {
    background-color: #e0f7fa;
}
.feature__icon-certificate {
    background-color: #fff3e0;
}
.feature__icon-gift {
    background-color: #fce4ec;
}
.feature__icon i {
    font-size: 40px;
    color: #666;
}
.feature__tittle {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 8px 0;
}
.feature__desc {
    font-size: 1.4rem;
    font-weight: 500;
    color: #666;
    margin: 0;
}
/* ======= New Product ====== */
.new-product {
    padding: 50px;
    margin-top: 30px;
}
.new-product__tittle {
    text-align: center;
    color: #060409;
    font-family: "Skinlax Bold", sans-serif;
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 80px;
}
.new-product__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 10px;
}
.new-product__item {
    position: relative;
    width: 100%;
    height: 392px;
    cursor: pointer;
}
.new-item__price--new {
    font-weight: 500;
}
.new-item__label {
    position: absolute;
    top: 0;
    left: 0;
    width: 45px;
    height: 45px;
    font-weight: 600;
    background: #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.new-item__img {
    width: 90%;
    height: 90%;
    object-fit: cover;
}
.new-item__info {
    margin-top: 20px;
}
.new-item__name {
    font-size: 1.6rem;
    -webkit-line-clamp: var(--line-clamp, 1);
}
.new-item__price {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 12px;
}
.new-item__price--old {
    text-decoration-line: line-through;
    color: #7a7a7a;
}
.new-product__btn {
    margin: 0 auto;
    display: block;
    width: 200px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: #fff;
    background: #333;
}
.new-product__btn:hover {
    opacity: 0.9;
}
/* ===== Banner ad ====== */
.ad-img {
    width: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: 0.5s ease;
}
.ad-img:hover {
    scale: 0.95;
}
/* ===== Food For Dog ======= */
.dog-food {
    margin: 80px 0;
}
.food-tittle {
    margin: 0 auto;
    width: 798px;
    height: 46px;
    line-height: 1.3;
    font-size: 2.6rem;
    font-weight: 600;
    text-align: center;
    color: #060409;
    border-radius: 99px;
    cursor: pointer;
    margin-bottom: 50px;
}
.food-content {
    margin-top: 30px;
}
.food-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
}
.product-list__item,
.food-item {
    width: 100%;
    height: 474px;
}
.product-item__thumbnail,
.food-item__thumbnail {
    position: relative;
    /* padding-bottom: 20px; */
}
.product-item__img,
.food-item__img {
    width: 295px;
    height: 295px;
    object-fit: cover;
    transition: 0.3s ease;
}
.product-item__name,
.food-item__name {
    margin-top: 20px;
    -webkit-line-clamp: var(--line-clamp, 1);
    font-size: 1.6rem;
}
.product-item__price,
.food-item__price {
    display: block;
    margin-top: 12px;
    font-size: 2rem;
    font-weight: 600;
}
.food-item__bag {
    scale: 0.8;
}
.product-item__btn,
.food-item__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-top: 20px;
    margin-left: 17px;
    width: 263px;
    height: 40px;
    font-size: 1.6rem;
    font-weight: 550;
    line-height: 100%;
    border-radius: 99px;
    outline: none;
    border: 1px solid #333;
    background: #fff;
    color: #000;
}
.product-item__thumbnail:hover .product-item__img,
.food-item__thumbnail:hover .food-item__img {
    scale: 0.94;
}
.product-item__thumbnail:hover,
.food-item__thumbnail:hover {
    box-shadow: 0px 0px 6px 0px rgba(50, 50, 93, 0.1),
        1px 1px 5px rgba(0, 0, 0, 0.02);
}
.product-item__thumbnail:hover .product-item__cta,
.food-item__thumbnail:hover .food-item__cta {
    opacity: 1;
    transform: translate(-50%, -24px);
}
.product-item__cta,
.food-item__cta {
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    opacity: 0;
    width: 90px;
    height: 45px;
    display: flex;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.product-item__cta .product-item__icon:first-child,
.food-item__cta .food-item__icon:first-child {
    border-right: 1px solid #eee;
}
.product-item__icon,
.food-item__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    transition: 0.4s ease;
}
.product-item__icon:hover,
.food-item__icon:hover {
    color: #fff;
    background: #333;
}
.product-item__action-name,
.food-item__action-name {
    position: absolute;
    text-align: center;
    min-width: 80px;
    height: 30px;
    padding: 5px;
    font-size: 1.3rem;
    color: #fff !important;
    white-space: nowrap;
    background: #333;
    border-radius: 5px;
    transform: translateY(-30px);
    opacity: 0;
    transition: 0.4s ease;
}
.product-item__action-name::before,
.food-item__action-name::before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 14px solid #333;
    border-bottom: 12px solid transparent;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    z-index: -1;
}
.product-item__icon:hover .product-item__action-name,
.food-item__icon:hover .food-item__action-name {
    opacity: 1;
    transform: translateY(-46px);
}
.view-product-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease;
}
.overlay {
    background: rgba(0, 0, 0, 0.25);
}
.view-product-modal:target {
    visibility: visible;
    opacity: 1;
}

/* ======== View ======= */
.view-modal {
    position: relative;
    width: 1020px;
    height: 615px;
    padding: 20px 50px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* animation: appear .5s .5s; */
}
/* @keyframes appear{
    from {
        top: -100px;
        opacity: 0;
    }
    to {
        top: 0;
        opacity: 1;
    }
} */
.view-modal__close-btn {
    position: absolute;
    top: -10px;
    right: -7px;
    color: #fff;
    text-decoration: none;
    scale: 2.6;
}
.view-modal__close-btn::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    background: #333;
    z-index: -1;
}
.view-product__close {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: default;
}
.view-modal__image {
    width: 49%;
    margin-left: 20px;
}
.view-product__img {
    width: 420px;
    height: 420px;
    object-fit: cover;
}
.view-product__list-img {
    margin-left: -30px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    /* justify-content: space-between; */
}
.view-product__list-img i {
    font-size: 4rem;
    cursor: pointer;
}
.view-product__list-img i:last-child {
    rotate: 180deg;
}
.view-product__img--small {
    width: 120px;
    height: 120px;
    object-fit: cover;
    cursor: pointer;
    /* margin: 0 20px; */
}
.view-modal__content {
    width: 40%;
    height: 100%;
}
.view-product__tittle {
    font-size: 2rem;
    line-height: 30px;
    margin-bottom: 50px;
}
.view-product__info {
    font-size: 1.6rem;
    line-height: 26px;
    margin-bottom: 20px;
}
.view-product__price {
    font-size: 2rem;
}
.view-product__box-size {
    margin-top: 40px;
    font-size: 1.6rem;
}
.box-size__row {
    margin-top: 10px;
    display: flex;
    gap: 8px;
}
.box-size__item {
    width: 68px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border: 1px solid #333;
    background: #fff;
    overflow: hidden;
}
.sellout {
    position: relative;
    opacity: 0.3;
}
.sellout::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 70px;
    height: 1px;
    background: red;
    rotate: -45deg;
}
.view-product__quantity {
    margin-top: 24px;
}
.quantity-cta {
    margin-top: 5px;
    position: relative;
    width: 150px;
    height: 46px;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 99px;
    border: 1px solid #333;
}
.quantity-btn {
    position: absolute;
    font-size: 2rem;
    width: 52px;
    height: 45px;
    background: transparent;
    border-radius: 99px;
}
.quantity-btn.minus {
    left: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.quantity-btn.plus {
    right: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.quantity-cta input {
    position: absolute;
    width: 44px;
    height: 44px;
    border: none;
    font-size: 2rem;
    background: #fff;
    padding-left: 13px;
    left: 50%;
    transform: translateX(-50%);
}
.view-product__totalprice {
    font-size: 1.7rem;
}
.view-product__totalprice strong {
    font-weight: 600;
}
.view-product__cta {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.view-product__addcart {
    width: 300px;
    height: 50px;
    padding: 13px 15px;
    background: #000;
    color: #fff;
    font-size: 1.7rem;
    font-weight: 600;
    border-radius: 99px;
}
.view-product__love {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    font-size: 2rem;
    border: 1px solid #666;
}
/* ====== Feedback ====== */
.feedback {
    margin-top: 50px;
}
.feedback__heading {
    text-align: center;
    margin-bottom: 28px;
}
.feedback__tittle {
    font-size: 3.6rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.feedback__desc {
    color: #7a7a7a;
}
.feedback__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 10px;
}
.feedback-item {
    height: 270px;
    padding: 24px 16px;
    background: #fff7ec;
    border-radius: 16px;
}
.feedback-item__vote {
    display: flex;
    gap: 10px;
    font-size: 2rem;
    color: #fdcc7f;
}
.feedback-item__content {
    margin-bottom: auto;
    margin-top: 16px;
    line-height: 1.5;
}
.feedback-item__author {
    margin-top: 20px;
    display: flex;
    align-items: center;
}
.feedback-author__name {
    margin: 0 5px 0 30px;
    font-size: 1.6rem;
    font-weight: 600;
}
.feedback-author__avatar {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
}
/* ======= Footer ====== */
.grid-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.grid__full-width {
    width: 100%;
}

.grid__column {
    /* display: block;
    padding-left: 5px;
    padding-right: 5px;
    width: 24%;
    line-height: 2rem;
    margin-left: 12px; */
}
.grid__coluim-link {
    display: inline-block;
}
.footer {
    margin-top: 50px;
    display: grid;
    border-top: 4px solid #060409;
    padding-top: 10px;
}
.footer-logo {
    margin-left: -5px;
}
.footer-item {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 0;
}
.footer-introduce {
    max-width: 100%;
}
.footer-item span {
    font-size: 1.4rem;
}
.footer-item__link,
.footer-heading,
.footer-introduce {
    font-weight: 400;
    font-size: 1.4rem;
}
.footer-list .footer-item {
    cursor: pointer;
}

.footer-heading {
    text-transform: uppercase;
    color: var(--text-color);
    margin-bottom: 16px;
}

.footer-heading__strong {
    display: inline-block;
    padding-left: 0;
    font-weight: 700;
}

.footer-item_nolist {
    display: flex;
    text-decoration: none;
    font-size: 1.4rem;
    color: var(--text-color);
    align-items: center;
    margin-top: 5px;
}

.footer-nolist {
    padding-left: 0;
    list-style: none;
}

.footer-item__link-icon,
.footer-item__icon {
    font-size: 2rem;
}

.footer-logo__link {
    margin-bottom: 5px;
}
.footer-item__link {
    margin-right: 10px;
}
.footer-item__link-icon {
    display: inline-block;
    border: 1px solid black;
    padding: 6px 6px;
    border-radius: 4px;
    transition: background-color 0.4s;
}

.footer-item__link-icon:hover {
    background-color: var(--black-color);
    color: white;
    cursor: pointer;
}

.footer-last {
    display: block;
    height: 100px;
    border-top: 1px solid var(--text-color);
    padding: 12px 0;
    height: 50px;
    margin-top: 25px;
}

.text-algin {
    text-align: center;
}

.footer-last-heading {
    display: inline-block;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    list-style: none;
    margin-top: 2px;
    margin-bottom: 0;
}

.footer-last-heading_nolist {
    list-style: none;
}
/* ====== Login ======= */
.breadcrumb-bar {
    width: 100%;
    background-color: #f6f6f6;
    padding: 10px 100px;
    border: none;
    text-align: left;
}
.breadcrumb-nav a {
    color: #007bff;
    text-decoration: none;
}
.breadcrumb-nav a:hover {
    text-decoration: underline;
}
.breadcrumb-nav span {
    color: #333;
}
/* Form Container */
.form-container {
    width: 100%;
    max-width: 450px;
    margin: auto;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: none; /* Loại bỏ bất kỳ hiệu ứng bóng đổ nào */
}

/* Form Title */
.form-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Login Link */
.login-link {
    text-align: center;
    font-size: 14px;
    margin-bottom: 20px;
}

.login-link a {
    color: #007bff;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Forgot Password */
.forgot-password {
    text-align: right;
    font-size: 12px;
    margin-bottom: 20px;
}

.forgot-password a {
    color: #007bff;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}

/* Form Group */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-group input::placeholder {
    color: #aaa;
}

.form-group input:focus {
    border-color: #007bff;
    outline: none;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #000;
    color: #fff;
    border: none;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #333;
}
/* ====== Create Account ========*/
.breadcrumb-nav a {
    color: #007bff;
    text-decoration: none;
}
.breadcrumb-nav a:hover {
    text-decoration: underline;
}
.breadcrumb-nav span {
    color: #333;
}
/* Form Container */
.form-container {
    background-color: #fff;
    width: 100%;
    max-width: 500px;
    margin: 30px auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: none;
    text-align: center; /* Center content */
}

/* Form Title */
.form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Login Link */
.login-link {
    font-size: 14px;
    margin-bottom: 20px;
}

.login-link a {
    color: #007bff;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Info Title */
.info-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Form Group */
.form-group {
    margin-bottom: 20px;
    text-align: left; /* Align labels to the left */
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-group input::placeholder {
    color: #aaa;
}

.form-group input:focus {
    border-color: #007bff;
    outline: none;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #000;
    color: #fff;
    border: none;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #333;
}

