.marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
}

.marquee-content {
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    display: inline-block;
    padding: 0 60px;
}

.marquee-item img {
    max-width: 140px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.footer-content h2 {
    font-size: 20px;
    text-transform: uppercase;
    padding: 20px 0;
}

.footer-content ul {
    margin-left: 17px;
    padding-right: 25px;
}

.footer-content ul li {
    /* list-style: none; */
    margin: 8px 0;
    font-size: 15px;
}

.item-text-underline {
    text-decoration: none;
    background-image: var(--color-1);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 0% 1px;
    transition: background-size .3s ease-in-out;
}

.item-text-underline:hover {
    background-size: 100% 1px;
    color: inherit;
}

.footer-bottom .button-group {
    display: flex;
    gap: 16px;
}

.button-trigger {
    font-size: 16px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 3px;
}

.button-trigger svg {
    width: 15px;
    height: 15px;
}

.footer-bottom .social ul li {
    list-style: none;
}

.footer-bottom .social ul {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 32px;
    margin-top: 40px;
}

footer {
    padding: 60px 0 25px;
}

.product-right .brand {
    color: #8e8e8e;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.product-right .product-name {
    margin: 4px 0;
    font-size: 18px;
    text-transform: uppercase;
}

.product-right .price-wrap {
    display: flex;
    gap: 15px;
}

.product-right .price-wrap .old-price {
    color: #888;
}

.product-right .price {
    font-size: 16px;
    letter-spacing: 1.3px;
    margin-top: 10px;
}

.product-option {
    margin-top: 20px;
}

.product-option-title {
    margin-bottom: 5px;
}

.product-option-select {
    display: flex;
    gap: 6px;
}

.product-option-select .item {
    width: 50px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
    transition: .3s;
}

.product-option-select .item.active {
    border: 1px solid #000;
}

.color .product-option-select .item {
    width: 40px;
    border-radius: 50%;
}

.color .product-option-select .item span {
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.size-guide {
    text-decoration: underline;
    font-size: 12px;
    margin: 30px 0;
    cursor: pointer;
}

.add-cart-ajax {
    padding: 16px 24px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    max-width: 500px;
    color: #FFF;
    background-color: #212121;
    font-size: 14px;
    letter-spacing: 2px;
    gap: 10px;
    width: 100%;
    align-items: center;
}

.product-body {
    padding: 30px 60px;
    overflow-y: auto;
    height: calc(100% - 67px);
}

.product-body .img-wrap {
    margin-bottom: 10px;
}

.product-body .see-detail {
    text-decoration: underline;
    display: inline-block;
}

.product-body .add-cart-ajax {
    margin-bottom: 30px;
}

.modal-overlayyy {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	z-index: 101;
	justify-content: center;
	align-items: center;
	/* display: flex; */
}

.modal-overlayyy .modal-content {
	background: #fff;
	padding: 0;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	max-width: 980px;
	width: 90%;
	animation: fadeIn 0.3s ease;
	position: relative;
	overflow: hidden;
}

.modal-overlayyy .modal-content form {
    padding: 25px;
}

.modal-overlayyy .form-group {
    margin-bottom: 15px;
}

.modal-overlayyy .submit {
    font-size: 16px;
    margin: 0 auto;
    display: block;
    font-weight: 500;
    border-radius: 5px;
    padding: 10px 30px;
    background: #000;
    color: #FFF;
    transition: .3s;
}

.modal-overlayyy .close-btn-modal {
	padding: 0;
	position: absolute;
	top: 10px;
	right: 10px;
}

.modal-overlayyy .close-btn-modal svg {
	width: 20px;
	height: 20px;
}

.modal-overlayyy .size-wrap {
    max-height: 400px;
    overflow-y: auto;
}

#modal-size-guide .modal-content {
    padding: 50px;
}

.modal-overlayyy .size-wrap h2 {
    font-size: 22px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

@keyframes fadeIn {
	from {
		transform: translateY(-20px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.search-wrap{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
    background-color: #FFF;
    transition: transform 1s cubic-bezier(.19,1,.22,1),height 1s ease;
    height: 100vh;
    z-index: 21;
    padding: 60px 15px 20px;
    text-align: center;
}

.search-wrap.active{
    transform: translateY(0%);
}

.form-search {
    max-width: 700px;
    margin: 0 auto;
}

.form-search .input-wrap {
    display: grid;
    grid-template-columns: auto 48px;
}

.form-search .input-wrap svg {
    width: 20px;
    height: 20px;
}

.form-search .input-search {
    position: relative;
}

.form-search .input-search input{
    height: 48px;
    width: 100%;
    border: 1px solid #d6d6d6;
    padding: 5px 20px 5px 40px;
    font-size: 16px;
}

.form-search .input-search svg {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}

.form-search .close-form-search {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.button-search-wrap {
    margin-top: 30px;
}

.button-search-wrap button {
    font-size: 16px;
}

.language-wrap {
    padding: 24px 32px;
}

.language-wrap button {
    padding: 8px 16px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 16px;
    position: relative;
    margin-bottom: 10px;
}

.language-wrap button.active {
    background-color: rgba(45, 45, 45, .05);
}

.language-wrap button.active:after {
    content: "";
    display: block;
    border-style: solid;
    border-width: 0 0 1px 1px;
    width: 10px;
    height: 5px;
    transform: rotate(-45deg);
    margin-top: 3px;
}

.commit {
    padding: 70px 0;
}

.commit .item {
    text-align: center;
}

.commit .item img {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.commit .item .content h3 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 4px;
}

.commit .item .content p {
    font-size: 15px;
}

@media (max-width: 768px) {
    .commit .item {
        text-align: left;
        display: grid;
        grid-template-columns: 36px auto;
        gap: 12px;
        margin-bottom: 24px;
    }

    .commit .item img {
        width: 36px;
        height: 36px;
        margin-bottom: 0px;
    }

    .commit {
        padding: 35px 0 15px;
    }

    .commit .item .content h3 {
        font-size: 16px;
    }

    .marquee-item img {
        max-width: 180px;
    }

    .marquee-item {
        padding: 0px 15px;
    }

    .marquee-content {
        animation: marquee 5s linear infinite;
    }

    .marquee-container {
        padding: 20px 0;
    }

    footer {
        padding: 20px 0 25px;
    }

    .footer-content h2 {
        font-size: 18px;
        padding: 15px 0;
    }

    #modal-size-guide .modal-content {
        padding: 40px 25px;
    }
}