/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

/* Variables */

:root {
    /* font families */
    --acl-primary-font: "Inter";
    --acl-heading-font: "DM Serif Text";
    /* colors */
    --acl-default-color: #232922;
    --acl-primary-color: #f5f5ef;
    /* font sizes */
    --acl-small-fs: 14px;
    --acl-normal-fs: 16px;
    --acl-deault-body-fs: 18px;
    /* font weight */
    --acl-fw-400: 400;
    --acl-fw-500: 500;
    --acl-fw-600: 600;
    --acl-fw-700: 700;
}

/* Container Override */
.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
}

@media (min-width: 450px) {
    .container {
        max-width: 450px;
    }
}

@media (min-width: 600px) {
    .container {
        max-width: 600px;
    }
}

@media (min-width: 728px) {
    .container {
        max-width: 728px;
    }
}

@media (min-width: 984px) {
    .container {
        max-width: 984px;
    }
}

@media (min-width: 1240px) {
    .container {
        max-width: 1240px;
    }
}

@media (min-width: 1496px) {
    .container {
        max-width: 1496px;
    }
}

/* Anchor Override */
a,
a:hover {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--acl-heading-font);
}

.custom-container {
    padding-left: 8rem;
    padding-right: 8rem;
}

@media (max-width: 1279px) {
    .custom-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (max-width: 767px) {
    .custom-container {
        padding-left: 0rem;
        padding-right: 0rem;
    }
}

body {
    color: var(--acl-default-color);
    font-size: var(--acl-deault-body-fs);
    font-weight: var(--acl-fw-400);
    line-height: 24px;
    font-family: var(--acl-primary-font);
    position: relative;
}

.acl-btn-wrapper {
    margin-top: 3rem;
    cursor: pointer;
}

.acl-primary-btn {
    display: flex;
    align-items: center;
    padding-left: 2rem;
    padding-right: 2rem;
    height: 3rem;
    min-height: 3rem;
    text-align: center;
    font-size: 0.875rem;
    line-height: 1em;
    gap: 0.5rem;
    font-weight: 600;
    border-radius: 3rem;
    border: 1px solid var(--acl-default-color);
    width: max-content;
}
.acl-primary-btn svg {
    width: 0.625rem;
    height: 0.625rem;
}
.acl-primary-btn.\--dark {
    background: #fff;
    color: var(--acl-default-color);
    text-transform: uppercase;
    font-weight: var(--acl-fw-400);
    font-size: 0.75rem;
    line-height: 1rem;
    padding: 0 1rem;
}

/* ##--## Breadcrumb ##--## */
.acl-breadcrumbs-body {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.acl-breadcrumb {
    list-style: none;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 0.875rem;
    line-height: 1.25rem;
    white-space: nowrap;
    overflow: overlay;
    scrollbar-width: thin;
    scrollbar-color: #f5f5ef #232922 !important;
}

.acl-breadcrumb li {
    display: flex;
    align-items: center;
}

.acl-breadcrumb li:before {
    content: "";
    margin-left: 0.5rem;
    margin-right: 0.75rem;
    display: block;
    height: 0.375rem;
    width: 0.375rem;
    --tw-rotate: 45deg;
    transform: translate(0, 0) rotate(45deg) skewX(0) skewY(0) scaleX(1)
        scaleY(1);
    opacity: 0.4;
    border-top: 1px solid;
    border-right: 1px solid;
    background-color: transparent;
}

.acl-breadcrumb li:first-child:before {
    display: none;
}

.acl-back {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    font-size: var(--acl-normal-fs);
    font-weight: var(--acl-fw-500);
}

.acl-back svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* ##--## Default Contnet Type 1 ##--## */
.default-content-type-1 {
    margin-top: 5rem;
    margin-bottom: 4rem;
}

.default-content-type-1-body {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
}

.default-content-type-1-body-inner {
    grid-column: span 4 / span 4;
    grid-column-start: 3;
}

.default-content-type-1 h2 {
    font-size: 3.75rem;
    line-height: 1;
    margin-bottom: 0;
    padding-bottom: 2.5rem;
    text-align: center;
}

.default-content-type-1-quote {
    width: 36rem;
    max-width: 100%;
    margin: 0 auto;
    font-size: var(--acl-normal-fs);
}

/* header */
header {
    background-color: #fff;
    padding: 35px 32px;
    border-bottom: 1px solid #f9fafb;
    position: sticky;
    top: 0;
    z-index: 3;
}

.header-logo {
    display: block;
}

.header-logo img {
    width: 250px;
    height: auto;
}

header ul {
    display: flex;
    margin-bottom: 0;
    gap: 2rem;
    font-size: var(--acl-small-fs);
    font-weight: var(--acl-fw-500);
}

header li {
    text-transform: uppercase;
    position: relative;
}

header li:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--acl-default-color);
    display: none;
}
header li.current-menu-item:before {
    display: block;
}

.header-menu-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--acl-default-color);
    display: none;
    align-items: center;
    justify-content: center;
    padding-top: 0.25rem;
}

/* mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    max-width: 100%;
    z-index: 4;
    background: var(--acl-default-color);
    color: #fff;
    height: 100%;
    transition: 0.2s all cubic-bezier(0.54, 0.03, 0.23, 0.52);
}

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

.close-mm-btn {
    position: absolute;
    right: calc(1rem + 28px);
    top: calc(1rem + 13px);
}

.close-mm-btn svg {
    fill: #fff;
    width: 18px;
    height: 18px;
}

.moible-menu-list {
    padding: 100px 25px 0 25px;
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-family: var(--acl-heading-font);
    list-style: none;
    margin: 0;
}

.moible-menu-list li {
    margin-bottom: 40px;
}

.mobile-menu-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: 1px solid #e5e7eb;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-footer p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

/* main slider */
.main-slider-sec {
    padding: 0.5rem 0 0;
    background: var(--acl-primary-color);
    position: relative;
}

/* Slider Modification for Desktop */
.swiper-pagination-home .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #000;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
}

.swiper-pagination-home {
    margin-bottom: 100px;
}

.swiper-pagination-home .swiper-pagination-bullet-active {
    color: #fff;
    background: #232922;
}

.swiper-button-prev,
.swiper-button-next {
    color: #232922;
}
/* Slider Modification for Desktop */

.main-slider-item {
    height: 90vh;
}

.main-slider-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.main-slider-content {
    background: linear-gradient(0deg, #eeecec, #fff 92%);
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.main-slider-content p {
    margin-bottom: 0;
    font-family: var(--acl-heading-font);
    font-size: 1.25rem;
    line-height: 1.75rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.main-slider-content p.main-slider-title {
    font-size: 1.5rem;
}

.main-slider-actions {
    display: none;
    align-items: center;
    justify-content: flex-end;
    padding: 0 0.5rem 0.5rem 0.5rem;
}

.main-slider-arrow-left,
.main-slider-arrow-right {
    padding: 0.375rem;
}

.main-slider-arrow-left svg,
.main-slider-arrow-right svg {
    width: 1.5rem;
    height: 1.5rem;
}

.main-slider-active-num {
    font-size: 0.875rem;
    line-height: 1.25rem;
    min-width: 2rem;
    font-family: var(--acl-heading-font);
    text-align: center;
}

/* Content Block */
.contnet-block-sec {
    background: var(--acl-primary-color);
    padding: 5rem;
}

.contnet-block-sec h2 {
    font-size: 3rem;
    /* line-height: 1; */
    text-align: center;
    margin: 0;
}

/* Our Story */
.contnet-block-sec-story {
    /* background: var(--acl-primary-color); */
    padding: 5rem;
}

.contnet-block-sec-story h2 {
    font-size: 3rem;
    line-height: 1;
    text-align: center;
    margin: 0;
}

/* Old Class for About Us Section */
/* .content-block-quote{
    width: 45%;
    margin: 5rem auto 0;
    font-size: var(--acl-normal-fs);
} */

/* New Class For About us Section */
.content-block-quote {
    font-size: var(--acl-normal-fs);
    margin-top: 2rem; /* Default: no margin on mobile */
}



@media (min-width: 768px) {
    .content-block-quote {
        margin-top: 5rem; /* Apply margin only on tablet and larger */
    }
}

/* For About Us Image */
.about-us-img {
    border-radius: 0.5rem;
    transition: transform 0.3s ease-in-out;
}
.about-us-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.content-block-quote p {
    margin-bottom: 2rem;
}

.content-block-quote p:last-child {
    margin-bottom: 0;
}

/* fixed spacing between image and p */
@media (max-width: 992px) {
    .content-block-quote p {
        margin-top: 2rem;
    }
}

/* Product Grid New CSS */
.product-card {
    background: #f5f5ef;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    padding: 16px;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
}

.product-card-img {
    width: 100%;
    /* aspect-ratio: 4 / 3; */
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
}

.product-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2a2a2a;
    text-align: center;
}
/* /Product Grid New CSS */

/* Product Overview */
.products-overview-sec {
    padding: 9rem 0 5rem;
}

.products-overview-sec h2 {
    font-size: 3rem;
    /* line-height: 1; */
    text-align: center;
    /* width: 90%; */
    padding-left: 8rem;
    padding-right: 8rem;
    margin: 0 auto 5rem;
}

.product-overview-imgBox {
    height: 150px;
    margin-bottom: 1rem;
}

.product-overview-imgBox img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.product-overview-item p {
    padding-top: 1rem;
    font-size: 1.25rem;
    line-height: 1.75rem;
    text-align: center;
    font-weight: normal;
    margin-bottom: 0;
}

/* colors overview */
.color-overview-sec {
    background: var(--acl-primary-color);
    padding: 5rem 0;
}

.color-overview-sec h2 {
    font-size: 3rem;
    /* line-height: 1; */
    text-align: center;
    /* width: 90%; */
    padding-left: 8rem;
    padding-right: 8rem;
    margin: 0 auto 5rem;
}

.color-overview-mainBox {
    display: flex;
    justify-content: flex-start;
}

.color-overview-item {
    display: grid;
    padding: 3rem;
    gap: 5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 1024px) {
    .color-overview-item {
        gap: 3rem;
    }
}
.color-overview-img {
    display: block;
}

.color-overview-img img {
    width: 100%;
    height: auto;
}

.color-overview-item h3 {
    margin: 0;
    display: flex;
    align-items: center;
}

/* center image and text */
@media (max-width: 767px) {
    .color-overview-item {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 1rem;
    }
    .color-overview-img {
        width: 60% !important;
        margin: 0;
    }
}

/* center image and text */
@media (max-width: 992px) {
    .color-overview-img {
        width: 100px !important;
        margin: 0;
    }
    .color-overview-item {
        padding: 20px;
    }
}


/* inspiration overview */
.inspiration-overview-sec {
    padding: 9rem 0 10vh;
}

.inspiration-overview-head h2 {
    font-size: 3rem;
    /* line-height: 1; */
    text-align: center;
    /* width: 90%; */
    padding-left: 8rem;
    padding-right: 8rem;
    margin: 0 auto 0;
}

.inspiration-overview-head-quote {
    width: 42rem;
    max-width: 100%;
    margin: 2rem auto 4rem;
    font-size: var(--acl-normal-fs);
}

.inspiration-overview-item-imgBox {
    background-color: #f9fafb;
    height: 300px;
    border-radius: 0.5rem;
    overflow: hidden;
}

.inspiration-overview-item-imgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* For Acoustic Customization */
.acoustic-customization-item-imgBox {
    background-color: #f9fafb;
    height: 500px;
    border-radius: 0.5rem;
    overflow: hidden;
}

.acoustic-customization-item-imgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inspiration-overview-title {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: var(--acl-normal-fs);
}

.inspiration-overview-title svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* CTA bar */
.cta-bar {
    background-color: #f5f5ef;
    padding: 7rem;
}

.cta-bar h2 {
    font-size: 3rem;
    /* line-height: 1; */
    margin: 0 0 1rem;
}

.cta-bar .acl-btn-wrapper {
    margin-top: 2rem;
}

/* footer */
footer {
    padding-left: 4rem;
    padding-right: 4rem;
    background-color: var(--acl-default-color);
    color: #fff;
}

.footer-top {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.footer-top-row {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 2rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.footer-top-row > div:nth-child(1) {
    grid-column: span 3 / span 3;
}

.footer-top-row > div:nth-child(2) {
    grid-column: span 1 / span 1;
}

.footer-top-row > div:nth-child(3) {
    grid-column: span 2 / span 2;
}

.footer-top-row > div:nth-child(4) {
    grid-column: span 1 / span 1;
}

.footer-logo {
    display: block;
    margin-bottom: 2rem;
}

.footer-logo img {
    /* width: 192px; */ /* No need for now */
    height: auto;
}

.footer-top p.footer-newsletter-title {
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.newsletter-field-wrapper {
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    line-height: 1.5rem;
    border-radius: 0.5rem;
    height: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 1rem;
}

.newsletter-field-wrapper input {
    border: none;
    border-radius: 0;
    display: block;
    outline: none;
    width: 100%;
}

.newsletter-field-wrapper button {
    display: block;
    height: auto;
    width: max-content;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    background: transparent;
}

.newsletter-field-wrapper button svg {
    cursor: pointer;
    color: #6b7280;
    width: 1.25rem;
    height: 1.25rem;
}

.footer-top p {
    margin-bottom: 0.75rem;
    font-weight: var(--acl-fw-700);
}

.footer-top ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: normal;
}

.footer-top ul li {
    margin-bottom: 0.5rem;
    line-height: 1.25rem;
}

.footer-top ul li:last-child {
    margin-bottom: 0;
}

.footer-bottom {
    margin-top: 1rem;
    border-top: 1px solid #e5e7eb;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-social {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
}

.footer-social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    width: 42px;
    height: 42px;
}

.footer-social li a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.footer-bottom p {
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin: 0;
}

/* -- ## -- About Us -- ## -- */
.inspiration-overview-sec.\--pg-about-us {
    padding-top: 0;
}
.inspiration-overview-sec.\--pg-about-us h2 {
    line-height: 2.5rem;
    font-size: 1.875rem;
    margin-bottom: 2.5rem;
}
.inspiration-overview-sec.\--pg-about-us .inspiration-overview-head-quote {
    text-align: center;
    width: 48rem;
    max-width: 100%;
    padding: 0 1.5rem;
    margin-bottom: 5rem;
}

.pg-about-us-sec {
    padding: 5rem 1.5rem;
}

.pg-about-us-content {
    width: 48rem;
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
    font-size: var(--acl-normal-fs);
}

.pg-about-us-content h2 {
    line-height: 2.5rem;
    font-size: 3rem;
    margin-bottom: 2.5rem;
}

.pg-about-us-content h3 {
    font-size: 1.875rem;
    line-height: 2.5rem;
    margin-bottom: 2.5rem;
}

.pg-about-us-content p {
    margin-bottom: 1rem;
    font-size: var(--acl-normal-fs);
}

.pg-about-us-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pg-about-us-content ul li {
    font-weight: var(--acl-fw-700);
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
}

.pg-about-us-content ul li:first-child {
    padding-top: 0;
}

.pg-about-us-content ul li:last-child {
    border-bottom: none;
}

.pg-about-us-content img {
    width: 348px;
    max-width: 100%;
    height: 30rem;
    object-fit: cover;
    display: block;
    margin: 5rem auto 0;
}

.pg-about-us-main-img {
    width: 72rem;
    max-width: 100%;
    height: auto;
    margin: 5rem auto;
    display: block;
}

/* -- ## -- Product Categories -- ## -- */
.product-categories-sec {
    padding-bottom: 10vh;
}
.product-category-filter {
    text-align: right;
}
.product-category-filter select {
    display: inline-flex;
    cursor: pointer;
    user-select: none;
    appearance: none;
    height: 2rem;
    min-height: 2rem;
    padding-left: 0.75rem;
    padding-right: 2rem;
    font-size: 0.875rem;
    line-height: 2;
    border-radius: 0.5rem;
    border: 1px solid #d3d4d7;
    background-color: #fff;
    background-image: linear-gradient(45deg, transparent 50%, currentColor 0),
        linear-gradient(135deg, currentColor 50%, transparent 0);
    background-position: calc(100% - 20px) calc(1px + 50%),
        calc(100% - 16.1px) calc(1px + 50%);
    background-size: 4px 4px, 4px 4px;
    background-repeat: no-repeat;
    margin-bottom: 1rem;
}

.product-category-items {
    display: flex;
    flex-flow: wrap;
    justify-content: flex-start;
}
@media (max-width: 767px) {
    .product-category-items {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    /* For Acoustic Customization */
    .acoustic-customization-item-imgBox {
        height: 300px;
    }
}
@media (max-width: 500px) {
    .product-category-items {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
.product-category-item-box {
    flex: 0 0 33.33%;
    max-width: 33.33%;
}

.product-category-items.\--layout-2x4 .product-category-item-box {
    flex: 0 0 50%;
    max-width: 50%;
}

.product-category-item {
    display: block;
    position: relative;
    padding: 1rem;
}

.product-category-item-img {
    position: relative;
    background: #f9fafb;
    height: 300px;
}

.product-category-item-img img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: 0.5s all cubic-bezier(0.4, 0, 0.2, 1);
}

.product-category-item-content {
    width: 75%;
    padding: 1rem 2rem;
    background: #fff;
    transition: 0.15s all cubic-bezier(0.4, 0, 0.2, 1);
}

.product-category-item-content h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: var(--acl-fw-700);
    font-family: var(--acl-primary-font);
}

.product-category-item-content p {
    width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: var(--acl-normal-fs);
}

.product-category-item:hover .product-category-item-img img {
    transform: scale(0.9);
}

.product-category-item:hover .product-category-item-content {
    transform: translateY(-100%);
}

/* -- ## -- Contact Us -- ## -- */
.contact-sec {
    padding: 5rem 4rem;
    overflow-x: hidden;
}

.contact-content {
    text-align: center;
    width: 80rem;
    max-width: 100%;
    margin: 0 auto;
}

.contact-content h2 {
    font-size: 3rem;
    /* line-height: 1; */
    margin-bottom: 1rem;
}

.contact-content p {
    margin-bottom: 0;
    line-height: 1.5rem;
}

.contact-content h3 {
    margin-top: 2rem;
    margin-bottom: 0;
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.contact-content h3 + h3 {
    margin-top: 0;
}

.contact-main {
    width: 80rem;
    max-width: 100%;
    margin: 5rem auto 0;
}

.contact-main ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-main ul li {
    margin-top: 1.25rem;
}

.contact-main ul li h3 {
    font-size: var(--acl-normal-fs);
    font-family: var(--acl-primary-font);
    margin-bottom: 0rem;
    font-weight: var(--acl-fw-400);
}

.contact-main ul li p {
    margin-bottom: 0;
    font-size: var(--acl-normal-fs);
    font-weight: var(--acl-fw-700);
}

.contact-main form {
    font-size: var(--acl-normal-fs);
}

.contact-main form input,
.contact-main form textarea {
    padding: 0.5rem 1rem;
    display: block;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 0;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 2rem;
}

.contact-main form input::placeholder,
.contact-main form textarea::placeholder {
    color: #9ca3af;
}

.contact-main form input:focus,
.contact-main form textarea:focus {
    border-color: var(--acl-default-color);
}

.contact-main form .acl-btn-wrapper {
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.contact-main form .acl-btn-wrapper button {
    background: #fff;
}

/* -- ## -- Inspiration -- ## -- */
.inspiration-overview-sec.\--pg-inspiration {
    padding: 0rem 0 10vh;
}
.inspiration-overview-sec.\--pg-inspiration .inspiration-overview-head p {
    /* text-align: center; */
    font-size: var(--acl-normal-fs);
    width: max-content;
    max-width: 100%;
    margin: 0 auto 0.5rem;
}

.inspiration-overview-sec.\--pg-inspiration .inspiration-overview-head h2 {
    font-size: 2.25rem;
    line-height: 2.5rem;
    margin-bottom: 4rem;
}

/* -- ## -- Sustainability -- ## -- */

/* New Updates */
.contnet-block-sustainability-opt {
    padding: 5rem;
    overflow-x: hidden; 
}

.contnet-block-sustainability-opt h2 {
    font-size: 3rem;
    text-align: center;
    margin: 0;
}

.contnet-block-sustainability-opt h3 {
    font-size: 2rem;
    text-align: center;
    margin: 0;
}

.contnet-block-why-archisonic {
    background: #deebed;
    padding: 5rem;
}

.contnet-block-why-archisonic h2 {
    font-size: 3rem;
    text-align: center;
    margin: 0;
}

.contnet-block-why-archisonic h3 {
    font-size: 2rem;
    text-align: center;
    margin: 0;
}

.why-archisonic-contentBox ul {
    list-style: none;
    padding-left: 0;
    font-size: 1.125rem;
    line-height: 1.8rem;
    font-weight: 500;
    color: #222;
}

.why-archisonic-contentBox ul li {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.why-archisonic-contentBox ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #008080;
    font-weight: bold;
}
/* /New Updates */

.sustainability-option-text {
    padding: 0 2rem;
    width: 50%;
    margin: 5rem auto;
    text-align: center;
    font-size: 1.5rem;
    line-height: 2rem;
}
.sustainability-option-text p {
    margin-bottom: 0;
}
.sustainability-option-images {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}
.sustainability-option-images img {
    width: 260px;
    max-width: 100%;
    display: block;
    height: auto;
}
.sustainability-highlights-sec {
    padding: 3rem;
    background: #deebed;
}
.sustainability-highlights-main {
    padding-left: 18rem;
    padding-right: 18rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
}
.sustainability-highlights-imgBox {
    height: 70vh;
}
.sustainability-highlights-imgBox img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.sustainability-highlights-contentBox {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: var(--acl-fw-700);
}
.sustainability-highlights-contentBox ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sustainability-highlights-contentBox ul li {
    margin-bottom: 5rem;
}
.sustainability-highlights-contentBox ul li:last-child {
    margin-bottom: 0rem;
}
.sustainability-intro {
    padding-top: 7rem;
}
.sustainability-intro-text {
    width: 50%;
    text-align: center;
    padding: 0 3rem;
}
.sustainability-intro-text h3 {
    font-size: 2.25rem;
    line-height: 2.5rem;
    margin-bottom: 3rem;
}
.sustainability-intro-text p {
    font-size: var(--acl-normal-fs);
}
.sustainability-intro-images {
    margin: 5rem auto 5rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    min-height: 70vh;
}
.sustainability-intro-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.sustainability-intro-images img:hover {
    transform: scale(1.05);
}

.sustainability-intro-text-2 {
    width: 50%;
    text-align: center;
    padding: 0 3rem 2rem;
}
.sustainability-intro-text-2 p {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 3rem;
}
/* Filled banner */
.filled-banner-upper {
    background: #cacecb;
    min-height: 20rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8rem;
    align-items: flex-end;
}
.filled-banner-upper-img img {
    display: none;
}
.filled-banner-upper-title h1 {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 1rem;
}
.filled-banner-bottom {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8rem;
    margin-top: 2rem;
    line-height: 1.75rem;
    font-weight: var(--acl-fw-600);
}
.filled-banner-bottom-img {
    margin-top: -13rem;
}
.filled-banner-bottom-img img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.filled-banner-bottom-img img:hover {
    transform: scale(1.05);
}

/* -- ## -- Colours -- ## -- */
.filled-banner.\--pg-colours .filled-banner-upper-title h1 {
    font-size: 6rem;
    line-height: 1;
}
.colors-intro-main {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
}
.colors-intro-title {
    width: 80%;
    max-width: 100%;
    margin: 0 auto;
}
.colors-intro-title p {
    margin: 0;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: var(--acl-fw-700);
}
.colors-intro-text {
    font-size: var(--acl-normal-fs);
}
.colors-intro-quote {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-style: italic;
    margin-bottom: 4rem;
}
.colors-list-item-main {
    display: grid;
    gap: 5rem;
    padding: 3rem 2rem;
    overflow-x: hidden;
}
/* ODD items – 2fr first */
.colors-list-item:nth-child(odd) .colors-list-item-main {
    grid-template-columns: 2fr 1fr;
}

/* EVEN items – 1fr first */
.colors-list-item:nth-child(even) .colors-list-item-main {
    grid-template-columns: 1fr 2fr;
}
.colors-list-item:nth-child(even) .colors-list-item-main {
    grid-template-columns: 1fr 2fr;
}
.colors-list-item:nth-child(odd) .colors-list-item-img {
    justify-content: end;
}
.colors-list-item-img {
    order: 2;
    display: flex;
}
.colors-list-item-img img {
    width: 260px;
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}
.colors-list-item-img img:hover {
    transform: scale(1.05);
}
.colors-list-item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}
.colors-list-item-content h3 {
    font-size: 2.25rem;
    line-height: 2.5rem;
    margin-bottom: 0;
}
.colors-list-item-content p {
    font-size: var(--acl-normal-fs);
}
/* .colors-list-item:nth-child(even) .colors-list-item-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
} */
.colors-list-item:nth-child(even) .colors-list-item-img {
    order: 1;
}
.colors-list-item:nth-child(even) .colors-list-item-content {
    order: 2;
}

/* -- ## -- Single Inspiration -- ## -- */
.post-pagination-sec {
    padding: 6rem 0 8rem;
}
.post-pagination-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.post-pagination-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--acl-default-color);
}
.post-pagination-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #fff;
}
.post-pagination-next .post-pagination-icon {
    margin-left: auto;
}
.post-pagination-main p {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: var(--acl-fw-600);
    margin-top: 1rem;
    margin-bottom: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 40vw;
}
.ins-product-head {
    background-color: #f5f5ef;
    min-height: 55vh;
    padding: 5rem 1.5rem;
    text-align: center;
}
.ins-product-head h2 {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 2rem;
}
.ins-product-head p {
    font-size: var(--acl-normal-fs);
    margin-bottom: 0;
}
.ins-products-main {
    margin-top: -25vh;
}
.ins-products-main .product-category-items {
    margin: 0 -1rem;
}
.inspiration-gallery {
    padding: 6rem 0 10rem;
}
.inspiration-gallery-item {
    min-height: 450px;
    overflow: hidden;
}
.inspiration-gallery-item img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.acl-breadcrumbs-sec.\--pg-single-inspiration {
    margin-top: 3.5rem;
}

/* -- ## -- Product Category -- ## -- */
.acl-breadcrumbs-sec.\--pg-product-category {
    margin-top: 5rem;
}
.inspiration-overview-sec.\--pg-product-category {
    padding: 4rem 0 7rem;
}
.product-categories-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7rem;
}
.product-categories-item {
    display: block;
}
.product-categories-item-img {
    border: 1px solid #e5e7eb;
    height: 18rem;
    overflow: hidden;
}
.product-categories-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}
.product-categories-item-img img:hover {
    transform: scale(1.05);
}
.product-categories-item-content h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    margin: 2.5rem 0 1rem;
    font-weight: var(--acl-fw-500);
    font-family: var(--acl-primary-font);
}
.product-categories-item-content p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    font-size: var(--acl-normal-fs);
}
.product-categories-item-content .acl-btn-wrapper {
    margin-top: 2rem;
}

/* product cta */
.product-cta-bar {
    background-color: var(--acl-default-color);
    height: calc(10vh - 1rem);
    position: fixed;
    top: 0;
    width: 100%;
    color: #fff;
    font-size: var(--acl-small-fs);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 2;
}
.product-cta-bar .acl-btn-wrapper {
    margin-top: 0;
}
.product-cta-bar-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.product-cta-bar-main p {
    margin-bottom: 0;
}
.product-cta-bar-main h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    margin: 0;
}
.product-cta-bar-num {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

/* -- ## -- Single Product -- ## -- */
.product-contact-sec {
    /* padding-top: clamp(5rem, 1.25rem + 12.5vw, 12.5rem);
    padding-bottom: 8rem;
    text-align: center; */
    padding-top: 6rem;
    padding-bottom: 6rem;
    text-align: center;
    background-color: #e4e7e5;

}
.product-contact-sec h2 {
    font-size: 3rem;
    /* line-height: 1; */
    margin-bottom: clamp(2rem, 1.25rem + 2.5vw, 3.5rem);
}
.product-contact-sec p {
    font-size: var(--acl-normal-fs);
    margin-bottom: 1rem;
}
.product-feature-sec {
    padding-top: 2rem;
    padding-bottom: 3rem;
    background-color: rgb(245, 245, 239);
}
.product-feature-main {
    padding-left: 9rem;
    padding-right: 9rem;
}
.product-feature-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}
.product-feature-head h3 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    margin: 0;
    font-family: var(--acl-primary-font);
    font-weight: var(--acl-fw-700);
}
.product-feature-size p {
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: var(--acl-fw-500);
}
.product-feature-size select {
    display: inline-flex;
    cursor: pointer;
    user-select: none;
    appearance: none;
    height: 3rem;
    min-height: 3rem;
    padding-inline-start: 1rem;
    padding-inline-end: 2.5rem;
    font-size: 0.875rem;
    line-height: 2;
    background-color: #fff;
    background-image: linear-gradient(
            45deg,
            transparent 50%,
            var(--acl-default-color) 0px
        ),
        linear-gradient(135deg, var(--acl-default-color) 50%, transparent 0px);
    background-size: 4px 4px, 4px 4px;
    background-repeat: no-repeat;
    border: none;
    background-position: calc(100% - 20px) calc(50% + 1px),
        calc(100% - 16.1px) calc(50% + 1px);
    outline: 2px solid var(--acl-default-color);
    max-width: 20rem;
    border-radius: 6rem;
}

.product-feature-cat-full-detail {
    display: none;
}
.product-feature-cat-title {
    font-family: var(--acl-primary-font);
    font-size: 1.25rem;
    line-height: 1.75rem;
    padding: 1rem;
    font-weight: var(--acl-fw-500);
    border-top: 1px solid #e6e6e6;
    cursor: pointer;
    position: relative;
    margin: 0;
}
.product-feature-cat-title:before {
    position: absolute;
    display: block;
    height: 0.5rem;
    width: 0.5rem;
    transition-property: all;
    inset-inline-end: 1.4rem;
    pointer-events: none;
    transition: 0.2s all cubic-bezier(0, 0, 0.2, 1);
    top: 1.9rem;
    content: "";
    transform-origin: 75% 75%;
    box-shadow: 2px 2px;
    transform: translate(0, -100%) rotate(45deg);
}
.product-feature-cat-title.active:before {
    transform: translate(0, -50%) rotate(225deg);
}
.product-feature-cat-full-detail {
    padding: 2rem 1rem;
    font-size: var(--acl-normal-fs);
}
.product-feature-cat-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.product-feature-cat-info-title {
    font-weight: var(--acl-fw-700);
    margin-bottom: 0;
}
.product-feature-specs {
    list-style: none;
    padding-left: 0rem;
    margin: 0;
}
.product-feature-spec-item {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.product-feature-cat-info-flexicontent .product-feature-spec-item p {
    margin-bottom: 0.5rem;
}
.product-feature-spec-item p:first-child {
    padding-left: 9rem;
    font-weight: var(--acl-fw-600);
}
.product-feature-cat-info-flexicontent p {
    margin-bottom: 0rem;
}
.product-feature-cat-breakdown {
    margin-bottom: 2rem;
}
.product-feature-cat-breakdown:last-child {
    margin-bottom: 0;
}
.product-feature-cat-info-performance p {
    margin-bottom: 0.5rem;
}
.product-feature-cat-info-flexicontent img {
    max-width: 100%;
    width: 100%;
    display: block;
    height: auto;
}
.product-desc-head {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 1.25rem;
    line-height: 1.75rem;
    gap: 0.5rem;
}
.product-desc-head li:first-child {
    font-family: var(--acl-heading-font);
    padding-right: 0.5rem;
    border-right: 1px solid #e5e7eb;
}
.product-desc-body {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    padding-top: 3rem;
    padding-bottom: 9.25rem;
}
.product-desc-thumbnail {
    /* max-height: 400px; */
    overflow: hidden;
}
.product-desc-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}
.product-desc-tab {
    background: hsla(0, 0%, 100%, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    margin-bottom: 0.5rem;
}
.product-desc-tab-title {
    font-size: 1.25rem;
    line-height: 1.75rem;
    padding: 1.5rem 2.75rem;
    cursor: pointer;
    position: relative;
    font-family: var(--acl-heading-font);
}
.product-desc-tab-title:before {
    position: absolute;
    display: block;
    height: 0.5rem;
    width: 0.5rem;
    transition-property: all;
    inset-inline-end: 1.4rem;
    pointer-events: none;
    transition: 0.2s all cubic-bezier(0, 0, 0.2, 1);
    top: 2.4rem;
    content: "";
    transform-origin: 75% 75%;
    box-shadow: 2px 2px;
    transform: translate(0, -100%) rotate(45deg);
}
.product-desc-tab-title.active:before {
    transform: translate(0, -50%) rotate(225deg);
}
.product-desc-tab-detail {
    margin-top: 0.5rem;
    font-size: var(--acl-normal-fs);
    padding: 0rem 1rem 1rem;
    display: none;
}
.product-desc-tab-detail h3 {
    font-family: var(--acl-primary-font);
    margin-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: var(--acl-fw-700);
}
.product-desc-tab-detail p {
    margin-bottom: 1rem;
}
.product-desc-tab-detail p:last-child {
    margin-bottom: 0;
}
.product-desc-tab-contact {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
}
.product-desc-tab-contact span {
    text-decoration: underline;
}
.product-desc-tab-contact svg {
    width: 1.25rem;
    height: 1.25rem;
}
.product-desc-color-variations {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    padding: 2rem 0;
}
.product-desc-color-variation-item {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.75rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.product-desc-color-variation-item:hover {
    transform: scale(1.05);
    z-index: 1;
}
.product-desc-color-variation-color {
    max-width: 100%;
    width: 7rem;
}
.product-desc-color-variation-state {
    filter: drop-shadow(0 8px 12px rgba(26, 26, 26, 0.3));
    position: relative;
    aspect-ratio: 1/1;
}
.product-desc-color-variation-state img {
    max-width: 100%;
    height: 100%;
    mask-image: url(/assets/images/single-product/colour-mask.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    position: relative;
    object-fit: contain;
}
.product-desc-color-variation-state.active:before {
    content: "";
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    opacity: 1;
    background-image: url(/assets/images/single-product/colour-mask-active.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 0.12s;
}
.product-desc-color-variation-item p {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #374151;
}
.product-desc-tab-variation-cats {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 1rem 0 2rem;
}
.product-desc-tab-variation-cats svg {
    width: 1.5rem;
    height: 1.5rem;
    min-width: 1rem;
}
.product-desc-tab-variation-cat-items {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    text-wrap: nowrap;
    overflow: overlay;
    scrollbar-width: none;
}
.product-desc-tab-variation-cat-item {
    font-size: 0.75rem;
    line-height: 1rem;
    background: #000;
    color: #fff;
    /* border: 2px solid #000; */
    border-radius: 6rem;
    padding: 0 1rem;
    min-height: 3rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Added for Active Button */
/* Hover effect */
.product-desc-tab-variation-cat-item:hover {
    background: #222;
    transform: scale(1.05);
}

/* Active button styling */
.product-desc-tab-variation-cat-item.active {
    background: #fff;
    color: #000;
    border: 2px solid #000;
    font-weight: 600;
}

.product-desc-tab-variation-cat-al,
.product-desc-tab-variation-cat-ar {
    cursor: pointer;
}
.product-gallery {
    padding: 6rem 0 10rem;
}
.product-gallery-item {
    min-height: 450px;
    overflow: hidden;
}
.product-gallery-item img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-slider-actions {
    display: none;
    align-items: center;
    justify-content: flex-end;
    padding: 0 0.5rem 0.5rem 0.5rem;
}

.product-slider-arrow-left,
.product-slider-arrow-right {
    padding: 0.375rem;
}

.product-slider-arrow-left svg,
.product-slider-arrow-right svg {
    width: 1.5rem;
    height: 1.5rem;
}

.product-slider-active-num {
    font-size: 0.875rem;
    line-height: 1.25rem;
    min-width: 2rem;
    font-family: var(--acl-heading-font);
    text-align: center;
}

/* -- ## -- Responsive -- ## -- */
@media (max-width: 1535px) {
    .default-content-type-1-body-inner {
        grid-column: span 6 / span 6;
        grid-column-start: 2;
    }
    .default-content-type-1-body-inner h2 {
        text-align: center;
    }
}

@media (max-width: 1279px) {
    header {
        padding: 21.5px 32px;
    }
    header ul {
        display: none;
    }
    .header-menu-btn {
        display: flex;
    }

    /* After New Layout not needed */
    /* .content-block-quote{
        width: 49%;
    } */
    .product-category-filter {
        display: none;
    }
    .product-category-item-box {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .sustainability-intro-text,
    .sustainability-intro-text-2 {
        width: 75%;
        padding: 0 2rem;
    }
    .sustainability-highlights-main {
        padding-left: 6rem;
        padding-right: 6rem;
    }
    .sustainability-highlights-imgBox img {
        width: auto;
        max-width: 100%;
    }
    .sustainability-option-text {
        width: 75%;
    }
    .product-desc-color-variations {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .product-feature-main {
        padding: 0 0.5rem;
    }
    .product-feature-spec-item p:first-child {
        padding-left: 5rem;
    }
    .product-gallery-item {
        height: 500px;
    }
    .product-gallery-item img {
        object-fit: contain;
    }
    .product-gallery {
        padding: 0.5rem 0 7.25rem;
    }
}

@media (max-width: 1199px) {
    .inspiration-overview-title {
        margin-bottom: 2rem;
    }
    .inspiration-overview-sec .acl-btn-wrapper {
        margin-top: 1rem;
    }
}

@media (max-width: 1024px) {
    header {
        padding: 21.5px 22px 21.5px 32px;
    }
    .header-menu-btn {
        width: 40px;
        height: 40px;
    }
    /* After New Layout Not needed */
    /* .content-block-quote{
        width: 100%;
    } */
    .color-overview-sec {
        margin-top: 4rem;
    }
    .color-overview-mainBox {
        flex-flow: wrap;
    }
    .color-overview-item {
        flex: 0 0 50%;
    }
    .color-overview-item h3 {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    .footer-top-row > div:nth-child(1) {
        grid-column: span 4 / span 4;
    }
    .footer-top-row > div:nth-child(2) {
        display: none;
    }

    .default-content-type-1-body-inner {
        grid-column: span 8 / span 8;
    }

    .contact-sec {
        padding: 5rem 1rem;
    }
    .contact-content {
        width: 100%;
    }

    .sustainability-intro-images {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-desc-color-variations {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .product-feature-spec-item p:first-child {
        padding-left: 0;
    }
}

@media (max-width: 983px) {
    .inspiration-overview-sec.\--pg-inspiration .inspiration-overview-head h2 {
        padding: 0;
        text-align: left;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .main-slider-sec {
        padding: 0;
    }
    .main-slider-actions {
        display: flex;
    }
    .main-slider-item {
        height: 300px;
    }
    .main-slider-content p {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
    .main-slider-content p.main-slider-title {
        font-size: 1rem;
        line-height: 1.5;
    }

    .contnet-block-sec {
        padding: 5rem 0;
    }
    .contnet-block-sec h2 {
        font-size: 1.875rem;
        line-height: 2.25rem;
        width: 100%;
        padding: 0;
    }

    /* Our Story */
    .contnet-block-sec-story {
        padding: 5rem 0;
    }
    .contnet-block-sec-story h2 {
        font-size: 1.875rem;
        line-height: 2.25rem;
        width: 100%;
        padding: 0;
    }

    /* For Sustainability Page */
    .contnet-block-why-archisonic {
        padding: 5rem 0;
        overflow-x: hidden;

    }
    .contnet-block-why-archisonic h2 {
        font-size: 1.875rem;
        line-height: 2.25rem;
        width: 100%;
        padding: 0;
    }

    .contnet-block-why-archisonic h3 {
        font-size: 1.25rem;
        text-align: center;
        margin: 0;
    }

    .contnet-block-sustainability-opt {
        padding: 5rem 0;
    }
    .contnet-block-sustainability-opt h2 {
        font-size: 1.875rem;
        line-height: 2.25rem;
        width: 100%;
        padding: 0;
    }

    .contnet-block-sustainability-opt h3 {
        font-size: 1.25rem;
        text-align: center;
        margin: 0;
    }
    /* /For Sustainability */

    .products-overview-sec h2 {
        font-size: 1.875rem;
        line-height: 2.25rem;
        padding: 0 1rem;
        width: 100%;
        margin-bottom: 2rem;
    }
    .products-overview-sec .acl-btn-wrapper {
        margin-top: 0;
        margin-bottom: 5rem;
    }
    .products-overview-body {
        display: flex;
        flex-direction: column-reverse;
    }
    .product-overview-item {
        padding: 0 15px;
        display: block;
    }
    .product-overview-imgBox {
        margin-bottom: 0;
    }
    .product-overview-imgBox img {
        object-fit: unset;
        height: auto;
        object-position: center;
    }
    .product-overview-item p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .color-overview-body {
        display: flex;
        flex-direction: column-reverse;
    }
    .color-overview-sec h2 {
        margin-bottom: 2rem;
    }
    .color-overview-sec .acl-btn-wrapper {
        margin-top: 0;
        margin-bottom: 5rem;
    }
    .color-overview-item {
        padding: 5rem 1rem 1rem;
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .color-overview-img {
        width: 260px;
        max-width: 100%;
    }
    .color-overview-sec h2 {
        font-size: 1.875rem;
        line-height: 2.25rem;
        width: 100%;
        padding: 0 1rem;
    }

    .inspiration-overview-head h2 {
        font-size: 1.875rem;
        line-height: 2.25rem;
        width: 100%;
        padding: 0 1rem;
    }
    .inspiration-overview-body {
        display: flex;
        flex-direction: column-reverse;
    }
    .inspiration-overview-head-quote {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    .inspiration-overview-sec .acl-btn-wrapper {
        margin-top: 0;
        margin-bottom: 4rem;
    }

    .cta-bar {
        padding: 7rem 0;
    }
    .cta-bar h2 {
        width: 100%;
        font-size: 1.875rem;
        line-height: 2.25rem;
    }

    footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .footer-top-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-top-row > div:nth-child(1) {
        grid-column: span 2 / span 2;
    }
    .footer-top-row > div:nth-child(3) {
        grid-column: span 1 / span 1;
    }
    .footer-top-row > div:nth-child(4) {
        grid-column: span 2 / span 2;
    }

    .pg-about-us-content h2 {
        font-size: 1.875rem;
    }
    .pg-about-us-content img {
        margin: 2rem auto 0rem;
    }

    .acl-back {
        display: none;
    }
    .default-content-type-1-body-inner h2 {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    .default-content-type-1 {
        margin: 2.5rem 0;
    }
    .default-content-type-1-quote {
        width: 100%;
    }
    .product-category-item-box {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .product-category-item {
        padding: 0;
    }

    .contact-content h2 {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .contact-content p {
        font-size: 0.75rem;
        line-height: 1rem;
    }
    .contact-content h3 {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
    .contact-main ul {
        margin-bottom: 1rem;
    }

    .filled-banner-upper {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        justify-content: center;
        gap: 0;
    }
    .filled-banner-upper-img {
        margin: 5rem auto 0;
    }
    .filled-banner-upper-img img {
        display: block;
        width: 350px;
        max-width: 100%;
        height: auto;
    }
    .filled-banner-upper-title h1 {
        margin: 1rem;
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    .filled-banner-upper-title h1 br {
        display: none;
    }
    .filled-banner-bottom {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .filled-banner-bottom-img {
        display: none;
    }
    .sustainability-intro-text,
    .sustainability-intro-text-2 {
        width: 100%;
        padding: 0 1rem;
    }
    .sustainability-highlights-main {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        padding: 0;
    }
    .sustainability-option-text {
        width: 100%;
    }

    .filled-banner.\--pg-colours .filled-banner-upper-title h1 {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    .colors-intro-main {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .colors-intro-title {
        width: 100%;
    }
    .colors-intro-title p {
        width: max-content;
        max-width: 100%;
        margin: 0 auto;
    }
    .filled-banner-bottom-content p {
        margin-bottom: 0;
    }
    .colors-intro-quote {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .colors-list-item-img {
        order: 1;
    }
    .colors-list-item-content {
        order: 2;
    }
    .colors-list-item-main,
    .colors-list-item:nth-child(even) .colors-list-item-main {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 3.5rem;
        padding: 5rem 0rem 1rem;
    }
    .colors-list-item:nth-child(odd) .colors-list-item-main {
        grid-template-columns: none;
    }
    .colors-list-item-img img {
        width: 100%;
    }

    .ins-products-main .product-category-items {
        margin: 0;
    }
    .post-pagination-main p {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
    .ins-product-head h2 {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }

    .acl-breadcrumbs-sec.\--pg-product-category {
        margin-top: 2.5rem;
    }
    .product-categories-items {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .product-cta-bar-main p {
        display: none;
    }
    .product-cta-bar {
        height: calc(10vh - 0.5rem);
    }

    .product-gallery-item {
        min-height: 300px;
        height: 300px;
    }
    .product-slider-actions {
        display: flex;
    }
    .product-gallery {
        padding: 0 0 5.75rem;
    }
    .product-desc-body {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 1rem;
    }
    .product-desc-color-variations {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .product-feature-cat-info {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .product-contact-sec h2 {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    .product-cta-bar-main h3 {
        font-size: 1.25rem;
        line-height: 1.5rem;
        margin: 0;
    }
}

@media (max-width: 639px) {
    .product-desc-color-variations {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    header {
        padding: 0.75rem 1.5rem 1.25rem 2rem;
    }
    .products-overview-body {
        padding: 0 1rem;
    }
    .product-overview-item {
        padding: 0;
    }
    .mobile-menu {
        right: -100%;
        width: 100%;
    }
}

@media (max-width: 499px) {
    .filled-banner-upper-img {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); /* bigger, deeper shadow */
        border-radius: 8px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        margin: 5rem 3rem 0;
    }
    .filled-banner-bottom-content p {
        text-align: center;
    }
    .sustainability-intro-images {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .sustainability-option-text {
        padding: 0 1rem;
    }
    .title {
        text-align: center;
    }
}

/* style.css */

/*****************/
/* 05 03 2025 */
/*****************/

/* Page Loader */
#loader {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 1s ease-in-out;
    max-width: 100vw;
    border-bottom-left-radius: 50% 6%;
    border-bottom-right-radius: 50% 6%;
}
#loader.slide-up {
    transform: translateY(-100%);
}
.loader-title {
    font-size: 3rem;
    font-family: "DM Serif Text";
}
@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}
/* Page Loader */
header li a:hover:after {
    width: 100%;
    left: 0;
}
header li a:after {
    background: none repeat scroll 0 0 transparent;
    bottom: -5px;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: #000;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}
header li a {
    position: relative;
}
.product-overview-imgBox {
    overflow: hidden;
}
.product-overview-imgBox img {
    transition: 0.3s;
}
.product-overview-imgBox img:hover {
    transform: scale(1.1);
}
.color-overview-img {
    overflow: hidden;
}
.color-overview-img img {
    transition: 0.3s;
}
.color-overview-img img:hover {
    transform: scale(1.1);
}
.inspiration-overview-item-imgBox img {
    transition: 0.3s;
}
/* fff */
.inspiration-overview-item-imgBox img:hover {
    transform: scale(1.05);
}

/* For Acoustic Customization */
.acoustic-customization-item-imgBox img {
    transition: 0.3s;
}
/* fff */
.acoustic-customization-item-imgBox img:hover {
    transform: scale(1.05);
}

.acl-primary-btn {
    transition: 0.3s;
}
.acl-primary-btn:hover {
    background-color: #232922 !important;
    color: white;
}

.heading-container {
    position: relative;
    display: block;
}

.title {
    background: radial-gradient(
        circle at var(--x, 50%) var(--y, 50%),
        #fafae0 40px,
        #232922 21px
    );
    background-clip: text;
    position: relative;
    z-index: 1;
}

.cursor {
    position: absolute;
    width: 80px;
    height: 80px;
    background: #232922;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    display: none;
    display: none;
    transition: opacity 0.3s ease;
}
.title:hover {
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.product-overview-item p {
    position: relative;
}
.product-overview-item p:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    left: 50%;
    position: absolute;
    background: #232922;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}

.product-overview-item p:hover:after {
    width: 100%;
    left: 0;
}
.product-overview-item p {
    text-align: unset;
    display: table;
    margin: auto;
}

.inspiration-overview-title span {
    position: relative;
    transition: 0.3s;
}
.inspiration-overview-title span:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    left: 50%;
    position: absolute;
    background: #232922;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}
.inspiration-overview-title span:hover:after {
    width: 100%;
    left: 0;
}
.inspiration-overview-title span:hover {
    margin-right: 10px;
}

.footer-top ul li a {
    position: relative;
}
.footer-top ul li a:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    left: 50%;
    position: absolute;
    background: #ffffff;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}

.footer-top ul li a:hover:after {
    width: 100%;
    left: 0;
}
.contact-main ul li p a {
    position: relative;
}
.contact-main ul li p a:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    left: 50%;
    position: absolute;
    background: #232922;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}
.contact-main ul li p a:hover:after {
    width: 100%;
    left: 0;
}

.acl-breadcrumb li a:hover {
    text-decoration: underline;
}

::-webkit-scrollbar {
    width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #000000;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #ffffff;
}

.cursor.show {
    display: block;
    opacity: 1;
}
/*****************/
/* 05 03 2025 */
/*****************/

/* Contact us styling */

.spinner {
    animation: spin 1.2s ease-in-out infinite;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.btn-loader {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.btn-loader:not(.d-none) {
    opacity: 1;
}
.input-error {
    border: none;
    border-bottom: 2px solid #dc3545 !important; /* Red underline */
    background-color: transparent !important;
    box-shadow: none !important;
}

/* whatsapp widget */

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: fixed;          /* Makes it stick to screen */
    bottom: 20px;             /* Distance from bottom */
    right: 20px;               /* Distance from left */
    z-index: 1000;            /* Keeps it above other content */
    overflow: hidden;
    transition-duration: 0.3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
    background-color: #00d757;
  }

  .whatsapp-icon-container {
    width: 100%;
    transition-duration: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .whatsapp-icon-container svg {
    width: 25px;
  }

  .whatsapp-icon-container svg path {
    fill: white;
  }

  .whatsapp-text {
    position: absolute;
    right: 0%;
    width: 0%;
    opacity: 0;
    color: white;
    font-size: 1em;
    font-weight: 600;
    transition-duration: 0.3s;
  }

  .whatsapp-btn:hover {
    width: 150px;
    border-radius: 40px;
  }

  .whatsapp-btn:hover .whatsapp-icon-container {
    width: 30%;
    padding-left: 10px;
  }

  .whatsapp-btn:hover .whatsapp-text {
    opacity: 1;
    width: 70%;
    padding-right: 10px;
  }

  .whatsapp-btn:active {
    transform: translate(2px, 2px);
  }

/* customization sec css */
.customization-sec {
  background-color: var(--acl-default-color);
  padding: 6rem 0;
}
.customization-sec p {
  line-height: 2rem;
}
.customization-sec .acl-primary-btn {
  font-size: 1rem !important;
  padding: 1rem 2rem !important;
}
.customization-sec .acl-primary-btn:hover {
  background-color: var(--acl-primary-color);
  color: white;
  border-color: var(--acl-primary-color);
}
.customization-sec .acl-btn-wrapper {
  margin-top: 0 !important;
}
