/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-primary: "Inter", sans-serif;
    --font-brand: "Playfair Display", serif;
}

*,
::after,
::before {
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
}

.blur {
    filter: blur(20px);
}

a {
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    letter-spacing: -0.6px;
    line-height: 25px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
    letter-spacing: -0.6px;
    line-height: 25px;
    margin: 0;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"] {
    appearance: button;
    -webkit-appearance: button;
    cursor: pointer;
    background: transparent;
    border: none;
    font-family: inherit;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"] {
    appearance: none;
    -webkit-appearance: none;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    appearance: none;
    -webkit-appearance: none;
}

.btn-black {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 16px;
    text-transform: capitalize;
    border-bottom: 1px solid;
    z-index: 9;
    width: max-content;
}

.btn {
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-white {
    background: #fff;
    color: #000;
}

.btn-white:hover {
    background: #e6e6e6;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

.brand-title {
    font-family: var(--font-brand);
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 0 0 rgba(0, 0, 0, 0.05);
}

/* Top bar */
.top-bar {
    position: relative;
    width: 100%;
    background: #000;
    height: 40px;
    padding: 0 1rem;
    display: flex;
    justify-content: start;
    align-items: center;
}

.top-bar a {
    color: white;
    border-bottom: 1px solid;
    width: max-content;
    font-weight: 500;
}

/* Sticky header */
.main-header {
    position: relative;
    background: transparent;
    transition-duration: 0.3s;
}

.main-header.active {
    background: #ffffff;
    transition-duration: 0.3s;
}

.header-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    height: 60px;
}

.header-inner-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    font-weight: bolder;
    font-size: 20px;
    letter-spacing: -0.9px;
    margin-right: 4rem;
    color: #ffffff;
    text-transform: uppercase;
    line-height: unset;
}

/* Nav links */
.main-nav {
    display: none;
    gap: 1.5rem;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    position: relative;
    letter-spacing: -0.4px;
    line-height: 125%;
    font-weight: bold;
}

.main-nav a:after {
    transition-property: width;
    background-color: currentColor;
    width: 0px;
    height: 1px;
    left: 0;
    bottom: -0em;
    position: absolute;
    content: "";
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(0.32, 0.72, 0, 1);
}

.main-nav a:hover:after {
    width: 100%;
}

.nav-item {
    position: relative;
    transition: all 0.3s linear 0s;
}

.main-header.active .logo,
.main-header.active .main-nav a,
.main-header.active .search-icon svg,
.main-header.active .menu-bars svg,
.main-header.active .cart-icon .svg-icon svg {
    color: #000000;
    fill: #000000;
}

/* Mega Menu */
.mega-menu.show {
    display: block;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 40px;
    transition-duration: 0.3s;
    z-index: 9999;
    color: #898989;
    z-index: 9999;
    display: none;
}

.mega-menu .menu-title {
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 16px;
    text-transform: uppercase;
    color: #777;
}

.mega-menu ul {
    list-style: none;
    padding: 0;
}

.mega-menu ul li {
    margin-bottom: 10px;
}

.mega-menu ul li a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

/* Icons */
.nav-icons {
    display: flex;
    gap: 15px;
}

.search-icon,
.cart-icon,
.menu-bars {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
}

.search-icon svg {
    width: 17px;
    height: 17px;
    fill: #ffffff;
}

.cart-icon .svg-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-icon .svg-icon svg {
    width: 15px;
    height: 17px;
    fill: #ffffff;
}

.cart-icon .item-count {
    position: absolute;
    right: 0.25rem;
    top: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    background: #ffffff;
    border-radius: 9999px;
    font-size: 10px;
    color: #000000;
    font-weight: 500;
    transform: none;
}

.menu-bars svg {
    width: 20px;
    height: 13px;
    fill: #ffffff;
}

.main-header.active .cart-icon .item-count {
    background: #000000;
    color: #ffffff;
}

/* Hero Section */
.hero {
    position: relative;
    background-image: url("../webImages/herobanner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    height: 75px;
    padding-left: 4rem;
}

/* Promo Section */
.promo-strip-main {
    position: relative;
    display: block;
    margin: 32px auto;
    width: 100%;
    padding: 0 20px;
}

.promo-strip {
    background-color: #000;
    color: #fff;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
}

.promo-strip .promo-title {
    font-size: 20px;
    line-height: 125%;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.promo-strip .promo-link {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    flex-shrink: 0;
}

/* Summer Sale */

.products-section {
    position: relative;
    width: 100%;
    margin: 96px 0;
}

.products-main {
    margin: 2rem 0;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.subheading {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.section-title {
    font-size: 30px;
    font-weight: 600;
}

.swiper-product,
.swiper-product-cart,
.swiper-shop-by-cat,
.swiper-shop-by-cat2,
.swiper-product2 {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.swiper-button-disabled {
    opacity: 0 !important;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    font-size: 16px;
    color: #18181b;
    font-weight: bolder;
}

.swiper-button {
    background: #e4e4e7;
    width: 40px;
    height: 40px;
    padding: 0;
    top: 40%;
    border-radius: 50%;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.15s;
}

.swiper-shop-by-cat .swiper-button,
.swiper-shop-by-cat2 .swiper-button {
    top: 50%;
}

/* .swiper-button:hover {
    transform: translate(0, -50%) rotate(0) skew(0) skewY(0) scaleX(1.1) scaleY(1.1);
} */

.swiper-pagination {
    bottom: 1.25rem !important;
    left: 1.25rem !important;
    background-color: #0000001a;
    width: max-content !important;
    border-radius: 8px;
    height: max-content;
    display: flex;
    justify-content: center;
    gap: 6px;
    padding-left: 0.375rem;
    padding-right: 0.375rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    backdrop-filter: blur(12px);
}

.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.8 !important;
}

.swiper-pagination-bullet-active {
    background: #000000 !important;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.product-grid.grid-5 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.products-main .product-grid {
    gap: 0.25rem;
}

/* product-card */
.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease;
}

.product-card img {
    width: 100%;
    transition: transform 0.3s ease;
    border-radius: 8px;
    position: relative;
    display: block;
}

.products-main .product-card img {
    border-radius: 0;
}

.category-card::before {
    height: calc(100% - 40px);
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0);
    /* transparent by default */
    pointer-events: none;
    z-index: 2;
    border-radius: 8px;
    transition: background-color 0.4s ease;
}

.category-card.dimmed::before {
    background-color: rgba(0, 0, 0, 0.4);
}

.product-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    position: relative;
    display: block;
    padding-top: 1rem;
}

.product-image {
    width: 100%;
    transition: transform 0.3s ease;
    position: relative;
    display: block;
}

.product-size-container {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 0;
    background-color: #fff;
    border-radius: 0.5rem;
    transform: translateY(calc(100% + 24px));
    transition: transform 0.4s ease;
}

.product-card:hover .product-size-container {
    transform: translateY(0);
}

.group:hover .product-size-container {
    transform: translateY(0);
}

.product-tag {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    display: flex;
    gap: 0.5rem;
    margin: 0.5rem;
}

@media (min-width: 768px) {
    .product-tag {
        margin: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .product-tag {
        margin: 1rem;
    }
}

.product-badge {
    display: inline-block;
    white-space: nowrap;
    padding: 0.25rem 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1;
    border-radius: 3px;
    background-color: #b00c46;
    color: #fff;
    transition: all 0.3s ease;
    transform: translateZ(0);
}

.product-add-button-wrapper {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    z-index: 30;
    display: block;
}

.product-add-button-wrapper .button-animated {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: none;
}

.product-add-button-wrapper .button-animated .text-original {
    background: #fff;
}

.product-add-button-wrapper svg.icon {
    width: 1rem;
    height: 1rem;
}

.product-size-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 36px);
    gap: 4px;
    justify-content: center;
    padding: 4px;
}

.product-size-button {
    height: 2rem;
    min-width: 2rem;
    border-radius: 0.375rem;
    /* border: 1px solid #ccc; */
    background-color: white;
    font-size: 12px;
    font-family: var(--font-primary);
    cursor: pointer;
    font-weight: 600;
    outline: 0;
    letter-spacing: -0.3px;
    color: #18181b;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.product-size-button:hover {
    background-color: black;
    color: white;
}

.product-size-button:disabled {
    background-color: #f3f3f3;
    color: #999;
    pointer-events: none;
    opacity: 0.5;
}

.product-description {
    position: relative;
    width: 100%;
    padding-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #ffffff;
    gap: 0.5rem 0;
}

.products-main .product-description {
    padding: 1rem;
}

.product-desc-left {
    position: relative;
    display: flex;
    flex-direction: column;
    /* width: 80%; */
    width: max-content;
}

.product-desc-left .product-name {
    font-size: 14px;
    line-height: 17.5px;
}

.product-desc-left .product-desc {
    font-size: 14px;
    font-weight: 500;
    color: #71717a;
    line-height: 17.5px;
    margin-top: 0.375rem;
}

.product-desc-right {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: end;
    /* width: 20%; */
    width: max-content;
}

.product-desc-right .product-price {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    line-height: 1;
    margin-top: 0;
    text-decoration-line: none;
}

.product-desc-right .product-sale-price {
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    color: #b00c46;
}

.product-desc-right p:nth-child(2) {
    font-size: 12px;
    font-weight: 500;
    color: #71717a;
    line-height: 12px;
    margin-top: 0.375rem;
    text-decoration-line: line-through;
}

.product-color {
    position: relative;
    display: flex;
    width: 100%;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0 1px;
    margin-bottom: 0.125rem;
}

.product-color .color-box {
    outline-color: #a3a3a3;
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.15s;
    outline-offset: 1px;
    outline-width: 1px;
    outline-style: solid;
    border-radius: 9999px;
    width: 0.75rem;
    height: 0.75rem;
}

.product-color .color-box:hover {
    transform: translate(0, 0) rotate(0) skew(0) skewY(0) scaleX(1.1) scaleY(1.1);
}

.product-color .color-box.red {
    background-color: #f62d3e;
}

.product-color .color-box.black {
    background-color: #393a40;
}

.product-color .color-box.white {
    background-color: #f6efe3;
}

/* Video Secton */
.sticky-section {
    position: relative;
    width: 100%;
    height: 100vh;
    font-family: var(--font-primary);
    display: flex;
    align-items: end;
}

.sticky-bg video,
.sticky-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.sticky-container {
    color: #fff;
    padding: 2.5rem 1.5rem;
    max-width: 900px;
    position: sticky;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sticky-label {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.sticky-title {
    font-size: 48px;
    line-height: 88px;
    letter-spacing: 0;
    font-weight: 600;
    font-family: var(--font-brand);
    overflow-wrap: break-word;
}

.sticky-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* activity-section */

.activity-section {
    display: flex;
    height: 100vh;
}

.activity-images {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.activity-images img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.activity-images img.active {
    opacity: 1;
    z-index: 1;
}

.activity-titles {
    width: 50%;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

.activity-titles h3 {
    font-weight: 600;
    font-size: 20px;
    color: #000;
    margin-bottom: 30px;
}

.activity-titles ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.activity-titles li {
    cursor: pointer;
    margin: 10px 0;
    transition: color 0.3s ease;
    width: max-content;
}

.activity-titles li a {
    font-size: 36px;
    line-height: 60px;
    letter-spacing: -1.2px;
    font-weight: 600;
    color: #ccc;
}

.activity-titles li.active a,
.activity-titles li:hover a {
    color: #000;
}

/* About section */
.about-brand-section {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 48px;
    margin-bottom: 48px;
    box-sizing: border-box;
}

.about-brand-content {
    max-width: 750px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-brand-description {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.about-brand-title h1 {
    font-size: 24px;
    line-height: 37.5px;
    letter-spacing: -0.75px;
    word-break: break-word;
    font-weight: 600;
}

.about-brand-description h3 {
    margin-bottom: 22.5px;
    font-size: 16px;
    line-height: 37.5px;
    letter-spacing: -0.75px;
    max-width: 768px;
    font-weight: 600;
}

.about-brand-description p {
    font-weight: 600;
}

/* newsletter-section */
.newsletter-section {
    width: 100%;
    padding: 0 20px;
    margin: 20px auto;
}

.newsletter-container {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    gap: 0.125rem;
}

.newsletter-content {
    flex: 1;
    padding: 2.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: space-between;
    background-color: #cef5e0;
}

.newsletter-text {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-badge {
    background-color: #003117;
    color: #fff;
    line-height: 15px;
    letter-spacing: -0.3px;
    font-size: 12px;
    padding: 0.25rem 0.375rem;
    border-radius: 4px;
    display: inline-block;
    font-weight: 500;
    width: max-content;
}

.newsletter-heading {
    font-size: 24pxx;
    line-height: 30px;
    font-weight: 600;
    color: #003117;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input-wrapper {
    display: flex;
    background-color: #fff;
    border-radius: 0.25rem;
    overflow: hidden;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    outline: none;
    font-size: 1rem;
}

.newsletter-button {
    background-color: #fff;
    border: none;
    padding: 0 1.5rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    /* flex: 1;
    flex-shrink: 0; */
    font-size: 1rem;
}

.newsletter-disclaimer {
    font-size: 12px;
    color: #003117;
}

.newsletter-image {
    display: none;
}

/* footer-section */
.footer-section {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    padding: 48px 20px;
    background-color: #f4f4f5;
    width: 100%;
}

.footer-link-columns {
    position: relative;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.footer-column {
    position: relative;
    display: flex;
    width: 24%;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-heading {
    margin-bottom: 0.5rem;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    letter-spacing: -0.4px;
}

.footer-column a {
    position: relative;
    display: block;
    width: max-content;
    font-size: 16px;
    font-weight: 500;
}

.footer-column a:after {
    transition-property: width;
    background-color: currentColor;
    width: 0px;
    height: 1px;
    left: 0;
    bottom: -0em;
    position: absolute;
    content: "";
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(0.32, 0.72, 0, 1);
}

.footer-column a:hover:after {
    width: 100%;
}

.footer-bottom {
    position: relative;
    display: flex;
    width: 100%;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
}

.language-button {
    padding: 0 1.25rem;
    background: #fff;
    border-radius: 9999px;
    position: relative;
    display: flex;
    height: 2.75rem;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom-right {
    position: relative;
    display: block;
    width: 50%;
}

.footer-bottom-right .logo {
    font-size: 115px;
    color: #000;
    margin: 0;
}

.inner_page {
    position: relative;
    margin-top: 100px;
    display: flex;
}

/********************************** 
           Products 
**********************************/

.all-products-top {
    padding: 0 20px;
    margin: 16px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Breadcrumb */
.breadcrumb-section {
    margin-block: 0;
    padding-inline: 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #71717a;
}

.breadcrumb-link {
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: all 0.3s;
}

.breadcrumb-link:hover {
    color: #000;
    text-underline-offset: 6px;
}

.breadcrumb-separator {
    color: #999;
}

.all-products-heading-wrapper {
    position: relative;
}

.all-products-heading {
    font-size: 36px;
    line-height: 45px;
    letter-spacing: -0.9px;
    font-weight: 600;
}

/* Category Tabs */
.category-tabs-section {
    display: flex;
    gap: 0.5rem;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 24px;
    scroll-padding-right: 24px;
    overflow-y: visible;
    overflow-x: scroll;
    scrollbar-width: none;
}

.button-animated {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: #18181b;
    width: max-content;
    height: 2.5rem;
    overflow: hidden;
}

.btn-white-animated {
    background: #ffffff;
    border: 1px solid #18181b;
}

.btn-white-animated span {
    color: #000000 !important;
}

.button-wrapper {
    display: flex;
    position: relative;
    height: 100%;
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    transition-duration: 0.5s;
    transition-property: transform;
    flex-direction: column;
}

.button-animated:hover .button-wrapper {
    transform: translate(0, -100%) rotate(0) skew(0) skewY(0) scaleX(1) scaleY(1);
}

.button-animated span {
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 1;
    transform: translateY(0%) translateZ(0px);
    height: 100%;
    flex-shrink: 0;
    color: #f4f4f5;
    line-height: 14px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.4px;
    white-space: nowrap;
    text-align: center;
}

/* Description */
.all-products-description {
    max-width: 780px;
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.all-products-text {
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    font-weight: 500;
}

.all-products-text p {
    margin-bottom: 0.5em;
}

.products-header {
    position: sticky;
    top: 96px;
    z-index: 48;
    transition-property: height;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.15s;
    height: 3.5rem;
    display: flex;
    gap: 1.5rem;
    width: 100%;
    align-items: center;
    padding: 0 20px;
    background: #ffffff;
}

.products-count span {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.4px;
    font-weight: 400;
}

.products-sorting {
    display: flex;
    margin-left: auto;
    height: 2.75rem;
    gap: 0.25rem;
}

.products-sorting button {
    padding: 12px 8px;
}

.products-sorting button svg {
    width: 1rem;
    height: 100%;
}

/* Product  Inner */

.pdp-detail-section {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0 auto;
}

.pdp-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    height: max-content;
}

.pdp-image {
    width: 100%;
    /* aspect-ratio: 1 / 1; */
    object-fit: cover;
    background-color: #f6f6f6;
}

.pdp-info {
    display: flex;
    flex-direction: column;
    /* gap: 16px; */
    padding: 16px 24px;
}

.pdp-breadcrumb {
    gap: 2px;
}

.pdp-breadcrumb a {
    font-size: 12px;
    font-weight: 600;
}

.pdp-title-price {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.pdp-heading {
    width: max-content;
}

.pdp-title,
.pdp-price-current {
    font-size: 16px;
    font-weight: 600;
}

.pdp-subtitle,
.pdp-price-original {
    font-size: 14px;
    margin-top: 4px;
    margin-bottom: 12px;
}

.pdp-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.pdp-price-current {
    color: #b00c46;
}

.pdp-price-original {
    text-decoration: line-through;
    color: #71717a;
}

.pdp-color-section,
.pdp-size-section {
    display: flex;
    flex-direction: column;
    margin: 12px 0;
    gap: 12px;
}

.pdp-color-section .pdp-color-title {
    font-size: 14px;
    font-weight: 600;
}

.pdp-color-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pdp-color-option {
    width: 48px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    outline-color: transparent;
    outline-offset: 2px;
    outline-width: 1px;
    outline-style: solid;
    border-radius: 4px;
    transition-property: color, background-color, border-color,
        text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.15s;
}

.pdp-color-option:hover {
    outline-color: #00000080;
}

.pdp-color-option.selected {
    outline-color: #18181b;
}

.pdp-color-option img {
    object-fit: inherit;
    object-position: inherit;
    height: 100%;
    width: 100%;
    display: inherit;
    aspect-ratio: 2/3;
    object-fit: cover;
}

.pdp-size-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.pdp-size-finder {
    text-decoration: underline;
    font-size: 14px;
    text-underline-offset: 4px;
    display: inline-flex;
    gap: 5px;
    align-items: center;
}

.pdp-size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.size-option {
    flex: 1 1 0%;
    /* min-width: 48px; */
    height: 40px;
    background: transparent;
    border: 1px solid #e4e4e7;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    letter-spacing: -0.3px;
    line-height: 15px;
    transition: background 0.2s, border-color 0.2s;
}

.size-option:hover {
    border-color: #000;
}

.size-option.out-of-stock {
    color: #aaa;
    position: relative;
}

.size-option.out-of-stock::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 140%;
    background: #ccc;
    top: -20%;
    left: 50%;
    transform: rotate(45deg);
}

.size-option.out-of-stock svg {
    position: absolute;
    right: 0;
    top: 0;
}

.pdp-add-to-cart {
    position: relative;
    margin: 12px 0;
}

.pdp-add-to-cart .pdp-add-button {
    width: 100%;
}

.pdp-features {
    position: relative;
    padding: 1rem;
    margin: 16px 0;
    background: #f4f4f5;
    border-radius: 6px;
}

.pdp-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
}

.pdp-description {
    position: relative;
    padding: 24px 0;
    margin-bottom: 12px;
}

.pdp-description p {
    font-size: 16px;
    font-weight: 500;
}

.pdp-product-features-section {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.pdp-product-features-section h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.feature-list {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-item img {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
}

.accordion {
    border-top: 1px solid #ddd;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 15px;
    font-size: 14px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.accordion-header::after {
    content: "+";
    float: right;
    transition: transform 0.3s ease;
    font-weight: 400;
}

.accordion-item.active .accordion-header::after {
    content: "-";
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 15px;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    /* Adjust based on content size */
    padding: 15px;
}

.floating-cart-button {
    position: fixed;
    bottom: -10rem;
    left: 0;
    right: 0;
    width: calc(100% - 40px);
    z-index: 50;
    transition: all 0.5s ease;
    opacity: 0.4;
    margin: 0 auto;
}

.floating-cart-button[data-is-visible="true"] {
    bottom: 5rem;
    /* slides in */
    opacity: 1;
}

.floating-cart-button__btn {
    background-color: #18181b;
    color: #fff;
    border-radius: 9999px;
    height: 40px;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.floating-cart-button__btn:hover {
    background-color: #333;
}

.floating-cart-button__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px;
}

/* Conatct */

/* === Contact Section === */
.contact-section {
    width: 100%;
    box-sizing: border-box;
    padding-left: 24px;
    padding-right: 24px;
    margin-top: 60px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .contact-section {
        padding-left: 48px;
        padding-right: 48px;
        margin-top: 80px;
        margin-bottom: 80px;
    }
}

@media (min-width: 1024px) {
    .contact-section {
        padding-left: 72px;
        padding-right: 72px;
        margin-top: 100px;
        margin-bottom: 100px;
    }
}

.contact-section__content {
    max-width: 750px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-section__text-block {
    position: relative;
}

.contact-section__heading {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.2;
    word-break: break-word;
}

@media (min-width: 1024px) {
    .contact-section__heading {
        font-size: 40px;
    }
}

.contact-section__subheading {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
}

/* Container and Grid */
.contact-section {
    padding: 64px 24px;
    box-sizing: border-box;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(12, 1fr);
    }

    .contact-text {
        grid-column: span 6;
    }

    .contact-info {
        grid-column: 7 / span 6;
    }
}

/* Headings and Text */
.contact-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-subheading {
    font-size: 1rem;
    font-weight: 500;
    color: #444;
}

.contact-info p {
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 1rem;
}

.contact-info a {
    color: #000;
    text-decoration: underline;
}

@media (min-width: 1024px) {
    .contact-section__subheading {
        font-size: 18px;
    }
}

/* Layout */
.contact-cta-section {
    padding: 64px 24px;
    box-sizing: border-box;
}

.contact-cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contact-cta-grid {
        grid-template-columns: repeat(12, 1fr);
        gap: 24px;
    }

    .contact-cta-text {
        grid-column: 7 / span 6;
    }

    .contact-cta-button {
        grid-column: 7 / span 6;
        margin-top: 0.75rem;
    }
}

/* Text */
.contact-cta-text p {
    font-size: 1rem;
    color: #242424;
    margin-bottom: 0;
}

.chat-support-section {
    padding: 64px 24px;
    box-sizing: border-box;
}

.chat-support-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .chat-support-grid {
        grid-template-columns: repeat(12, 1fr);
        gap: 32px;
    }

    .chat-support-heading {
        grid-column: 1 / span 6;
    }

    .chat-support-content {
        grid-column: 7 / span 6;
    }
}

/* Headings */
.chat-support-heading h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

@media (min-width: 1024px) {
    .chat-support-heading h2 {
        font-size: 2.5rem;
    }
}

.chat-support-heading h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 16px;
    color: #333;
}

@media (min-width: 1024px) {
    .chat-support-heading h4 {
        font-size: 1.125rem;
    }
}

/* Content Text */
.chat-support-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #242424;
}

/* About Us */

.about_full_image {
    position: relative;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(12, 1fr);
    gap: 2px;
}

.about_full_image img {
    aspect-ratio: 10 / 16;
    grid-column: span 6;
    object-fit: inherit;
    object-position: inherit;
    height: 100%;
    width: 100%;
    display: inherit;
}

.about_full_image2 {
    position: relative;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(12, 1fr);
    gap: 2px;
}

.about_full_image2 img {
    aspect-ratio: 10 / 16;
    grid-column: span 4;
    object-fit: inherit;
    object-position: inherit;
    height: 100%;
    width: 100%;
    display: inherit;
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 750px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .about-grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: max-content max-content max-content;
        gap: 4rem;
        max-width: 100%;
        align-items: start;
    }

    .about-title {
        grid-column: span 6;
        grid-row: 1 / 4;
        text-align: left;
    }

    .about-text {
        grid-column: 7 / span 6;
        grid-row: 3 / 2;
        text-align: left;
    }
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
}

/* FAQ */

.standard-section {
    position: relative;
    display: block;
    width: 100%;
    margin: 20px 0;
}

.faq_top {
    width: 100%;
    position: relative;
}

.faq_top_right {
    width: 100%;
}

.faq_top_left .section-title {
    margin-bottom: 2.5rem;
}

.faq-intro {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.faq-tabs {
    margin-bottom: 3.5rem;
}

.faq-tab {
    background: #f4f4f5;
    cursor: pointer;
    color: #000;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-shrink: 0;
    line-height: 14px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.4px;
    white-space: nowrap;
    text-align: center;
}

.faq-tab.active {
    background: #18181b;
    color: #fff;
}

.faq-content .faq-panel {
    display: none;
}

.faq-content .faq-panel.active {
    display: block;
}

.faq-content .faq-panel h3 {
    margin-bottom: 2.5rem;
    font-size: 24px;
    line-height: 125%;
}

.faq-panel .accordion-header {
    font-weight: 600;
}

/* Overlay background */
.menu-overlay,
.filter-overlay,
.search-overlay,
.cart-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #0006;
    transform: translateX(100%);
    /* Hide off-screen to the right */
    z-index: 9999;
}

/* Active state */
.menu-overlay.active,
.filter-overlay.active,
.search-overlay.active,
.cart-overlay.active {
    transform: translateX(0);
    touch-action: none;
    will-change: transform;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* smoother & slower */
    animation-duration: 0.8s;
    /* increase from .5s to .8s */
    animation-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    /* smoother ease */
    animation-name: slideFromRight;
}

/* Close state */
.menu-overlay.close,
.filter-overlay.close,
.search-overlay.close,
.cart-overlay.close {
    transform: translateX(100%);
    touch-action: none;
    will-change: transform;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* smoother & slower */
    animation-duration: 0.8s;
    /* increase from .5s to .8s */
    animation-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    /* smoother ease */
    animation-name: slideToRight;
}

@keyframes slideFromRight {
    0% {
        transform: translate3d(100%, 0, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideToRight {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(100%, 0, 0);
    }
}

/* Menu panel */

.menu-panel {
    position: relative;
    background: #fff;
    width: calc(100vw - 72px);
    max-width: 24rem;
    height: 100%;
    overflow-y: auto;
    margin-left: auto;
    /* Push panel to right side */
}

.mobileMenu-header {
    display: flex;
    height: 72px;
    align-items: center;
    padding: 1rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.mobileMenu-header .close-btn,
.filterMenu-header .close-btn,
.searchMenu-header .close-btn,
.cartMenu-header .close-btn {
    display: flex;
    align-items: center;
    width: 2rem;
    height: 2rem;
    margin-left: auto;
    padding: 0.625rem;
    margin-right: -0.5rem;
}

.mobileMenu-header .back-btn {
    width: 1rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobileMenu-header .back-btn svg {
    height: 100%;
    width: 100%;
    display: block;
}

.mobileMenu-body {
    position: relative;
    height: calc(-72px + 100vh);
    overflow-y: scroll;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

/* List styles */
.menu-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-panel li {
    padding: 0.625rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-panel li a {
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0;
    font-weight: 600;
    font-family: "Playfair Display";
}

.menu-panel .arrow {
    position: relative;
    cursor: pointer;
    width: 2rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: -0.5rem;
}

.menu-panel .arrow svg {
    width: 0.75rem;
    height: 0.75rem;
}

/* Submenu panel */
.submenu-panel {
    position: fixed;
    top: 0;
    right: -100%;
    /* Start off-screen to the right */
    width: calc(100vw - 72px);
    max-width: 24rem;
    height: 100%;
    background: #fff;
    transition: right 0.3s ease;
    z-index: 9;
}

/* Active submenu state */
.submenu-panel.active {
    right: 0;
    /* Slide in from right */
}

/* Submenu header */

.submenu-title {
    font-size: 14px;
    line-height: 124%;
    letter-spacing: -0.35px;
    padding: 0 0.5rem;
    font-weight: 500;
}

.submenu-subtitle {
    font-size: 12px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.3px;
    padding: 0.5rem 1.25rem;
    text-transform: uppercase;
    color: #71717a;
    display: block;
}

.submenu-panel ul li {
    padding: 0.25rem 1.25rem;
}

.submenu-panel ul li a {
    font-size: 1rem;
    line-height: 1.5rem;
    font-family: "Inter", sans-serif;
    font-weight: 500;
}

/* Banner inside menu */
.menu-banner {
    background: black;
    color: white;
    padding: 15px;
    margin: 20px;
    border-radius: 5px;
}

.menu-banner a {
    color: white;
    font-size: 14px;
    text-decoration: underline;
}

/* search panel */

.search-panel {
    position: relative;
    background: #fff;
    height: 100%;
    overflow-y: auto;
    margin-left: auto;
    padding: 2rem;
    min-width: 425px;
    width: 50vw;
}

.searchMenu-header {
    display: flex;
    height: 50px;
    /* padding: 0 1rem; */
    gap: 1rem;
    align-items: center;
}

.search-wrapper {
    width: 100%;
    position: relative;
}

.search-form {
    display: flex;
    align-items: center;
    position: relative;
    height: 40px;
}

.search-form input {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    padding: 0 44px 0 16px;
    border: 1px solid #f4f4f5;
    font-weight: 500;
    font-size: 16px;
    background: #f4f4f5;
    outline: none;
    transition: box-shadow 0.2s ease;
}

.search-form input:focus {
    box-shadow: 0 0 0 2px #27272a;
}

.search-form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: none;
    background: #27272a;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.search-form button svg {
    fill: white;
    width: 20px;
    height: 20px;
}

.search-form button:disabled {
    background: rgba(0, 0, 0, 0.1);
    cursor: not-allowed;
}

.searchMenu-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

/* filter panel */

.filter-panel {
    position: relative;
    background: #fff;
    height: 100%;
    overflow-y: auto;
    margin-left: auto;
    /* Push panel to right side */
    padding: 2rem 1rem;
    min-width: 400px;
    width: 20vw;
}

.filterMenu-header {
    display: flex;
    height: 50px;
    padding-bottom: 1rem;
}

.filterMenu-header h4 {
    position: relative;
    font-size: 20px;
    overflow-wrap: break-word;
    text-wrap: balance;
    font-weight: 600;
}

.filterMenu-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.filterMenu-footer {
    position: absolute;
    display: block;
    width: 90%;
    bottom: 1rem;
    padding: 0 1rem;
    margin: 0 auto;
}

.filterMenu-footer .button-animated {
    width: 100%;
}

/* Cart panel */

.cart-panel {
    position: relative;
    /* background: #fff; */
    height: 100%;
    overflow-y: auto;
    margin-left: auto;
    /* Push panel to right side */
    padding: 2rem;
    min-width: 425px;
    max-width: 550px;
    width: 28vw;
    background: #f4f4f5;
}

.cartMenu-header {
    display: flex;
    height: 50px;
    padding-bottom: 1rem;
}

.cartMenu-header h3 {
    position: relative;
    font-size: 30px;
    overflow-wrap: break-word;
    text-wrap: balance;
    font-weight: 600;
}

.cartMenu-header h3 em {
    position: absolute;
    top: -0.3em;
    margin-left: 0.25em;
    font-size: 0.65em;
    font-style: normal;
}

.cartMenu-body {
    position: relative;
    height: calc(100% - 190px);
    overflow-y: scroll;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.cart-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 1rem;
}

/* Cart Item Container */
.cart-item {
    display: flex;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    align-items: start;
    width: 100%;
    min-height: 150px;
    position: relative;
}

/* Product Image */
.cart-item-image {
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    width: 80px;
    margin-right: 0.75rem;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.cart-item-info {
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc(100% - 100px);
    height: 100%;
    justify-content: space-between;
}

.cart-item-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    margin-right: 1rem;
}

.cart-item-price {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.cart-item-info-bottom {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: flex-end;
    flex-wrap: wrap;
}

.cart-item-variants {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: fit-content;
}

.cart-item-variant span {
    font-weight: 400;
    color: #666;
}

/* Quantity Controls */
.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f9f9f9;
    border-radius: 50px;
    padding: 0 4px;
    margin-left: auto;
    width: fit-content;
}

.qty-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0 8px;
    height: 30px;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn svg {
    display: flex;
    height: 0.625rem;
    width: 0.625rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}

.qty-input {
    text-align: center;
    border: none;
    outline: none;
    background: transparent;
    line-height: 125%;
    font-size: 14px;
    font-weight: 500;
    height: 2rem;
    width: 1.5rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Remove Button */
.cart-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: #000;
    position: absolute;
    right: 1rem;
}

.cart-item-remove svg {
    width: 12px;
    height: 12px;
    fill: #000;
}

.cartMenu-body .swiper-product-cart .product-description {
    background: #f4f4f5;
}

.cartMenu-footer {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 140px;
    padding-top: 1.25rem;
    gap: 0.5rem;
}

.cartMenu-footer .cartMenu-footer-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
}

.cartMenu-footer .button-animated {
    width: 100%;
    margin-top: 1rem;
}

/* Checkout */

.checkout-section {
    position: relative;
    width: 100%;
    display: block;
    margin: 5rem 0;
}

.checkout-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Checkout Header Layout */
.checkout-header {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

@media (min-width: 1024px) {
    .checkout-header {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Back link styling */
.checkout-back-link {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

@media (min-width: 1024px) {
    .checkout-back-link {
        font-size: 14px;
    }
}

.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    width: 1.25rem;
    height: 1.25rem;
}

.icon-back {
    width: 1rem;
    height: auto;
    fill: black;
    margin-right: 0.5rem;
}

/* Link text hover effect */
.link-text {
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: text-underline-offset 0.2s ease;
}

.group\/link:hover .link-text {
    text-underline-offset: 6px;
}

/* Title wrapper spacing */
.checkout-title-wrapper {
    margin-top: 1.25rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .checkout-title-wrapper {
        margin-top: 1.5rem;
        margin-bottom: 3rem;
    }
}

/* Checkout title */
.checkout-title {
    font-size: 30px;
    word-break: break-word;
    text-wrap: balance;
    line-height: 125%;
}

@media (min-width: 768px) {
    .checkout-title {
        font-size: 36px;
    }
}

@media (min-width: 1024px) {
    .checkout-title {
        font-size: 48px;
    }
}

.checkout-container {
    display: flex;
    width: 100%;
    position: relative;
    margin: 0 auto;
    gap: 3rem;
    flex-wrap: wrap;
}

.checkout-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    gap: 2rem;
}

.checkout-product {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.checkout-product .section-title {
    font-size: 20px;
}

.checkout-left .checkout-sidebar {
    top: unset;
    width: 100%;
    padding: 0;
    position: relative;
    display: block;
    box-sizing: initial;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 3rem 0;
}

.checkout-form__header {
    text-align: left;
}

.checkout-form__title {
    font-size: 1.5rem;
    font-weight: bold;
    word-break: break-word;
}

.checkout-form__field {
    position: relative;
    width: 100%;
}

.checkout-form__field input {
    width: 100%;
    padding: 1rem 0.625rem 0.625rem;
    font-size: 14px;
    line-height: 150%;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: transparent;
    outline: none;
}

.checkout-form__field input:focus {
    border-color: #000;
    color: #000;
}

.checkout-form__field label {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    font-size: 14px;
    background: #ffffff;
    transition: 0.3s ease;
    pointer-events: none;
    transform: translate(0, -50%) rotate(0) skew(0) skewY(0) scaleX(1) scaleY(1);
    line-height: 150%;
    font-weight: 500;
    padding: 0 .5rem;
    transform-origin: 0;
}

.checkout-form__field input:focus~label {
    transform: translate(0, -1rem) rotate(0) skew(0) skewY(0) scaleX(.75) scaleY(.75);
    top: .5rem;
}

.checkout-form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: .75rem;
}

.checkout-form__checkbox input {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    border-radius: .125rem;
    padding: .125rem;
    border: 1px solid #000;
}

.checkout-form__checkbox label {
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -.025em;
    font-weight: 500;
    color: #000000
}

.checkout-form__checkbox--newsletter {
    background: #ece3fd;
    color: #47268d;
    padding: 0.75rem;
    border-radius: 8px;
}

.checkout-form__submit {
    width: 100%;
    height: 3.5rem;
}

.checkout-form__terms {
    font-size: 0.875rem;
    color: #000;
}

.checkout-form__terms a {
    text-decoration: underline;
}

.checkout-right {
    display: none;
}

.checkout-sidebar {
    top: 0;
    width: 460px;
    position: sticky;
    box-sizing: initial;
    height: auto;
}

.checkout-sidebar .cartMenu-body {
    padding: 1.25rem;
    background: #f4f4f5;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    height: auto;
}

/* Checkout Summary Row */
.checkout-summary-row {
    position: relative;
    display: flex;
    width: 100%;
    text-align: left;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    line-height: 125%;
}

/* Title styling */
.checkout-summary-title {
    word-break: break-word;
    font-size: var(--heading-sm);
    text-wrap: balance;
}

/* Price styling */
.checkout-summary-price {
    margin-top: 0.75rem;
    font-size: 14px;
    font-weight: 700;
}

.checkout-summary-price:first-child {
    margin-top: 0;
}





/* Responsive */

@media (min-width: 768px) {
    .container {
        gap: 1.5rem;
        padding: 0 24px;
    }

    .promo-strip-main,
    .all-products-top {
        padding: 0 24px;
    }

    .about-brand-section {
        margin-top: 64px;
        margin-bottom: 64px;
        padding: 0 24px;
    }

    .standard-section {
        margin: 24px 0;
    }

    .newsletter-section {
        margin: 24px auto;
        padding: 0 24px;
    }

    .footer-section {
        padding: 48px 24px;
    }

    .all-products-wrapper {
        margin: 24px 0;
    }

    .products-header {
        padding: 0 24px;
    }

}

@media (min-width: 1024px) {

    .checkout-container {
        flex-wrap: nowrap;
    }

    .checkout-left {
        width: calc(100% - 460px);
        gap: 0;
    }

    .checkout-left .checkout-sidebar {
        display: none;
    }

    .checkout-right {
        display: block;
    }

    .checkout-sidebar .cartMenu-body {
        width: 100%;
        max-height: 70vh;
        margin-left: 0;
        margin-right: 0;
        border-radius: .5rem;
    }

    .top-bar {
        padding: 0 2rem;
    }

    .header-inner {
        padding: 0.5rem 2rem;
    }

    .container {
        gap: 2rem;
        padding: 0 64px;
    }

    .standard-section {
        margin: 32px 0;
    }

    .faq_top {
        display: grid;
        position: relative;
        grid-template-columns: 1fr 2fr;
        grid-auto-rows: max-content;
        gap: 2.5rem;
    }

    .faq-tabs {
        display: flex;
        flex-direction: column;
        max-width: 320px;
        width: 100%;
    }

    .faq-tab {
        background: transparent;
        border: none;
        font-size: 1rem;
        padding: 0.5rem 1rem;
        cursor: pointer;
    }

    .faq_top_left .section-title {
        margin-bottom: 0;
    }

    .faq-tab.active {
        background: #f4f4f5;
        color: #000;
    }

    .faq_top_left {
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }

    .faq_top_right {
        margin-left: auto;
        max-width: 740px;
    }

    .faq-tabs {
        gap: 0;
    }

    .faq-tab {
        position: relative;
        width: 100%;
        justify-content: flex-start;
        border-bottom: 1px solid #f5f5f5;
        border-radius: 0;
        font-weight: 600;
        font-size: 16px;
        line-height: 150%;
        letter-spacing: -0.4px;
        flex-shrink: 0;
        height: 3.5rem;
        padding: 1.25rem;
    }

    .shop-by-cat .container {
        flex-direction: row;
    }

    .shop-by-cat .container .section-header {
        width: 40%;
    }

    .promo-strip-main,
    .all-products-top {
        padding: 0 64px;
    }

    .main-nav {
        display: flex;
    }

    .menu-bars {
        display: none;
    }

    .sticky-container {
        gap: 2rem;
        padding: 4rem;
    }

    .sticky-label {
        font-size: 20px;
        font-weight: 500;
    }

    .sticky-title {
        font-size: 88px;
        text-wrap: balance;
    }

    .activity-titles li a {
        font-size: 48px;
    }

    .about-brand-section {
        margin-top: 96px;
        margin-bottom: 96px;
        padding: 0 64px;
    }

    .about-brand-title h1 {
        font-size: 30px;
    }

    .about-brand-description h3 {
        font-size: 30px;
    }

    .newsletter-section {
        margin: 32px auto;
        padding: 0 64px;
    }

    .newsletter-container {
        flex-direction: row;
    }

    .newsletter-content {
        padding: 4rem;
    }

    .newsletter-image {
        display: block;
        flex: 1;
    }

    .newsletter-image img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .footer-section {
        padding: 64px;
    }

    .all-products-wrapper {
        margin: 20px 0;
    }

    .products-header {
        padding: 0 64px;
    }

    .products-count span {
        font-size: 16px;
    }

    .products-sorting button svg {
        width: 1.25rem;
    }

    .pdp-detail-section {
        grid-template-columns: 2fr 1fr;
    }

    .floating-cart-button {
        bottom: 80px;
        left: auto;
        max-width: 360px;
        right: -360px;
        /* hidden offscreen by default */
        opacity: 0.4;
    }

    .floating-cart-button[data-is-visible="true"] {
        right: 64px;
        /* slides in */
        opacity: 1;
    }

    .swiper-pagination {
        display: none;
    }

    .pdp-title,
    .pdp-price-current {
        font-size: 20px;
    }

    .pdp-subtitle,
    .accordion-header,
    .pdp-price-original {
        font-size: 16px;
    }
}

@media (min-width: 1366px) {
    .main-nav {
        gap: 2.5rem;
    }

    .top-bar {
        padding: 0 4rem;
    }

    .header-inner {
        padding: 0.5rem 4rem;
    }

    .pdp-info {
        padding: 16px 64px;
    }
}

@media (max-width: 1060px) {
    .logo {
        margin-right: 2rem;
    }
}

@media (max-width: 1023px) {
    .hero-content {
        width: 100%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding-left: 0;
    }

    .sticky-container {
        width: 100%;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .pdp-swiper-images {
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .pdp-images {
        display: flex;
        position: relative;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-bottom-left {
        justify-content: flex-start;
        width: 100%;
    }

    .footer-bottom-right {
        width: 100%;
    }

    .footer-bottom-right .logo {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .activity-images {
        width: 100%;
    }

    .activity-titles {
        width: 100%;
        position: absolute;
        z-index: 1;
        background: none;
    }

    .footer-link-columns {
        flex-wrap: wrap;
    }

    .footer-column {
        width: 48%;
    }

    .product-grid.grid-5 {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .products-filter {
        position: fixed;
        bottom: 1rem;
        left: 0;
        right: 0;
        display: flex;
        z-index: 50;
        width: 100%;
        justify-content: center;
    }

    .product-size-grid {
        grid-template-columns: repeat(auto-fit, 30px);
    }

    .product-title {
        font-size: 16px;
    }

    .newsletter-input,
    .newsletter-button {
        font-size: 0.75rem;
    }

    .newsletter-input {
        padding: 0.5rem 0.625rem;
    }

    .sticky-container {
        width: 100%;
        text-align: left;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .sticky-title {
        line-height: 48px;
    }
}

@media (max-width: 425px) {
    .top-bar a {
        font-size: 12px;
    }

    .logo {
        margin-right: 0;
    }

    .nav-icons {
        gap: 5px;
    }

    .product-grid.grid-5 {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .product-size-grid {
        grid-template-columns: repeat(auto-fit, 2px);
    }

    .search-panel,
    .filter-panel,
    .cart-panel {
        min-width: 100%;
        width: 100%;
        padding: 2rem 1em;
    }

    .cart-item {
        padding: 4px;
        gap: 0;
    }
}

@media (max-width: 350px) {
    .product-card {
        max-width: 320px;
    }
}