
* {
    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;
}
/* User box */
.user-box {
    position: absolute;
    z-index: 10;
    top: 58px;
    width: 250px;
    /* height: 200px; */
    min-width: 205px;
    padding: 24px;
    border-radius: 2px;
    background: #fff;
    color: #000;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}
.header__account:hover .user-box {
    visibility: visible;
    opacity: 1;
}
.user-box__heading {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2e2e2e;
    margin-bottom: 20px;
}
.user-box__item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-weight: 400;
}
.user-box__content .user-box__item:last-child {
    margin-bottom: 0;
}

/* Cart hover */
.cart-box {
    position: absolute;
    top: 60px;
    right: 0;
    width: 420px;
    height: 50vh;
    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;
    font-size: 1.5rem;
    text-align: center;
    padding: 0 0 10px;
    border-bottom: 1px solid #e7e7e7;
}
.cart-box__items {
    max-height: 29vh;
    overflow-y: auto;
}
.cart-box__item {
    position: relative;
    padding: 12px;
    display: flex;
    align-items: center;
    border-bottom: 1px dotted #e7e7e7;
}
.cart-box__body {
    padding-left: 15px;
}
.cart-box__name {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    /* padding-right: 35px; */
    text-transform: uppercase;
    color: #252a2b;
}
.cart-box-item__img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 1px solid #ccc;
}
.cart-box__variant {
    margin-top: 10px;
    display: block;
    color: #677279;
    font-size: 1.2rem;
    font-weight: 400;
    padding-bottom: 10px;
}
.cart-box__body {
    color: red;
}
.cart-box__bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-box__price {
    color: #000;
    font-size: 1.3rem;
}
.cart-box-item__qty {
    display: flex;
    align-items: center;
}
.cart-box__qty {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* font-size: 1.5rem; */
    text-align: center;
    border-radius: 50%;
    background: rgba(107, 68, 51, 0.04);
    border: 1px solid rgba(107, 68, 51, 0.06);
}
.num-qty {
    margin: 0 14px;
    font-size: 1.5rem;
    color: #000;
}

.cart-box__close {
    position: absolute;
    right: 0;
    top: 10px;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 20px;
    background: #f4f6fb;
    color: #252a2b;
}
.cart-box__total {
    padding: 0 12px;
    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 {
    margin: 0 14px;
    margin-top: 16px;
    width: 94%;
    border: none;
    outline: none;
    height: 36px;
    line-height: 36px;
    background: #060409;
    color: #fff;
}
/* Breadcrumb */
.breadcrumb {
    background: #f6f6f6;
    height: 32px;
    padding: 8px 0;
}
.breadcrumb-list {
    list-style: none;
    display: flex;
    gap: 8px;
    font-size: 1.4rem;
}
.breadcrumb-list .breadcrumb-item:first-child {
    color: #5495ee;
}
.breadcrumb-item.active {
    color: #b0b0b0;
}
/* ======== CART ======= */
.cart {
    margin-top: 20px;
}
.cart-tittle {
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 600;
    background: #f7f8f9;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}
.cart-body {
    display: flex;
}
.cart-items {
    width: 70%;
}
.cart-item {
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cart-item a:hover {
    color: #333;
}
.cart-item-info {
    width: 600px;
    display: flex;
    flex-direction: column;
}
.cart-item-info span {
    margin-top: 20px;
    color: #7c7979;
}
.cart-item-name {
    line-height: 20px;
    max-width: 550px;
}
.cart-item-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}
.cart-item-price-qty {
    display: flex;
    align-items: center;
    gap: 20px;
}
.cart-item-price {
    font-weight: 500;
    color: #155bf6;
    width: 80px;
}
.cart-qty {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 120px;
    height: 40px;
    overflow: hidden;
}
.qty-btn {
    width: 30px;
    height: 100%;
    background-color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    user-select: none;
}
.qty-btn:hover {
    background-color: #e0e0e0;
}
.qty-input {
    width: 60px;
    height: 100%;
    text-align: center;
    border: none;
    outline: none;
    font-size: 16px;
}
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.cart-checkout {
    width: 360px;
    background: #f7f7f7;
    border: 3px;
    padding: 20px;
}
.cart-checkout-heading {
    color: #000;
    font-size: 1.8rem;
    text-transform: uppercase;
}
.cart-checkout-row {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
}
.cart-checkout__date,
.cart-checkout__time {
    margin: 5px 0;
    display: flex;
    flex-direction: column;
}
.cart-checkout__time select,
.cart-checkout__date input {
    margin: 6px 0;
    /* padding-left: 10px; */
    height: 30px;
}
.cart-total {
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
}
.cart-total-label {
    text-transform: uppercase;
}
.cart-total-price {
    font-weight: 600;
    color: #155bf6;
}
.cart-checkout-btn {
    margin-top: 20px;
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 1.6rem;
    border-radius: 5px;
    color: #fff;
    background: #060409;
}
.cart-note {
    display: flex;
    flex-direction: column;
}
.cart-note label {
    font-size: 1.6rem;
    margin-bottom: 10px;
}
.cart-note textarea {
    width: calc(100% - 77px);
    height: 80px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    font-size: 1.4rem;
    outline: none;
    resize: none;
}
/* ======= Related Products ======= */
.related-products__tittle {
    margin-top: 50px;
    color: #080808;
    font-size: 3rem;
    font-weight: 550;
}
.related-content {
    margin-top: 30px;
}
.related-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
}
.related-item {
    width: 100%;
    height: 474px;
}

.related-item__thumbnail {
    position: relative;
    /* padding-bottom: 20px; */
}
.related-item__img {
    width: 295px;
    height: 295px;
    object-fit: cover;
    transition: 0.3s ease;
}
.related-item__name {
    margin-top: 20px;
    -webkit-line-clamp: var(--line-clamp, 1);
    font-size: 1.6rem;
}
.related-item__price {
    display: block;
    margin-top: 12px;
    font-size: 2rem;
    font-weight: 600;
}
.related-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;
}
.related-item__thumbnail:hover .related-item__img {
    scale: 0.94;
}
.related-item__thumbnail:hover {
    box-shadow: 0px 0px 6px 0px rgba(50, 50, 93, 0.1),
        1px 1px 5px rgba(0, 0, 0, 0.02);
}
.related-item__thumbnail:hover .related-item__cta {
    opacity: 1;
    transform: translate(-50%, -24px);
}
.related-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;
}

.related-item__cta .related-item__icon:first-child {
    border-right: 1px solid #eee;
}
.related-item__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    transition: 0.4s ease;
}
.related-item__icon:hover {
    color: #fff;
    background: #333;
}
.related-item__action-name {
    position: absolute;
    text-align: center;
    min-width: 80px;
    height: 30px;
    padding: 9px;
    font-size: 1.3rem;
    color: #fff !important;
    white-space: nowrap;
    background: #333;
    border-radius: 5px;
    transform: translateY(-30px);
    opacity: 0;
    transition: 0.4s ease;
}
.related-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;
}
.related-item__icon:hover .related-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;
}
.view-product__list-img i:last-child {
    rotate: 180deg;
}
.view-product__img--small {
    width: 120px;
    height: 120px;
    object-fit: cover;
    /* 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;
    overflow: hidden;
}
.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: 10px;
    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__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;
}
/* ======= 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;
}

