:root {
    /* Font Variables */
    --font-cormorant: "Cormorant", serif;
    --font-poppins: "Poppins", sans-serif;
    --font-montserrat: "Montserrat", sans-serif;

    /* Color Variables */
    --bg-header-top: #ebebeb;
    --bg-footer: #fbfbfb;
    --bg-copyright: #ebebeb;
    --bg-body: #ffffff;
    --bg-menu: #ffffff;
    --bg-white: #ffffff;
    --color-pink: #FF888A;
    --color-red: #e60023;
    --color-body: #343a40;
    --color-brown: #92161e;
    --color-white: #ffffff;
    --color-white-secondary: #e2e2e2;
    --color-black: #232323;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--color-pink) #f1f1f1;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-pink);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #4facfe, #00f2fe);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #43e97b, #38f9d7);
}

body {
    font-family: var(--font-cormorant);
    background-color: var(--bg-body);
    /* background-image: url(../images/bg-background.png);
    background-size: 1080px auto;
    background-position: center top; */
    color: var(--color-black);
    font-size: 1rem;
    top: 0 !important;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}
.container-fluid {
    max-width: 1330px;
    margin: 0 auto;
    position: relative;
}

a {
    color: var(--color-black);
    outline: 0 none;
    text-decoration: none;
    -moz-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    -webkit-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}

a:hover,
a:focus,
a:active {
    color: var(--color-black);
    text-decoration: none;
    outline: 0 none;
}

img {
    border-style: none;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

hr {
    clear: both;
}

section,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
summary {
    display: block;
}

address {
    font-style: italic;
}

table {
    background-color: transparent;
    width: 100%;
    border-spacing: 0;
}

table thead th {
    color: #333;
}

table tr td {
    border-top: 1px solid #dddddd;
}

table tr td,
table tr th {
    padding: 10px;
}

table tr td:first-child,
table tr th:first-child {
    padding-left: 0px;
}

table tr td:last-child,
table tr th:last-child {
    padding-right: 0px;
}

@media only screen and (max-width: 360px) {
    table tr td {
        word-break: break-all;
    }
}

p,
address,
pre,
hr,
ul,
ol,
dl,
dd,
table {
    margin-bottom: 15px;
}

.grecaptcha-badge {
    display: none !important;
}

/** Line-clamp **/
.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/** Maintenance **/
.maintenance {
    width: 100%;
    background-color: #ffcc00;
    color: #000;
    text-align: center;
    padding: 10px 0px;
    z-index: 10000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 0.85rem;
}

/** Header **/
.header {
    position: relative;
    background-color: #000000ed;
    min-height: 38px;
}

.slogan_header p {
    font-family: var(--font-poppins);
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 1px;
    color: var(--color-white);
    font-size: 11px;
    text-align: center;
    margin: 0;
    padding: 11px 0;
}

/** MENU STYLES **/
.menu {
    background-color: var(--bg-menu);
    position: relative;
    z-index: 100;
    border-bottom: 1px solid #e0e0e0;
    padding: 0;
}

.menu-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
}

.menu-logo {
    flex: 1;
    text-align: center;
    display: flex;
    justify-content: center;
}

.menu-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-logo img {
    width: 100%;
}

.menu-search {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.menu-search:hover {
    color: var(--color-pink);
}

/* Menu Sidebar */
.menu-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background-color: #fff;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.menu-sidebar.active {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #e0e0e0;
    flex-shrink: 0;
}

.sidebar-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: #333;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.sidebar-close:hover {
    color: var(--color-pink);
}

.sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-menu a {
    display: block;
    padding: 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sidebar-menu a:hover {
    background-color: #f9f9f9;
    color: var(--color-pink);
    padding-left: 20px;
}

/* Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Category Modal */
.category-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60vh;
    background-color: #fff;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: none;
    overflow: hidden;
    padding: 0 90px;
}

.category-modal.active {
    display: flex;
    transform: translateX(0);
}

.category-modal-content {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.category-modal-close {
    position: absolute;
    top: 16px;
    left: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-modal-left {
    width: 25%;
    border-right: 1px solid #e0e0e0;
    overflow-y: auto;
    padding-top: 60px;
    background-color: #fff;
}


.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    border-bottom: 1px solid #f0f0f0;
}

.category-item a {
    font-family: var(--font-poppins);
    display: block;
    padding: 16px;
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-item a:hover,
.category-item.active a {
    background-color: #f5f5f5;
    color: var(--color-pink);
    padding-left: 20px;
}

.category-modal-middle {
    width: 45%;
    border-right: 1px solid #e0e0e0;
    overflow-y: auto;
    padding-top: 60px;
    background-color: #fff;
}

.modal-middle-header {
    padding: 16px;
    border-bottom: 1px solid #e0e0e0;
}

.back-button {
    background: none;
    border: none;
    cursor: pointer;
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.back-button:hover {
    color: var(--color-pink);
}

.modal-middle-content {
    padding: 0;
}

.modal-middle-content p {
    padding: 16px;
    color: #909090;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}

.modal-middle-content .sub-item {
    padding: 12px 16px;
    color: #000000;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.modal-middle-content .sub-item:hover {
    background-color: #f9f9f9;
    color: var(--color-pink);
    padding-left: 20px;
}

.modal-middle-content .sub-item i {
    color: #bbb;
    font-size: 12px;
}

/* Bestseller Products in Modal */
.bestseller-title {
    padding: 16px;
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
}

.bestseller-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 20px;
}

.bestseller-product-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s ease;
}

.bestseller-product-item:hover {
    transform: translateY(-5px);
}

.bestseller-product-item a {
    text-decoration: none;
    color: inherit;
}

.bestseller-product-image {
    width: 100%;
    overflow: hidden;
    margin-bottom: 10px;
}

.bestseller-product-image img {
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bestseller-product-item:hover .bestseller-product-image img {
    transform: scale(1.1);
}

.bestseller-product-name {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

.bestseller-product-item:hover .bestseller-product-name {
    color: var(--color-pink);
}

.category-modal-right {
    width: 30%;
    background-color: #f9f9f9;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    scrollbar-width: none;
}

.category-modal-right::-webkit-scrollbar {
    display: none;
}

.modal-right-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
}

.modal-right-content img {
    height: auto;
    object-fit: cover;
}

.category-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.category-modal-overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Sticky Menu (Desktop) */
.menu-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 99;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    display: none;
}

.menu-sticky.show {
    transform: translateY(0);
}

.menu-sticky-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.menu-socials {
    display: flex;
    flex: 1;
    gap: 15px;
    flex-shrink: 0;
}

.menu-socials a {
    color: #333;
    font-size: 14px;
    transition: color 0.3s ease;
}

.menu-socials a:hover {
    color: var(--color-pink);
}

.menu-sticky-logo {
    flex: 1;
    text-align: center;
    display: flex;
    justify-content: center;
}

.menu-sticky-logo img {
    height: 40px;
    width: auto;
}

.menu-sticky-right {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    justify-content: end;
}

.menu-sticky-search {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 4px;
    padding: 0;
}

.menu-sticky-search .search-input {
    flex: 1;
    padding: 8px 12px;
    border: none;
    background: transparent;
    outline: none;
    font-size: 13px;
    min-width: 120px;
}

.menu-sticky-search .search-input::placeholder {
    color: #999;
}

.menu-sticky-search .search-btn {
    background: none;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    color: #333;
    font-size: 14px;
}

.menu-sticky-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.menu-sticky-icon:hover {
    color: var(--color-pink);
}

.menu-sticky-cart {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #e60023;
    color: #fff;
    font-size: 10px;
    padding: 2px 4px;
    border-radius: 10px;
    min-width: 16px;
    text-align: center;
    line-height: 1;
}

.menu-sticky-nav {
    background-color: #F5F5F282;
    border-bottom: 1px solid #E2E2E2;
}

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

.menu-sticky-items {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 30px;
    flex: 1;
}

.menu-sticky-items li a {
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.menu-sticky-items li a:hover {
    color: var(--color-pink);
}

.menu-sticky-items li a i {
    font-size: 11px;
}

.cart-label {
    color: #fff;
    background-color: #333;
    padding: 8px 16px;
    border-radius: 2px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

.cart-label:hover {
    background-color: var(--color-pink);
    color: #ffffff;
}

.nav-menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

.menu-style-one {
    padding: 10px 0;
}

.menu-style-two {
    padding: 10px 0;
    display: none;
}

.menu-style-two .menu-right {
    margin-left: 0px;
}

/** Profile menu **/
.menu__icon--user {
    position: relative;
    cursor: pointer;
    background-color: #f5f5f5;
    font-weight: bold;
    font-size: 16px;
    color: #333;
    justify-content: center;
    align-items: center;
}

.menu__icon--user .avatar-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #ccc;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

.dropdown-user-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    display: none;
    z-index: 9999;
}

.dropdown-user-menu li {
    list-style: none;
}

.dropdown-user-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s ease;
    font-size: 15px;
    font-weight: normal;
}

.dropdown-user-menu li a:hover {
    background-color: #f2f2f2;
}

.menu__icon--user:hover .dropdown-user-menu {
    display: block;
}

/* Home */
/* Slider show */
.slideshow {
    position: relative;
    z-index: 1;
}

.slider-item {
    position: relative;
    overflow: hidden;
    height: 650px;
}

.slider-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider Overlay */
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(118, 116, 116, 0.3) 0%,
        rgba(101, 98, 98, 0.1) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.slider-content {
    text-align: center;
    color: var(--color-white);
    animation: fadeInUp 0.8s ease-out;
}

.slider-subtitle {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.slider-title {
    font-family: var(--font-cormorant);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.slider-btn {
    font-family: var(--font-poppins);
    display: inline-block;
    padding: 14px 40px;
    background-color: #fff;
    color: var(--color-black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.slider-btn:hover {
    background-color: var(--color-pink);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-menu li {
    line-height: 1.2;
    margin-left: 20px;
}

.product-menu li a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #000000;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.product-menu li a:hover {
    background: #f8f8f8;
    color: #c72323;
}

.slide img {
    padding: 20px 0px;
    width: 850px;
    height: 400px;
    border-radius: 4px;
    display: block;
}


/** Banner Product Seller **/
.banner-product-seller {
    width: 100%;
}

.banner-product-seller-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.banner-product-seller-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(227, 227, 227, 0) 0%,
        rgba(252, 252, 252, 0.45) 45%,
        rgba(252, 252, 252, 0.85) 70%,
        #FFFFFF 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.banner-product-seller-content {
    text-align: center;
    position: relative;
    z-index: 3;
}

.banner-product-seller-title {
    font-size: 128px;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 4px;
    animation: fadeInScale 0.8s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/** Banner Home **/
.banner__home__section {
    padding: 100px 0;
    width: 100%;
    height: 800px;
    display: flex;
    overflow: hidden;
}

.banner-home-image-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.banner-home-image-wrapper::-webkit-scrollbar {
    display: none;
}

.banner-home-image {
    object-fit: contain;
    object-position: center;
    animation: zoomInSlow 1.2s ease-out;
    will-change: transform;
    display: block;
    flex-shrink: 0;
    cursor: pointer;
}

@keyframes zoomInSlow {
    from {
        transform: scale(1.05);
        opacity: 0.8;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.banner-home-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.15) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.banner-home-content {
    text-align: center;
    position: relative;
    z-index: 3;
}

.banner-home-title {
    font-size: 20px;
    font-weight: 400;
    color: var(--color-white);
    text-transform: capitalize;
    letter-spacing: 3px;
    margin: 0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    font-family: var(--font-cormorant);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}
/* Social Home */

.scroll-circle {
    position: fixed;
    right: 20px;
    bottom: 140px;
    width: 50px;
    height: 50px;
    z-index: 999;
    cursor: pointer;
}

.scroll-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.scroll-circle .bg {
    fill: none;
    stroke: #e6e6e6;
    stroke-width: 5;
}

.scroll-circle .progress {
    fill: none;
    stroke: #007bff;
    stroke-width: 5;
    stroke-dasharray: 163.36;
    stroke-dashoffset: 163.36;
    transition: stroke-dashoffset 0.2s linear;
}

.scroll-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #007bff;
    font-size: 16px;
    pointer-events: none;
}

.contact-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 15px 0px;
    background: #fff;
}

.contact-btn {
    background: #ffd700;
    padding: 8px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

/** Footer **/
.footer {
    background-color: var(--bg-footer);
}

/* Footer Links Navigation - Top Row */
.footer-links-section {
    padding: 25px 0;
    border-top: 1px solid var(--color-white-secondary);
    border-bottom: 1px solid var(--color-white-secondary);
}

.footer-links-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px 40px;
}

.footer-links-navigation a {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-navigation a:hover {
    color: #666;
    text-decoration: underline;
}

.footer__boot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0 50px;
}

/* Newsletter Section - Middle */
.footer-newsletter {
    text-align: center;
}

.footer-newsletter h3 {
    font-family: var(--font-cormorant);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.newsletter-form {
    min-width: 386px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 0;
    overflow: hidden;
    background: white;
}

.input-group input {
    flex: 1;
    padding: 13px 20px;
    border: none;
    outline: none;
    font-family: var(--font-cormorant);
    font-size: 1rem;
    background: transparent;
}

.input-group input::placeholder {
    color: #8a8f93;
    font-family: var(--font-cormorant);
}

.input-group button {
    background: #333;
    color: white;
    border: none;
    padding: 13px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-group button:hover {
    background: #555;
}

/* Footer Bottom - Payment Methods and Brand */
.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
    padding-top: 20px;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.payment-methods img {
    transition: opacity 0.3s ease;
}

.payment-methods img:hover {
    opacity: 1;
}

.brand-name {
    margin-top: 15px;
}

.brand-name h2 {
    font-family: var(--font-cormorant);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-align: end;
}

/** Pagination **/
.pagination-home {
    margin-top: 30px;
}

.pagination-home .pagination .page-item .page-link {
    color: #555555;
    font-size: 0.875rem;
}

.pagination-home .pagination .page-item.active .page-link {
    color: #ffffff;
    background-color: #555555;
    border-color: #555555;
}

.pagination {
    display: flex;
    text-align: center;
    margin-top: 15px;
    list-style: none;
    justify-content: center;
}

.pagination a {
    display: inline-block;
    vertical-align: top;
    margin: 0px 2px 3px 2px;
    color: #333;
    background: #eee;
    border: 1px solid rgba(161, 161, 161, 0.4);
    font-size: 12px;
    padding: 3px 10px 5px 10px;
    border-radius: 2px;
    text-decoration: none;
}

.pagination a:hover {
    background: #ccc;
}

/** Button loading **/
.btn-loading {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-loading.is-loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading span {
    display: none;
}

.btn-loading.is-loading span {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-right-color: transparent;
    animation: spinLoading 0.75s linear infinite;
}

@keyframes spinLoading {
    100% {
        transform: rotate(360deg);
    }
}

/** Notify **/
.notyf {
    padding: 15px;
    z-index: 9999999999 !important;
}

.notyf__message {
    white-space: nowrap;
}

.notyf__toast {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 12px 20px 12px;
    font-size: 14px;
    font-weight: 500;
    max-width: 100%;
}

.notyf__ripple {
    opacity: 0.12;
}

.notyf__wrapper {
    padding: 4px 8px;
}

.notyf__dismiss-btn {
    background: transparent;
    opacity: 1;
    cursor: pointer;
    height: 26px;
    width: 26px;
    border-radius: 4px !important;
}

.notyf__dismiss {
    height: 26px;
    width: 26px;
    border-radius: 4px !important;
}

/** Heading title **/
.heading-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.heading-title h2 {
    font-size: 40px;
    font-weight: 500;
    color: #33383C;
    display: inline-block;
    letter-spacing: 1px;
}

.heading-title p {
    font-family: var(--font-poppins);
    margin-top: 15px;
    font-weight: 300;
    font-size: 20px;
    color: #646464;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/** Product Hot **/
.product-hot {
    padding: 150px 0px;
}

.product-hot-wrapper {
    position: relative;
}

/* Product Hot Grid Layout */
.product-hot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) ;
    gap: 5px;
    width: 100%;
}

/* Product Hot Navigation Styles for Carousel */
.product-hot-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
    padding-left: 16px;
    padding-right: 16px;
}

.product-hot-nav-btn {
    background: var(--color-white);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.product-hot-nav-btn:hover {
    background: var(--color-white);
    transform: scale(1.05);
}

.product-hot-prev {
    left: 10px;
}

.product-hot-next {
    right: 10px;
}

.product-hot-nav-btn i {
    font-size: 16px;
    color: #333;
}

/* Product Hot Item */
.product-hot-item {
    padding-top: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-hot-image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 100%;
}

.product-hot-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

/* Product Hot Badge */
.product-hot-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    color: #7B8487;
    font-size: 12px;
    font-weight: 400;
    z-index: 2;
    font-family: var(--font-poppins);
}

/* Product Hot Overlay */
.product-hot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   background: linear-gradient(
  180deg,
  rgba(239, 186, 186, 0) 0%,
  rgba(239, 186, 186, 0.65) 100%
);
    display: flex;
    align-items: end;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.product-hot-item:hover .product-hot-overlay {
    opacity: 1;
    visibility: visible;
}

/* Product Hot Button */
.product-hot-btn {
    background: #FFECEC;
    color: var(--text-color-black);
    border: none;
    padding: 10px 40px;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-poppins);
    display: inline-block;
    letter-spacing: 1.2px;
    opacity: 0;
    margin-bottom: 20px;
}

.product-hot-item:hover .product-hot-btn {
    opacity: 1;
}

.product-hot-item:hover{
    transform: translateY(-10px);
}
.product-hot-btn:hover {
    background: var(--color-white);
}

/* Product Hot Info */
.product-hot-info {
    padding: 35px 0 16px;
}

.product-hot-info h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    transition: transform 0.3s ease, color 0.3s ease;
}

.product-hot-info h3 a {
    color: #33383C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-hot-info h3 a:hover {
    color: var(--color-pink);
}
.product-hot-item:hover .product-hot-info h3 {
    transform: scale(1.2);
}

/* Product News */
.product-news {
    padding: 50px 0;
}

.product-news-wrapper {
    position: relative;
}
.product-news .container .heading-title{
    text-align: start !important;
}

.product-news-nav {
    position: absolute;
    bottom: -50px;
    right: 15%;
    display: flex;
    gap: 1px;
    z-index: 10;
    pointer-events: auto;
}

.product-news-nav-btn {
    background: none;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.product-news-nav-btn:hover {
    border-color: #232323;
    transform: scale(1.05);
}

.product-news-prev i,
.product-news-next i {
    font-size: 14px;
    color: #888;
}

.product-news-nav-btn:hover i {
    color: #232323;
}

/* Product News Item */
.product-news-item {
    padding-top: 10px;
    transition: all 0.3s ease;
}
.owl-product-news .owl-stage-outer {
    padding-left: 16px;
    padding-right: 16px;
}

.product-news-image-wrapper {
    position: relative;
}

.product-news-image-wrapper a {
    display: block;
}

.product-news-image-wrapper img {
    transition: transform 0.4s ease;
    height: auto;
}
.product-news-item:hover{
    transform: translateY(-10px);
}
/* Product News Info */
.product-news-info {
    text-align: center;
    margin-top: 28px;
}

.product-news-info h3 {
    font-size: 12px;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
    font-family: var(--font-poppins);
}

.product-news-info h3 a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-news-info h3 a:hover {
    color: var(--color-pink);
}

/* Product Hot One */
.product-hot-one {
    padding: 200px 0;
}
.title__product__hot_one {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-hot-one-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 600px;
}

/* Left Column */
.product-hot-one-left {
    padding: 0 40px;
}

.product-hot-one-label {
    font-size: 14px;
    font-weight: 400;
    color: #7B8487;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-family: var(--font-poppins);
}

.product-title__hot_one {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 35px;
    color: var(--color-black);
}

.product-hot-one-title {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 32px;
    color: var(--color-black);
    font-family: var(--font-poppins);
}

/* Featured Image Container with Rotated Background */
.product-hot-one-featured {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
    position: relative;
}

.product-hot-one-image-container {
    position: relative;
    z-index: 2;
    overflow: hidden;
}


/* Info Section */
.product-hot-one-info {
    text-align: center;
}
.btn__product__hot_one {
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-poppins);
    background: #fdeded;
    padding: 15px 24px;
    border: 1px solid var(--color-white);
}

/* Right Column - Hero Image */
.product-hot-one-right {
    position: relative;
    height: 100%;
}

.product-hot-one-hero {
    position: relative;
    overflow: hidden;
}

.product-hot-one-hero img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-hot-one-hero:hover img {
    transform: scale(1.02);
}

/* Fashion Overlay */
.product-hot-one-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.product-hot-one-fashion {
    font-size: 128px;
    font-weight: 600;
    color: var(--color-white);
    line-height: 17px;
    text-transform: uppercase;
    height: 50px;
}

/* Product Seller */
.product__seller_section {
    padding: 0 0 60px;
}

.product-seller-header {
    align-items: center;
    margin-bottom: 10px;
}

.product-seller-title {
    text-align: center;
}

.product-seller-title h2 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0;
}

.product-seller-see-all {
    text-align: center;
    margin-bottom: 65px;
}

.product-seller-see-all a {
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--color-black);
    text-transform: uppercase;
    transition: color 0.3s ease;
    font-weight: 400;
    font-family: var(--font-poppins);
}

.product-seller-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.product-seller-item {
    transition: all 0.3s ease;
}

.product-seller-item:hover {
    transform: translateY(-10px);
}

.product-seller-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-seller-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #7B8487;
    font-size: 11px;
    font-weight: 400;
    z-index: 5;
    font-family: var(--font-poppins);
}

.product-seller-image-wrapper a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-seller-image-wrapper img {
    max-width: 100%;
    transition: transform 0.4s ease;
}

.product-seller-item:hover .product-seller-image-wrapper img {
    transform: scale(1.05);
}

.product-seller-info {
    padding-top: 35px;
    text-align: center;
}

.product-seller-info .product_seller_name {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    font-family: var(--font-poppins);
}

.product-seller-info .product_seller_name a {
    color: var(--color-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-seller-info .product_seller_name a:hover {
    color: var(--color-pink);
}

/* Pagination Seller */
.pagination-seller {
    display: flex;
    justify-content: end;
}

.pagination-seller-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-seller-info {
    font-size: 12px;
    color: var(--color-black);
    font-weight: 400;
    font-family: var(--font-poppins);
    text-align: center;
}

.pagination-seller-btn {
    background:none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #33383C;
    font-size: 14px;
    text-decoration: none;
}

.pagination-seller-btn:hover:not(.disabled) {
    border-color: var(--color-black);
    color: var(--color-black);
    transform: scale(1.08);
}

.pagination-seller-btn.disabled {
    border: none;
    opacity: 0.5;
    cursor: not-allowed;
}

/** Menu mobile **/
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s,
        visibility 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    display: block;
}

.mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: -82%;
    width: 82%;
    height: 100%;
    background-color: #fff;
    z-index: 999;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #ebebeb;
}

.mobile-logo {
    max-width: 150px;
}

.mobile-logo img {
    max-width: 100%;
    height: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text-color-black);
    font-size: 18px;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.mobile-search {
    width: 200px;
    padding: 15px;
    overflow: hidden;
    position: relative;
}

.mobile-search form {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: flex-end;
    border: var(--text-color-red) dashed 1px;
    border-radius: 20px;
}

.mobile-search input {
    width: 100px;
    padding: 8px 10px;
    outline: none;
    font-size: 14px;
    border: none;
}

.mobile-search button {
    background: var(--background-button);
    border: none;
    outline: none;
    padding: 8px 8px;
    border-radius: 30px;
    cursor: pointer;
    min-width: 36px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: var(--text-color-white);
}

.mobile-search.active button {
    background: var(--main-background);
}

.mobile-search.active button i {
    filter: brightness(0) saturate(100%) invert(24%) sepia(94%) saturate(7465%)
        hue-rotate(0deg) brightness(91%) contrast(122%);
    color: var(--text-color-red);
}

.mobile-search input::placeholder {
    color: var(--text-color-red);
    font-weight: 500;
    font-size: 16px;
}

.mobile-header .mobile-search {
    flex: 1;
    padding: 0 10px;
    max-width: 170px;
    margin-right: 10px;
}

.mobile-header .mobile-search form {
    justify-content: flex-end;
}

.mobile-menu .mobile-search {
    width: 100%;
    max-width: 100%;
    border-bottom: 1px solid #ebebeb;
}

.mobile-menu .mobile-search form {
    justify-content: space-between;
}

.mobile-menu .mobile-search input {
    width: 100%;
    opacity: 1;
    border: 1px solid #ddd;
    padding: 10px 15px;
}

.mobile-menu .mobile-search button {
    position: absolute;
    right: 5px;
}

.mobile-nav {
    padding-bottom: 10px;
    flex: 1;
    background: #f8f9fa;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-item:not(:first-child) {
    border-top: 1px solid #ebebeb;
}

.mobile-menu-item a {
    display: flex;
    align-items: center;
    padding: 15px;
    color: var(--text-color-black);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.mobile-menu-item.active a {
    color: var(--text-color-red);
}

.mobile-menu-item i {
    margin-right: 6px;
    width: 16px;
    text-align: center;
    font-size: 14px;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    border-top: 1px solid #ebebeb;
}

.mobile-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 50%;
    color: var(--text-color-black);
    text-decoration: none;
    transition:
        background-color 0.3s,
        color 0.3s;
}

.mobile-social-link:hover {
    background-color: var(--background-blue);
    color: #fff;
}

.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    display: none;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-header-logo {
    max-width: 140px;
}

.mobile-header-logo img {
    max-width: 100%;
    height: auto;
}

.mobile-header-actions {
    display: flex;
}

.mobile-search-toggle {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Language Section */
.mobile-language-section {
    border-top: 1px solid #ddd;
    padding: 15px;
    margin-top: auto;
    background-color: #f8f9fa;
}

.mobile-language-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 550;
    color: var(--text-color-black);
}

.mobile-language-title i {
    margin-right: 6px;
    width: 16px;
    text-align: center;
    color: var(--text-color-blue);
    font-size: 14px;
}

.mobile-language-options {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color-black);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mobile-lang-btn .flag-icon {
    width: 24px;
    height: 16px;
    margin-right: 12px;
    border-radius: 2px;
    object-fit: cover;
    border: 1px solid #ddd;
}

.mobile-lang-btn span {
    flex: 1;
    font-weight: 500;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-menu-footer {
    padding: 15px;
    background: #f8f8f8;
    border-top: 1px solid #ddd;
    font-size: 14px;
}

.mobile-menu-footer .support-info {
    display: flex;
    justify-content: start;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-footer .support-info p {
    margin: 5px 0;
    color: #333;
}

.mobile-menu-footer .support-info a {
    color: #007bff;
    text-decoration: none;
}

/* MenuMobile submenu */
.mobile-has-submenu {
    position: relative;
}

.mobile-submenu-trigger {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 20px;
    background-color: transparent;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

.mobile-menu-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-submenu-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: auto;
    color: #888;
}

.mobile-submenu-arrow.rotated {
    transform: rotate(180deg);
}

.mobile-menu-item .active-span {
    font-weight: 600;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background-color: #fafafa;
    border-radius: 8px;
    padding: 0;
    transition: 0.2s all;
    margin-bottom: 0 !important;
}

.mobile-submenu.active {
    max-height: 800px;
    padding: 4px 0;
}

.mobile-submenu-item {
    list-style: none;
}

.mobile-submenu-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-submenu-level-3 {
    background-color: #f9f9f9;
    padding-left: 10px;
}

.mobile-submenu-level-3 .mobile-submenu-item a {
    font-size: 14px;
}

.mobile-submenu-level-4 {
    background-color: #f9f9f9;
    padding-left: 20px;
}

.mobile-submenu-level-4 .mobile-submenu-item a {
    font-size: 14px;
}

.mobile-submenu-level-5 {
    background-color: #f9f9f9;
    padding-left: 30px;
}

.mobile-submenu-level-5 .mobile-submenu-item a {
    font-size: 14px;
}

/** Static page **/
.static-main {
    padding-top: 10px;
    padding-bottom: 30px;
}

.title-main {
    font-size: 28px;
    color: #e60023;
    position: relative;
    letter-spacing: 1px;
    text-align: center;
    margin: 16px 0;
}

/** Breadcrumb **/

.breadcrumb-nav {
    margin: 16px 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 8px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #333;
}

.breadcrumb-link {
    color: #333;
    text-decoration: none;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    transition: color 0.2s ease-in-out;
}

.breadcrumb-link:hover {
    color: #e63946;
    background-color: transparent;
}

.breadcrumb-current {
    font-weight: bold;
    color: #333;
    padding: 0.3rem 0.5rem;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: #999;
}

/** Empty data **/
.empty-state {
    text-align: center;
    padding-bottom: 60px;
    padding-top: 24px;
}

.empty-content i {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-content h3 {
    color: #666;
    margin-bottom: 10px;
}

.empty-content p {
    color: #999;
    margin-bottom: 30px;
}

.empty-content a {
    color: #333;
}

/** Phone fixed **/
.fixed-social {
    position: fixed;
    bottom: 4rem;
    right: 0.25rem;
    padding: 0.5rem;
    z-index: 1000;
}

.fixed-social .link-item {
    position: relative;
    margin-bottom: 0.625rem;
}

.fixed-social .link-item span {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0.625rem;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: 0;
    font-size: 3.75rem;
    border: 3px solid rgb(56, 32, 41);
    border-right: 0;
}

.fixed-social .social-button {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 0.625rem;
    background-color: var(--color-pink);
    border-radius: 50%;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition:
        transform 0.3s ease,
        -webkit-transform 0.3s ease;
}

.social-button svg {
    width: 24px;
    height: 24px;
}

.fixed-social .social-button:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.fixed-social .social-button img {
    width: 1.75rem;
    height: auto;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 var(--color-pink);
        box-shadow: 0 0 0 0 var(--color-pink);
    }

    70% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        -webkit-box-shadow: 0 0 0 10px rgba(146, 22, 30, 0);
        box-shadow: 0 0 0 10px rgba(146, 22, 30, 0);
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 rgba(146, 22, 30, 0);
        box-shadow: 0 0 0 0 rgba(146, 22, 30, 0);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 var(--color-pink);
        box-shadow: 0 0 0 0 var(--color-pink);
    }

    70% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        -webkit-box-shadow: 0 0 0 10px rgba(146, 22, 30, 0);
        box-shadow: 0 0 0 10px rgba(146, 22, 30, 0);
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 rgba(146, 22, 30, 0);
        box-shadow: 0 0 0 0 rgba(146, 22, 30, 0);
    }
}

.pulse-1 {
    -webkit-animation: pulse 0.8s infinite;
    animation: pulse 0.8s infinite;
}

.pulse-2 {
    -webkit-animation: pulse 1.2s infinite 0.2s;
    animation: pulse 1.2s infinite 0.2s;
}

.pulse-3 {
    -webkit-animation: pulse 1.5s infinite 0.4s;
    animation: pulse 1.5s infinite 0.4s;
}

.pulse-4 {
    -webkit-animation: pulse 1.7s infinite 0.1s;
    animation: pulse 1.7s infinite 0.1s;
}

.link-item-phone {
    position: relative;
}

.phone-sub {
    position: absolute;
    right: calc(100% + 12px);
    min-width: 150px;
    max-width: 250px;
    background-color: rgb(146, 22, 30);
    border-radius: 6px;
    bottom: 0px;
    transform-origin: bottom right;
    transform: scale(0);
    transition: 0.3s all;
}

.phone-sub.open {
    transform: scale(1);
}

.phone-sub-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 5px;
    border-bottom: 1px solid #e3e3e3;
    color: #fff;
}

.phone-sub-item:last-child {
    border-bottom: 0px;
}

.phone-sub-item i {
    color: #fff;
    transform: rotate(90deg);
    width: 30px;
    height: 30px;
    margin-right: 5px;
}

.phone-sub-item .icon {
    color: var(--color-01);
    width: 30px;
    height: 30px;
    margin-right: 5px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.phone-sub-item .icon svg {
    fill: var(--color-01);
}

.phone-sub-item:hover {
    span:not(.icon) {
        opacity: 0.6;
    }
}

/** Google translate **/
.skiptranslate {
    display: none;
}

#google_language_translator {
    clear: both;
    width: auto !important;
    text-align: right;
    display: none;
}

/** Go top **/
.go-top {
    position: fixed;
    bottom: 15px;
    right: 12px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 400ms linear;
    background: transparent;
}

.go-top.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.go-top::after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f077";
    text-align: center;
    line-height: 46px;
    font-size: 16px;
    font-weight: 900;
    color: var(--color-pink);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 400ms linear;
}

.go-top svg path {
    fill: none;
}

.go-top svg.progress-circle path {
    stroke: var(--color-pink);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 400ms linear;
}

/** CSS Content **/

.content-center-v1 {
    font-family: var(--font-poppins);
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-black);
    margin-bottom: 1rem;
    font-weight: 300;
}

.content-center-v1 img {
    height: auto;
    margin-bottom: 1rem;
}

.content-center-v1 p {
    word-spacing: 1.5px;
    margin-bottom: 1rem;
}

.content-center-v1 p img {
    margin-bottom: 0px;
}

.content-center-v1 a:hover {
    text-decoration: underline;
}

.content-center-v1 ul,
.content-center-v1 ol {
    margin-left: 17px;
    margin-bottom: 1rem;
}

.content-center-v1 ul:last-child,
.content-center-v1 ol:last-child {
    margin-bottom: 0;
}

.coppy_right {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition:
        color 0.3s ease,
        text-shadow 0.3s ease,
        transform 0.3s ease;
    display: inline-block;
}

.coppy_right:hover {
    color: #0800e6;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(1, 129, 248, 0.7);
    transform: translateY(-2px);
}

/** Social Home **/
.social__home {
    background-color: #EFEFEF;
}

.social-home-cta {
    padding: 50px 20px;
    text-align: center;
    border-bottom: 1px solid #B7B7B7;
}

.social-home-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.social-home-cta-title {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.4;
    color: var(--color-black);
    margin-bottom: 40px;
    font-family: var(--font-cormorant);
    text-transform: uppercase;
}

.social-home-cta-btn {
    padding: 16px 20px;
    border: 2px solid var(--color-black);
    background: transparent;
    color: var(--color-black);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: var(--font-poppins);
    cursor: pointer;
}

.social-home-cta-btn:hover,
.social-home-cta-btn:focus {
    background-color: #FF888A;
    color: var(--color-white);
    border: none;
}

.social-home-follow {
    padding: 45px 20px;
    text-align: center;
}

.social-home-follow-content {
    max-width: 400px;
    margin: 0 auto;
}

.social-home-follow-title {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--color-black);
    margin-bottom: 15px;
    font-family: var(--font-poppins);
    text-transform: uppercase;
}

.social-home-icons {
    display: flex;
    justify-content: center;
    gap: 23px;
    margin-bottom: 16px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--color-black);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--color-pink);
    transform: translateY(-5px);
}

.social-home-handle {
    font-size: 22px;
    font-weight: 500;
    color: var(--color-black);
    margin: 0;
    font-family: var(--font-cormorant);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/** Footer Benefits Section **/
.footer-benefits {
    background-color: #f5f5f5;
    padding: 16px 20px;
}

.footer-benefits-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1080px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--color-black);
}

.benefit-content h4 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-black);
    margin: 0;
    font-family: var(--font-poppins);
    text-transform: uppercase;
}

.benefit-content p {
    font-size: 13px;
    color: #666;
    margin: 5px 0 0;
    font-family: var(--font-poppins);
}

.benefit-content p a {
    color: var(--color-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.benefit-content p a:hover {
    color: var(--color-pink);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-benefits {
        padding: 40px 20px;
    }

    .footer-benefits-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }

}

@media (max-width: 480px) {
    .footer-benefits {
        padding: 30px 15px;
    }

    .footer-benefits-wrapper {
        gap: 20px;
    }

    .benefit-icon {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

}
