/* ==========================================================================
   Slider CSS Only - All slider-related styles and responsive classes
   ========================================================================== */

   :root {
    --sz-primary: #0f4c5c;
    --sz-secondary: #1f7a8c;
    --sz-accent: #87CEEB;
    --sz-muted: #f4f7fb;
    --sz-border: rgba(15, 76, 92, 0.08);
    --sz-radius-lg: 20px;
    
    /* Banner/Slider Variables */
    --white: white;
    --font-color: #200d07;
    --green-color: #0f4c5c;
    --yellow-color: #e0fa63;
    --transparent: transparent;
    --red-color: #87CEEB;
    --button-border-color: #004d51;
}

/* ==========================================================================
   Feezee Slider Styles
   ========================================================================== */
.feezee-slider-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 10px;
    padding: 10px;
}

.feezee-left-side {
    background-color: #f5f3e8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.feezee-image-stack {
    position: absolute;
    width: 100%;
    height: 100%;
}

.feezee-image-stack img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: scale(1.1);
}

.feezee-image-stack img.active {
    opacity: 1;
    transform: scale(1);
}

.feezee-nav-arrow-left {
    position: absolute;
    left: 30px !important;
    top: 50%;
    z-index: 100;
}

.feezee-nav-arrow-right {
    position: absolute;
    right: 30px;
    top: 50%;
    z-index: 100;
}

.feezee-nav-arrow-right:hover,
.feezee-nav-arrow-left:hover {
    background-color: #2d8b7c;
    transform: translateY(-50%) scale(1.1);
}

.feezee-nav-arrow-right,
.feezee-nav-arrow-left {
    transform: translateY(-50%);
    border: 2px solid #005D6F;
    background-color: #DB6E22;
    box-shadow: 1.4px 3px 0 0 #024e5e;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    display: flex;
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feezee-nav-arrow-right img,
.feezee-nav-arrow-left img,
.feezee-nav-arrow-right svg,
.feezee-nav-arrow-left svg {
    width: 24px;
    height: 24px;
}

.feezee-nav-arrow-right svg,
.feezee-nav-arrow-left svg {
    color: #ffffff;
}

.feezee-right-side {
    background-color: #00687D;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px;
    min-height: 100vh;
}

.feezee-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    position: relative;
    gap: 40px;
}

.feezee-text-section {
    flex: 1;
    color: white;
    position: relative;
    min-height: 400px;
}

.feezee-text-content {
    position: absolute;
    opacity: 0;
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    transform: translateY(20px);
    width: 100%;
}

.feezee-text-content.active {
    opacity: 1;
    transform: translateY(0);
}

.feezee-text-content h1 {
    font-size: 72px;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 40px;
    font-family: Georgia, serif;
}

.feezee-shop-btn {
    color: white;
    border: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-block;
}

.feezee-btn-pink {
    background-color: #ff6b9d;
}

.feezee-btn-pink:hover {
    background-color: #ff5a8a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
    color: white;
    text-decoration: none;
}

.feezee-btn-lime {
    background-color: #b8e986;
    color: #00687D;
}

.feezee-btn-lime:hover {
    background-color: #a8d976;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 233, 134, 0.4);
    color: #00687D;
    text-decoration: none;
}

.feezee-product-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 400px;
    height: 500px;
    flex-shrink: 0;
}

.feezee-product-image {
    position: absolute;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feezee-product-image.active {
    opacity: 1;
}

.feezee-product-circle {
    border-radius: 300px 300px 30px 30px;
    width: 100%;
    max-width: 350px;
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feezee-product-circle img {
    object-fit: contain;
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
}

.feezee-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 200;
}

.feezee-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.feezee-dot.active {
    background-color: white;
    width: 30px;
    border-radius: 6px;
}

/* Feezee Slider Responsive Styles */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .feezee-text-content h1 {
        font-size: 52px;
    }

    .feezee-right-side {
        padding: 40px 30px;
    }

    .feezee-product-section {
        width: 400px;
        height: 500px;
    }

    .feezee-product-circle {
        max-width: 300px;
    }

    .feezee-product-circle img {
        max-width: 300px;
    }

    .feezee-content-wrapper {
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .feezee-slider-container {
        grid-template-columns: 100%;
        grid-template-rows: 50vh auto;
        gap: 0;
        min-height: 100vh;
        padding: 0;
    }

    .feezee-left-side {
        min-height: 50vh;
        height: 50vh;
    }

    .feezee-nav-arrow-left {
        left: 20px !important;
        width: 45px;
        height: 45px;
    }

    .feezee-nav-arrow-right {
        display: block;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .feezee-nav-arrow-right img,
    .feezee-nav-arrow-left img,
    .feezee-nav-arrow-right svg,
    .feezee-nav-arrow-left svg {
        width: 20px;
        height: 20px;
    }

    .feezee-right-side {
        padding: 30px 20px;
        min-height: 50vh;
    }

    .feezee-content-wrapper {
        flex-direction: column;
        justify-content: center;
        gap: 0;
    }

    .feezee-text-section {
        min-height: auto;
        width: 100%;
        text-align: center;
    }

    .feezee-text-content {
        position: relative;
        width: 100%;
    }

    .feezee-text-content h1 {
        font-size: 32px;
        margin-bottom: 25px;
        line-height: 1.3;
    }

    .feezee-shop-btn {
        padding: 15px 35px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
    }

    .feezee-product-section {
        display: none !important;
    }

    .feezee-slider-dots {
        bottom: 20px;
        gap: 10px;
    }

    .feezee-dot {
        width: 10px;
        height: 10px;
    }

    .feezee-dot.active {
        width: 24px;
    }
}

@media screen and (max-width: 480px) {
    .feezee-slider-container {
        grid-template-rows: 45vh auto;
    }

    .feezee-left-side {
        min-height: 45vh;
        height: 45vh;
    }

    .feezee-text-content h1 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .feezee-shop-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .feezee-right-side {
        padding: 20px 15px;
    }

    .feezee-nav-arrow-left {
        left: 15px !important;
        width: 40px;
        height: 40px;
    }

    .feezee-nav-arrow-right {
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .feezee-nav-arrow-left img,
    .feezee-nav-arrow-right img,
    .feezee-nav-arrow-left svg,
    .feezee-nav-arrow-right svg {
        width: 18px;
        height: 18px;
    }
}

@media screen and (max-width: 360px) {
    .feezee-text-content h1 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .feezee-shop-btn {
        padding: 10px 25px;
        font-size: 13px;
    }
}

@media screen and (min-width: 1400px) {
    .feezee-text-content h1 {
        font-size: 82px;
    }

    .feezee-product-section {
        width: 400px;
        height: 500px;
    }

    .feezee-product-circle {
        max-width: 350px;
    }

    .feezee-product-circle img {
        max-width: 350px;
    }
}

/* ==========================================================================
   Webflow Slider Styles (for testimonials and other sliders)
   ========================================================================== */
.w-slider {
    text-align: center;
    clear: both;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    background: #ddd;
    height: 300px;
    position: relative;
}

/* Banner slider specific overrides */
.banner-slider.w-slider {
    background: transparent;
    height: auto;
    min-height: auto;
}

.w-slider-mask {
    z-index: 1;
    white-space: nowrap;
    height: 100%;
    display: block;
    position: relative;
    left: 0;
    right: 0;
    overflow: hidden;
}

.w-slide {
    vertical-align: top;
    white-space: normal;
    text-align: left;
    width: 100%;
    height: 100%;
    display: inline-block;
    position: relative;
}

.w-slider-nav {
    z-index: 2;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    height: 40px;
    margin: auto;
    padding-top: 10px;
    position: absolute;
    inset: auto 0 0;
}

.w-slider-nav.w-round > div {
    border-radius: 100%;
}

.w-slider-nav.w-num > div {
    font-size: inherit;
    line-height: inherit;
    width: auto;
    height: auto;
    padding: 0.2em 0.5em;
}

.w-slider-nav.w-shadow > div {
    box-shadow: 0 0 3px rgba(51, 51, 51, 0.2);
}

.w-slider-nav-invert {
    color: #fff;
}

.w-slider-nav-invert > div {
    background-color: rgba(34, 34, 34, 0.15);
}

.w-slider-nav-invert > div.w-active {
    background-color: #222;
}

.w-slider-dot {
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.4);
    width: 1em;
    height: 1em;
    margin: 0 3px 0.5em;
    transition: background-color 0.1s, color 0.1s;
    display: inline-block;
    position: relative;
}

.w-slider-dot.w-active {
    background-color: #fff;
}

.w-slider-dot:focus {
    outline: none;
    box-shadow: 0 0 0 2px #fff;
}

.w-slider-dot:focus.w-active {
    box-shadow: none;
}

.w-slider-arrow-left,
.w-slider-arrow-right {
    cursor: pointer;
    color: #fff;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
    width: 80px;
    margin: auto;
    font-size: 40px;
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.w-slider-arrow-left [class^="w-icon-"],
.w-slider-arrow-right [class^="w-icon-"],
.w-slider-arrow-left [class*=" w-icon-"],
.w-slider-arrow-right [class*=" w-icon-"] {
    position: absolute;
}

.w-slider-arrow-left:focus,
.w-slider-arrow-right:focus {
    outline: 0;
}

.w-slider-arrow-left {
    z-index: 3;
    right: auto;
}

.w-slider-arrow-right {
    z-index: 4;
    left: auto;
}

.w-icon-slider-left,
.w-icon-slider-right {
    width: 1em;
    height: 1em;
    margin: auto;
    inset: 0;
}

.w-slider-aria-label {
    clip: rect(0 0 0 0);
    border: 0;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    position: absolute;
    overflow: hidden;
}

.w-slider-force-show {
    display: block !important;
}

/* ==========================================================================
   Banner Slider Styles (for banner-grid-02 and related elements)
   ========================================================================== */
.banner-section {
    overflow-x: clip;
    margin: 35px 0px;
    margin-top: 0px !important;
}

.banner-image {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.banner-grid-01 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto;
    grid-template-columns: 0.7fr 1fr;
    display: grid;
}

.banner-grid-02 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 0.7fr;
    transform: translate(0);
    display: grid;
}



.banner-text-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    color: var(--white);
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: 60%;
    display: flex;
}

.banner-text-wrapper.left {
    text-align: right;
    justify-content: flex-start;
    align-items: flex-end;
}

.banner-detail-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    background-color: var(--green-color);
    border-radius: 10px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 0.75fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    padding: 100px 30px;
    display: flex;
    max-height: 600px;
}


.banner-product-image-block {
    /*border-radius: 300px 300px 30px 30px;*/
    justify-content: center;
    align-items: center;
    width: 40%;
    height: 100%;
    display: flex;
    position: relative;
}

.banner-product-image {
    /*border-radius: 300px 300px 30px 30px;*/
    align-self: stretch;
    overflow: hidden;
}

.banner-tag-01 {
    width: 150px;
    position: absolute;
    inset: auto auto -70px -70px;
}

.banner-tag-02 {
    width: 150px;
    position: absolute;
    inset: auto -70px -40px auto;
}

.banner-image-show {
    background-color: #eaf2da;
    background-image: url(https://cdn.prod.website-files.com/68553746e13810e531054b98/68553c48dca41e9e9ce137aa_86d6778eccd59bd525ecdb8e277154a4_body-bg.png);
    background-position: 50%;
    background-size: auto;
    position: absolute;
    inset: 0% 0% auto;
}

.banner-image-show.right {
    top: auto;
    bottom: 0%;
    z-index: -1;
}

.section-tag-text {
    color: var(--green-color);
    font-size: 18px;
    font-weight: 600;
    line-height: 140%;
    position: relative;
}

.section-tag-text.white {
    color: var(--white);
}

.section-tag-text.black {
    color: var(--font-color);
}

.section-tag-text.yellow {
    color: var(--yellow-color);
}

.yellow-button {
    border: 2px solid var(--button-border-color);
    background-color: var(--red-color);
    box-shadow: 1.5px 4px 0 0 var(--button-border-color);
    color: #fff;
    text-align: center;
    border-radius: 50px;
    margin-top: 0;
    padding: 14px 36px;
    font-weight: 500;
    transition: box-shadow 0.4s;
    text-decoration: none;
    display: inline-block;
}

.slider_image{
    min-width: 100%;
    min-height: 600px;
    max-height: 600px;
    object-fit:cover;
    object-position:left;
}
.slider_small_pic{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width:786px) {
    
    .slider_image{
        min-width: 100%;
        min-height: 500px;
        max-height: 500px;
    }

}

@media screen and (max-width:576px) {
    
    .slider_image{
        min-width: 100%;
        min-height: 400px;
        max-height: 400px;
    }

}

.yellow-button:hover {
    box-shadow: 0 0 0 0 var(--button-border-color);
    text-decoration: none;
}

.yellow-button.top-20 {
    margin-top: 20px;
}

.red-button {
    border: 2px solid var(--button-border-color);
    background-color: var(--red-color);
    box-shadow: 1.5px 4px 0 0 var(--button-border-color);
    color: var(--white);
    border-radius: 50px;
    padding: 14px 36px;
    font-weight: 500;
    transition: box-shadow 0.4s;
    text-decoration: none;
    display: inline-block;
}

.red-button:hover {
    box-shadow: 0 0 0 0 var(--button-border-color);
    text-decoration: none;
}

.icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-heading {
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-nav.w-slider-nav {
    position: relative;
    height: auto;
    padding: 0;
    margin-top: 30px;
}

.banner-slider {
    background-color: var(--transparent);
    justify-content: center;
    align-items: center;
    height: 100%;
    display: flex;
    overflow: hidden;
}

.banner-slider-left-arrow {
    border: 2px solid var(--button-border-color);
    background-color: var(--sz-accent);
    box-shadow: 1.4px 3px 0 0 var(--button-border-color);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin-top: 0;
    margin-bottom: 0;
    transition: box-shadow 0.4s;
    display: flex;
    position: absolute;
    inset: auto auto auto 1%;
    cursor: pointer;
}

.banner-slider-left-arrow:hover {
    box-shadow: none;
}

.banner-slider-right-arrow {
    border: 2px solid var(--button-border-color);
    background-color: var(--red-color);
    box-shadow: 1.4px 3px 0 0 var(--button-border-color);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin-top: 0;
    margin-bottom: 0;
    transition: box-shadow 0.4s;
    display: flex;
    position: absolute;
    inset: auto 1% auto auto;
    cursor: pointer;
}

.banner-slider-right-arrow:hover {
    box-shadow: none;
}

/* Banner Slider Arrow Positioning */
.banner-slider .banner-slider-left-arrow,
.banner-slider .banner-slider-right-arrow {
    z-index: 10;
}

.banner-slider .banner-slider-left-arrow .icon-wrapper img,
.banner-slider .banner-slider-right-arrow .icon-wrapper img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Ensure slider mask works properly */
.banner-slider .w-slider-mask {
    position: relative;
    overflow: hidden;
}

.banner-slider .w-slide {
    display: inline-block;
    vertical-align: top;
    width: 100%;
}

/* Banner Slider Responsive Styles */
@media screen and (min-width: 1440px) {
    .banner-detail-wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }

    .banner-tag-01 {
        width: auto;
    }

    .banner-tag-02 {
        width: auto;
        bottom: -60px;
        right: -100px;
    }
}

@media screen and (min-width: 1920px) {
    .banner-detail-wrapper {
        grid-column-gap: 70px;
        grid-row-gap: 70px;
    }
}

@media screen and (max-width: 991px) {
    .banner-grid-01 {
        grid-template-columns: 1fr;
    }

    .banner-detail-wrapper {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .banner-grid-02 {
        display: flex;
        flex-direction: column-reverse;
    }
}

@media screen and (max-width: 767px) {
    .banner-text-wrapper {
        grid-column-gap: 20px;
        grid-row-gap: 20px;
        width: auto;
    }

    .banner-text-wrapper.left {
        text-align: left;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .banner-detail-wrapper {
        grid-column-gap: 30px;
        grid-row-gap: 30px;
        flex-flow: column;
        padding: 40px 20px;
    }

    .section-tag-text {
        font-size: 16px;
    }

    .banner-product-image-block {
        width: auto;
        display: none;
    }

    .yellow-button.top-20 {
        margin-top: 14px;
    }

    .banner-slider-left-arrow,
    .banner-slider-right-arrow {
        box-shadow: 1px 2px 0 0 var(--button-border-color);
        width: 40px;
        height: 40px;
        padding: 8px;
    }

    .banner-heading {
        font-size: 32px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 479px) {
    .banner-detail-wrapper {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .section-tag-text {
        font-size: 14px;
    }

    .yellow-button,
    .red-button {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .banner-heading {
        font-size: 28px;
        margin-bottom: 15px;
    }
}

/* ==========================================================================
   Shop Page Filter and Product Display Styles
   ========================================================================== */

/* Ensure container doesn't cause overflow */
.w-container {
    
    box-sizing: border-box;
}

section.products {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Shop Layout */
.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    margin-top: 30px;
    align-items: start;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

@media screen and (max-width: 991px) {
    .shop-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }
}

@media screen and (max-width: 767px) {
    .shop-layout {
        gap: 15px;
        margin-top: 15px;
    }
}

/* Filter Panel */
.filter-panel {
    position: sticky;
    top: 20px;
    align-self: start;
    height: fit-content;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
    width: 100%;
    max-width: 100%;
}

.filter-panel::-webkit-scrollbar {
    width: 6px;
}

.filter-panel::-webkit-scrollbar-track {
    background: transparent;
}

.filter-panel::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.filter-panel::-webkit-scrollbar-thumb:hover {
    background: #999;
}

@media screen and (max-width: 991px) {
    .filter-panel {
        position: static;
        max-height: none;
        overflow-y: visible;
    }
}

.filter-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media screen and (max-width: 767px) {
    .filter-card {
        padding: 15px;
        margin-bottom: 15px;
    }
}

.filter-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.filter-heading.filter-toggle {
    position: relative;
    z-index: 10;
}

.filter-toggle-icon {
    transition: transform 0.3s ease;
}

.filter-heading.active .filter-toggle-icon {
    transform: rotate(180deg);
}

.filter-content {
    display: block;
    /* overflow: hidden; */
    transition: max-height 0.3s ease, opacity 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    /* overflow-x: hidden; */
}

@media screen and (max-width: 991px) {
    .filter-content {
        max-height: 0;
        opacity: 0;
        display: block;
        /* overflow: hidden; */
    }
    
    .filter-heading.active + .filter-content,
    .filter-heading.active ~ .filter-content {
        max-height: 2000px;
        opacity: 1;
    }
    
    .filter-heading.filter-toggle {
        pointer-events: all;
        cursor: pointer;
    }
}

@media screen and (min-width: 992px) {
    .filter-content {
        max-height: none !important;
        opacity: 1 !important;
        display: block !important;
    }
    
    .filter-heading.filter-toggle {
        pointer-events: none;
        cursor: default;
    }
}

/* Filter Options */
.filter-option {
    display: flex;
    align-items: center;
    padding: 10px 0;
    cursor: pointer;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.filter-option span:last-child {
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.filter-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.check-indicator {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin:0px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background: #fff;
}

.check-indicator svg {
    width: 14px;
    height: 14px;
    opacity: 0;
    transition: opacity 0.2s ease;
    color: #fff;
}

.filter-option input[type="checkbox"]:checked + .check-indicator {
    background: #0f4c5c;
    border-color: #0f4c5c;
}

.filter-option input[type="checkbox"]:checked + .check-indicator svg {
    opacity: 1;
}

.filter-option:hover .check-indicator {
    border-color: #0f4c5c;
}

/* Shop Results */
.shop-results {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.sorting-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .sorting-wrap {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .product_sorting {
        width: 100%;
    }
    
    .total-products {
        text-align: center;
        width: 100%;
    }
}

.product_sorting {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
}

.view_filter {
    font-size: 14px;
    color: #666;
}

.shop_products {
    width: 100%;
    min-height: 400px;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.products-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
    gap: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media screen and (max-width: 991px) {
    .products-list {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet and mobile */
        gap: 15px;
    }
}

@media screen and (max-width: 767px) {
    .products-list {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
        gap: 12px;
    }
}

@media screen and (max-width: 480px) {
    .products-list {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on small mobile */
        gap: 10px;
    }
}

.products-item {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Featured Products - Separate classes to avoid conflicts with shop page */
.fp-item {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Latest Products - Same styling as Featured Products */
.lp-item {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Featured Products List - Responsive grid (4 columns desktop, 2 columns mobile) */
.fp-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media screen and (max-width: 991px) {
    .fp-list {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet and mobile */
        gap: 18px;
    }
}

@media screen and (max-width: 767px) {
    .fp-list {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
        gap: 15px;
    }
}

@media screen and (max-width: 480px) {
    .fp-list {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on small mobile */
        gap: 12px;
    }
}

/* Latest Products List - Same styling as Featured Products (4 columns desktop, 2 columns mobile) */
.lp-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns on laptop/desktop */
    gap: 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media screen and (max-width: 991px) {
    .lp-list {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet and mobile */
        gap: 18px;
    }
}

@media screen and (max-width: 767px) {
    .lp-list {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
        gap: 15px;
    }
}

@media screen and (max-width: 480px) {
    .lp-list {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on small mobile */
        gap: 12px;
    }
}

.products-block {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.products-block:hover {
    transform: translateY(-5px);
}

.fp-block {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    height: 100%;
}

.fp-block:hover {
    transform: translateY(-5px);
}

/* Latest Products Block - Same styling as Featured Products */
.lp-block {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    height: 100%;
}

.lp-block:hover {
    transform: translateY(-5px);
}

.product-img {
    width: 100%;
    aspect-ratio: 1 / 1; /* Perfect square */
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 10px;
    background: #f5f5f5;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Featured Products Image - Also perfect square */
.fp-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* The parent .product-img container handles the square aspect ratio */
}

/* Latest Products Image - Same styling as Featured Products */
.lp-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* The parent .product-img container handles the square aspect ratio */
}

.product-name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
    line-height: 1.4;
}

/* Featured Products Name - matches Webflow styling */
.fp-name {
    margin-bottom: 2px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

/* Latest Products Name - Same styling as Featured Products */
.lp-name {
    margin-bottom: 2px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #0f4c5c;
}

.compare-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

/* Empty State */
.w-dyn-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #666;
    background: transparent !important;
}

.w-dyn-empty div {
    font-size: 16px;
}

/* Price Range Slider */
.price-range-slider {
    position: relative;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.range-bar {
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    position: relative;
    margin: 15px auto;
    width: 95%;
    max-width: 90%;
}

/* jQuery UI Slider Styles */
.range-bar.ui-slider {
    position: relative;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    border: none;
    width: 100%;
    margin: 0 auto;
}

.range-bar.ui-slider-horizontal {
    height: 4px;
}

.range-bar.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 3;
    width: 16px;
    height: 16px;
    cursor: pointer;
    touch-action: none;
    background: var(--sz-primary);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(15, 76, 92, 0.25), 0 0 0 1px rgba(15, 76, 92, 0.2);
    outline: none;
    top: 50%;
    margin-top: -8px;
    margin-left: -8px;
    transition: all 0.2s ease;
}

.range-bar.ui-slider .ui-slider-handle:first-child {
    background: var(--sz-primary);
    border-color: rgba(255, 255, 255, 0.9);
}

.range-bar.ui-slider .ui-slider-handle:last-child {
    background: var(--sz-secondary);
    border-color: rgba(255, 255, 255, 0.9);
}

.range-bar.ui-slider .ui-slider-handle:hover,
.range-bar.ui-slider .ui-slider-handle:focus {
    transform: scale(1.15);
    box-shadow: 0 3px 12px rgba(15, 76, 92, 0.3), 0 0 0 3px rgba(15, 76, 92, 0.3);
}

.range-bar.ui-slider .ui-slider-handle:active {
    transform: scale(1.1);
    box-shadow: 0 2px 6px rgba(15, 76, 92, 0.35), 0 0 0 2px rgba(15, 76, 92, 0.4);
}

.range-bar.ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    height: 4px;
    background: linear-gradient(to right, var(--sz-primary), var(--sz-secondary));
    border-radius: 2px;
    top: 0;
}

.range-bar.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
}

.range-bar.ui-slider-horizontal .ui-slider-range-min {
    left: 0;
}

.range-bar.ui-slider-horizontal .ui-slider-range-max {
    right: 0;
}

.slider-labels {
    position: relative;
    height: 40px;
    width: 95%;
    max-width: 90%;
    margin: 0 auto 5px auto;
    pointer-events: none;
}

.slider-label {
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 4;
    pointer-events: none;
}

.slider-label.min-label {
    left: 0;
}

.slider-label.max-label {
    left: auto;
    right: auto;
}

.label-value {
    display: inline-block;
    padding: 6px 10px;
    background: #005d6f;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 93, 111, 0.3);
    position: relative;
    min-width: 50px;
    text-align: center;
}

.slider-label.min-label .label-value {
    background: #005d6f;
}

.slider-label.max-label .label-value {
    background: #005d6f;
}

/* Tooltip pointer - downward arrow */
.label-value::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #005d6f;
}

/* Pagination */
.pagination_wrp {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.single_paginat {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    color: #666;
}

.single_paginat:hover {
    background: #0f4c5c;
    color: #fff;
    border-color: #0f4c5c;
}

.single_paginat.active {
    background: #0f4c5c;
    color: #fff;
    border-color: #0f4c5c;
    cursor: default;
}

/* ==========================================================================
   Cart Status Popup Styles
   ========================================================================== */

.cart-status-popup-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.cart-status-popup-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.cart-status-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    min-width: 320px;
    max-width: 90%;
}

.cart-status-popup.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: all;
}

.cart-status-popup__content {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-status-popup__close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #666;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.cart-status-popup__close:hover {
    color: #000;
    background: #f5f5f5;
}

.cart-status-popup__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #0f4c5c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.cart-status-popup__icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 3;
}

.cart-status-popup__text {
    flex: 1;
    min-width: 0;
}

.cart-status-popup__title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.4;
}

.cart-status-popup__message {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

@media screen and (max-width: 480px) {
    .cart-status-popup {
        min-width: 280px;
        margin: 0 20px;
    }
    
    .cart-status-popup__content {
        padding: 20px;
        gap: 12px;
    }
    
    .cart-status-popup__icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .cart-status-popup__icon svg {
        width: 20px;
        height: 20px;
    }
    
    .cart-status-popup__title {
        font-size: 16px;
    }
    
    .cart-status-popup__message {
        font-size: 13px;
    }
}

/* ==========================================================================
   Page Title & Common Elements
   ========================================================================== */

.page-title {
    padding: 60px 0;
    color: #000 !important;
    margin-bottom: 40px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.main-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #000;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.category-hero {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.page-data {
    padding-bottom: 60px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

@media screen and (max-width: 991px) {
    .page-title {
        padding: 50px 0;
        margin-bottom: 30px;
    }
    
    .main-title {
        font-size: 36px;
    }
}

@media screen and (max-width: 767px) {
    .page-title {
        padding: 30px 0;
        margin-bottom: 20px;
    }
    
    .main-title {
        font-size: 28px;
    }
    
    .category-hero {
        font-size: 14px;
    }
    
    .page-data {
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 480px) {
    .page-title {
        padding: 20px 0;
    }
    
    .main-title {
        font-size: 24px;
    }
}

/* ==========================================================================
   Authentication Pages (Login, Register, Forgot Password)
   ========================================================================== */

.auth-section {
    padding: 40px 0 60px;
}

.auth-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.auth-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.auth-brand {
    text-align: center;
    margin-bottom: 30px;
}

.auth-brand img {
    max-height: 60px;
    width: auto;
}

.auth-card h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
}

.auth-subtext {
    font-size: 14px;
    color: #666;
    margin: 0 0 30px 0;
    line-height: 1.6;
}

.auth-form {
    margin-top: 30px;
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.required_star {
    color: #e74c3c;
    margin-left: 2px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="password"],
.form-field input[type="tel"],
.form-field input[type="number"],
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: #0f4c5c;
    box-shadow: 0 0 0 3px rgba(15, 76, 92, 0.1);
}

.auth-password-field {
    position: relative;
}

.auth-password-field input {
    padding-right: 45px;
}

.ey_ctrl {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    font-size: 18px;
    transition: color 0.2s ease;
}

.ey_ctrl:hover {
    color: #0f4c5c;
}

.auth-alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.auth-alert.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.auth-alert.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.auth-alert.mt-2 {
    margin-top: 8px;
}

.auth-alert.mb-0 {
    margin-bottom: 0;
}

.auth-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.auth-actions--admin {
    justify-content: center;
}

.auth-link {
    color: #0f4c5c;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.auth-link:hover {
    color: #1f7a8c;
    text-decoration: underline;
}

.auth-link--muted {
    color: #666;
}

.auth-link--muted:hover {
    color: #0f4c5c;
}

.auth-button-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.auth-primary-btn {
    width: 100%;
    padding: 14px 24px;
    background: #0f4c5c;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.auth-primary-btn:hover {
    background: #1f7a8c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 76, 92, 0.3);
}

.auth-primary-btn:active {
    transform: translateY(0);
}

.auth-secondary-btn {
    width: 100%;
    padding: 14px 24px;
    background: #fff;
    color: #0f4c5c;
    border: 2px solid #0f4c5c;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.auth-secondary-btn:hover {
    background: #0f4c5c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 76, 92, 0.3);
}

.auth-secondary-btn--full {
    width: 100%;
}

.auth-terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.auth-terms input[type="checkbox"] {
    margin-top: 2px;
    cursor: pointer;
}

.auth-info-card {
    background: linear-gradient(135deg, #0f4c5c 0%, #1f7a8c 100%);
    border-radius: 12px;
    padding: 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-info-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.auth-info-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.auth-bullet {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-bullet li {
    font-size: 15px;
    padding-left: 24px;
    position: relative;
    color: rgba(255, 255, 255, 0.95);
}

.auth-bullet li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #b8e986;
    font-weight: bold;
    font-size: 18px;
}

.auth-info-card img {
    width: 100%;
    border-radius: 8px;
    margin-top: auto;
    max-height: 300px;
    object-fit: cover;
}

.auth-help-link {
    text-align: center;
    margin-top: 20px;
}

@media screen and (max-width: 991px) {
    .auth-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .auth-card {
        padding: 30px;
    }
    
    .auth-info-card {
        padding: 30px;
    }
}

@media screen and (max-width: 767px) {
    .auth-section {
        padding: 20px 0 40px;
    }
    
    .auth-card {
        padding: 24px;
    }
    
    .auth-card h2 {
        font-size: 24px;
    }
    
    .auth-info-card {
        padding: 24px;
    }
    
    .auth-info-card h3 {
        font-size: 20px;
    }
}

/* ==========================================================================
   Account Pages
   ========================================================================== */

.account-section {
    padding: 40px 0 60px;
}

.account-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.account-content {
    min-width: 0;
}

.account-alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.account-alert.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.account-alert.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.account-panel {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.account-panel--hero {
    background: linear-gradient(135deg, #0f4c5c 0%, #1f7a8c 100%);
    color: #fff;
}

.account-panel--hero h2 {
    color: #fff;
    margin: 0 0 10px 0;
}

.account-panel--hero p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 20px 0;
}

.account-panel-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.account-primary-link {
    padding: 12px 24px;
    background: #fff;
    color: #0f4c5c;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.account-primary-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #0f4c5c;
}

.account-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.account-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.account-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.account-card-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #333;
}

.account-card-header p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.account-link {
    color: #0f4c5c;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.account-link:hover {
    text-decoration: underline;
}

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

.account-info-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 14px;
}

.account-info-list li:last-child {
    border-bottom: none;
}

.account-info-list li span {
    color: #666;
}

.account-info-list li strong {
    color: #333;
    font-weight: 600;
}

@media screen and (max-width: 991px) {
    .account-layout {
        grid-template-columns: 1fr;
    }
    
    .account-summary-grid {
        grid-template-columns: 1fr;
    }
    
    .account-panel-body {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================================
   Preloader/Loader Styles
   ========================================================================== */

.preloader-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    visibility: visible;
    opacity: 1;
}

.preloader-backdrop.preloader-hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.preloader-content img {
    max-width: 120px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    animation: preloader-pulse 2s ease-in-out infinite;
}

.preloader-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0f4c5c;
    border-radius: 50%;
    animation: preloader-spin 1s linear infinite;
}

@keyframes preloader-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes preloader-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.95);
    }
}

@media screen and (max-width: 767px) {
    .preloader-content img {
        max-width: 80px;
        max-height: 80px;
    }
    
    .preloader-spinner {
        width: 30px;
        height: 30px;
        border-width: 3px;
    }
}

/* ==========================================================================
   Product Detail Page Styles
   ========================================================================== */

.product-main {
    padding-top: 40px;
    padding-bottom: 40px;
}

.product-wrap {
    flex-direction: column;
    gap: 30px;
}

.product-left {
    max-width: 100%;
    width: 100%;
}

.product-main-img {
    max-width: 100%;
    width: 100%;
}

.product-main-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.price-wrap {
    margin-bottom: 15px;
}

.single-text {
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-bottom {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.product-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.product-info img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.add-to-cart-form {
    margin-top: 20px;
}

.quantity-field {
    width: 80px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 10px;
}

.cart-btn {
    padding: 12px 24px;
    background-color: #0f4c5c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cart-btn:hover {
    background-color: #1f7a8c;
}

@media screen and (min-width: 992px) {
    .product-wrap {
        flex-direction: row;
        gap: 80px;
    }
    
    .product-left {
        max-width: 54%;
    }
    
    .product-main-img {
        max-width: 46%;
    }
    
    .product-bottom {
        flex-direction: row;
        gap: 30px;
    }
}

/* Checkout Page Styles */
.checkout-page {
    padding: 40px 0;
    min-height: 60vh;
}

.checkout-page .main-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2b2d42;
}

.checkout-page .category-hero {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
}

@media screen and (min-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 40px;
    }
}

.checkout-card {
    background: #fff;
    border: 1px solid #E9E4E4;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.checkout-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #2b2d42;
    border-bottom: 1px solid #E9E4E4;
    padding-bottom: 12px;
}

.checkout-summary {
    position: sticky;
    top: 20px;
    height: fit-content;
}

/* Address Selector */
.address-selector {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.address-selector-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.address-selector-header h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #2b2d42;
}

.address-manage-link {
    color: #0f4c5c;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.address-manage-link:hover {
    text-decoration: underline;
}

.address-selector-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.address-option {
    display: flex;
    align-items: flex-start;
    padding: 12px;
    background: #fff;
    border: 2px solid #E9E4E4;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.address-option:hover {
    border-color: #0f4c5c;
}

.address-option input[type="radio"] {
    margin-right: 12px;
    margin-top: 4px;
    cursor: pointer;
}

.address-option input[type="radio"]:checked + .address-option-body {
    color: #0f4c5c;
}

.address-option:has(input[type="radio"]:checked) {
    border-color: #0f4c5c;
    background: #f0f8fa;
}

.address-option-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.address-option-body strong {
    font-size: 14px;
    font-weight: 600;
    color: #2b2d42;
}

.address-option-text {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* Billing Input Fields */
.single_billing_inp {
    margin-bottom: 20px;
}

.single_billing_inp label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #2b2d42;
}

.single_billing_inp label span {
    color: #FB3245;
}

.single_billing_inp input,
.single_billing_inp textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E9E4E4;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.single_billing_inp input:focus,
.single_billing_inp textarea:focus {
    outline: none;
    border-color: #0f4c5c;
}

.single_billing_inp input.right {
    border-color: #28A745;
}

.single_billing_inp input.wrong {
    border-color: #FB3245;
}

.single_billing_inp p.inp_err_msg {
    margin-top: 6px;
    margin-bottom: 0;
    color: #FB3245;
    font-size: 12px;
}

/* Checkout Card Row Layout */
.checkout-card .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.checkout-card .row .col-lg-6,
.checkout-card .row .col-12 {
    padding: 0 15px;
    flex: 0 0 auto;
    margin-bottom: 0;
}

.checkout-card .row .col-lg-6 {
    width: 50%;
}

.checkout-card .row .col-12 {
    width: 100%;
}

.checkout-card .row .col-lg-6 .single_billing_inp,
.checkout-card .row .col-12 .single_billing_inp {
    margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
    .checkout-card .row .col-lg-6 {
        width: 100%;
        margin-bottom: 0;
    }
}

/* Order Summary */
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 14px;
    color: #2b2d42;
}

.summary-row.common_calculation_cls {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 16px;
    margin-bottom: 12px;
}

.summary-row.common_calculation_cls span:first-child {
    flex: 1;
    font-weight: 500;
}

.summary-row.common_calculation_cls span:last-child {
    font-weight: 600;
    color: #0f4c5c;
}

.summary-row:not(.summary-total) {
    color: #666;
}

.summary-total {
    border-top: 2px solid #E9E4E4;
    border-bottom: 2px solid #E9E4E4;
    padding: 16px 0;
    margin-top: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #2b2d42;
}

.summary-total span:last-child {
    color: #0f4c5c;
    font-size: 20px;
}

/* Payment Method Section */
.payment-method-section {
    margin-top: 24px;
}

.payment-method-section label {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 2px solid #E9E4E4;
    border-radius: 6px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.payment-method-section label:hover {
    border-color: #0f4c5c;
    background: #f0f8fa;
}

.payment-method-section input[type="radio"] {
    margin-right: 12px;
    cursor: pointer;
}

.payment-method-section input[type="radio"]:checked + span {
    color: #0f4c5c;
    font-weight: 600;
}

.payment-method-section label:has(input[type="radio"]:checked) {
    border-color: #0f4c5c;
    background: #f0f8fa;
}

.payment-method-section span {
    font-size: 14px;
    color: #2b2d42;
}

.gap10px {
    gap: 10px;
}

/* Form Controls */
.checkout-card .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E9E4E4;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.checkout-card .form-control:focus {
    outline: none;
    border-color: #0f4c5c;
}

.checkout-card label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #2b2d42;
}

.mt-3 {
    margin-top: 1rem;
}

/* Flexbox Utilities */
.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

/* Primary Button */
.primary-button {
    /* width: 100%; */
    padding: 16px 24px;
    background-color: #F4765B;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.primary-button:hover {
    background-color: #1f7a8c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 76, 92, 0.3);
}

.primary-button:active {
    transform: translateY(0);
}

.btn-text-wrap {
    position: relative;
    overflow: hidden;
}

.btn-text {
    display: block;
    transition: transform 0.3s ease;
}

.btn-text.hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(100%);
}

.primary-button:hover .btn-text {
    transform: translateY(-100%);
}

.primary-button:hover .btn-text.hover {
    transform: translateY(0);
}

/* Responsive Design */
@media screen and (max-width: 991px) {
    .checkout-page {
        padding: 20px 0;
    }
    
    .checkout-page .main-title {
        font-size: 24px;
    }
    
    .checkout-card {
        padding: 20px;
    }
    
    .checkout-summary {
        position: static;
    }
}

/* ==========================================================================
   Account Pages Styles
   ========================================================================== */

/* Account Section */
.account-section {
    padding: 40px 0 60px;
    min-height: 60vh;
}

.account-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

@media screen and (max-width: 991px) {
    .account-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Account Sidebar */
.account-sidebar {
    position: sticky;
    top: 20px;
}

.account-profile-card {
    background: #fff;
    border: 1px solid #E9E4E4;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.account-profile-info .account-greeting {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.account-profile-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #2b2d42;
}

.profile_hambarg {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #2b2d42;
    cursor: pointer;
    padding: 0;
}

@media screen and (max-width: 991px) {
    .profile_hambarg {
        display: block;
    }
    
    .acprof_wrap {
        display: none;
    }
    
    .acprof_wrap.active {
        display: block;
    }
}

.account-nav {
    background: #fff;
    border: 1px solid #E9E4E4;
    border-radius: 8px;
    padding: 16px 0;
}

.account-nav-group {
    padding: 0 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E9E4E4;
}

.account-nav-group--borderless {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.account-nav-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.account-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #2b2d42;
    text-decoration: none;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin: 4px 0;
}

.account-nav-link i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.account-nav-link:hover {
    background: #f8f9fa;
    color: #0f4c5c;
}

.account-nav-link.active {
    background: #0f4c5c;
    color: #fff;
}

.account-nav-link.logout {
    color: #FB3245;
}

.account-nav-link.logout:hover {
    background: #fff5f5;
    color: #FB3245;
}

/* Account Content */
.account-content {
    min-height: 400px;
}

/* Account Alerts */
.account-alert {
    padding: 16px 20px;
    border-radius: 6px;
    margin-bottom: 24px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.account-alert.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.account-alert.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.account-alert.mt-2 {
    margin-top: 8px;
}

.account-alert.mb-0 {
    margin-bottom: 0;
}

/* Account Panels */
.account-panel {
    background: #fff;
    border: 1px solid #E9E4E4;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.account-panel--hero {
    background: linear-gradient(135deg, #0f4c5c 0%, #1f7a8c 100%);
    color: #fff;
    border: none;
}

.account-panel--hero h2,
.account-panel--hero p {
    color: #fff;
}

.account-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.account-panel-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 6px 0;
    color: #2b2d42;
}

.account-panel--hero .account-panel-header h3 {
    color: #fff;
}

.account-panel-header p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.account-panel--hero .account-panel-header p {
    color: rgba(255, 255, 255, 0.9);
}

.account-panel-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.account-panel--hero .account-panel-body h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.account-panel--hero .account-panel-body p {
    font-size: 16px;
    margin: 0;
    opacity: 0.95;
}

.account-primary-link {
    padding: 12px 24px;
    background: #fff;
    color: #0f4c5c;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.account-primary-link:hover {
    background: #f0f8fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Account Summary Grid */
.account-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
    .account-summary-grid {
        grid-template-columns: 1fr;
    }
}

/* Account Cards */
.account-card {
    background: #fff;
    border: 1px solid #E9E4E4;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.account-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E9E4E4;
}

.account-card-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #2b2d42;
}

.account-card-header p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.account-link {
    color: #0f4c5c;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.account-link:hover {
    color: #1f7a8c;
    text-decoration: underline;
}

.account-card-body {
    font-size: 14px;
    color: #2b2d42;
    line-height: 1.6;
}

.account-card-body p {
    margin: 0;
}

/* Account Info List */
.account-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.account-info-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.account-info-list li:last-child {
    border-bottom: none;
}

.account-info-list li span {
    color: #666;
}

.account-info-list li strong {
    color: #2b2d42;
    font-weight: 600;
}

/* Account Empty State */
.account-empty {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 14px;
}

.account-empty.large {
    padding: 60px 20px;
    font-size: 16px;
}

/* Account Orders */
.account-orders {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.account-order-card {
    background: #fff;
    border: 1px solid #E9E4E4;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.account-order-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #0f4c5c;
}

.order-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.order-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.order-id {
    font-weight: 600;
    color: #0f4c5c;
    font-size: 14px;
}

.order-date {
    font-size: 13px;
    color: #666;
}

.order-card-body {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.order-gallery {
    display: flex;
    gap: 8px;
    align-items: center;
}

.order-gallery img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #E9E4E4;
}

.order-gallery-more {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: 1px solid #E9E4E4;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #666;
}

.order-summary {
    flex: 1;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.order-summary-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.order-summary-row span {
    font-size: 12px;
    color: #666;
}

.order-summary-row strong {
    font-size: 16px;
    font-weight: 600;
    color: #2b2d42;
}

/* Status Pills */
.status-pill {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pill.sent,
.status-pill.delivered {
    background: #d4edda;
    color: #155724;
}

.status-pill.pending,
.status-pill.processing {
    background: #fff3cd;
    color: #856404;
}

.status-pill.cancelled,
.status-pill.failed {
    background: #f8d7da;
    color: #721c24;
}

/* Account Forms */
.account-form {
    margin-top: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

/* Make form-field containing textarea span full width */
.form-field:has(textarea),
.form-field:nth-child(4) {
    grid-column: 1 / -1;
}

@media screen and (max-width: 991px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #2b2d42;
}

.required_star {
    color: #FB3245;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E9E4E4;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #0f4c5c;
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
}

.form-field--full {
    grid-column: 1 / -1;
}

/* Password Field with Eye Icon */
.auth-password-field {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-password-field input {
    padding-right: 45px;
}

.ey_ctrl {
    position: absolute;
    right: 16px;
    cursor: pointer;
    color: #666;
    font-size: 18px;
    display: flex;
    align-items: center;
    z-index: 1;
}

.ey_ctrl:hover {
    color: #0f4c5c;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

.account-primary-btn {
    padding: 12px 32px;
    background: #0f4c5c;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.account-primary-btn:hover {
    background: #1f7a8c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 76, 92, 0.3);
}

.account-primary-btn:active {
    transform: translateY(0);
}

/* Order Details Page */
.order_detail_wrapper {
    background: #fff;
    border: 1px solid #E9E4E4;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
}

.od_title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #2b2d42;
    padding-bottom: 16px;
    border-bottom: 1px solid #E9E4E4;
}

.orderdet_info {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E9E4E4;
}

.single_orderdet {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.single_orderdet h5 {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.single_orderdet p {
    font-size: 14px;
    color: #2b2d42;
    margin: 0;
}

.text-color {
    color: #0f4c5c !important;
    font-weight: 600;
}

.order_prodetails {
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.order_prodetails:last-child {
    border-bottom: none;
}

.orderprod_img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #E9E4E4;
    flex-shrink: 0;
}

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

.pdname h5 {
    font-size: 16px;
    font-weight: 600;
    color: #2b2d42;
    margin: 0;
}

.profile_info_wrap {
    margin-top: 24px;
}

.single_prof_info {
    background: #fff;
    border: 1px solid #E9E4E4;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
}

.prof_info_title h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #2b2d42;
    padding-bottom: 12px;
    border-bottom: 1px solid #E9E4E4;
}

.prfo_info_cont p {
    font-size: 14px;
    color: #2b2d42;
    line-height: 1.6;
    margin: 0;
}

.shadow_sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Responsive Account Styles */
@media screen and (max-width: 991px) {
    .account-section {
        padding: 30px 0 40px;
    }
    
    .account-layout {
        gap: 20px;
    }
    
    .account-panel {
        padding: 20px;
    }
    
    .account-panel-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .order-card-body {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media screen and (max-width: 767px) {
    .account-section {
        padding: 20px 0 30px;
    }
    
    .account-card,
    .account-panel {
        padding: 16px;
    }
    
    .account-summary-grid {
        gap: 16px;
    }
    
    .order-card-top {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .order-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Legacy Account Page Styles (for order_details.php) */
.my_account_wrap {
    padding: 40px 0 60px;
}

.section_padding_b {
    padding-bottom: 60px;
}

.alert-wrapper {
    margin-bottom: 24px;
}

.alert {
    padding: 16px 20px;
    border-radius: 6px;
    border: 1px solid transparent;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

.alert-body {
    margin: 0;
    font-size: 14px;
}

.w-xs-33 {
    width: auto;
}

@media screen and (max-width: 767px) {
    .w-xs-33 {
        width: 100%;
    }
}

.ms-md-auto {
    margin-left: auto;
}

@media screen and (max-width: 767px) {
    .ms-md-auto {
        margin-left: 0;
    }
}

.ms-auto {
    margin-left: auto;
}

@media screen and (max-width: 767px) {
    .ms-auto {
        margin-left: 0;
    }
}

.mt-3 {
    margin-top: 1rem;
}

.mt-md-0 {
    margin-top: 0;
}

@media screen and (max-width: 767px) {
    .mt-md-0 {
        margin-top: 1rem;
    }
}

.mt-4 {
    margin-top: 1.5rem;
}

.mb-0 {
    margin-bottom: 0;
}

.text-semibold {
    font-weight: 600;
}

.justify-content-between {
    justify-content: space-between;
}

.my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

hr.my-2 {
    border: none;
    border-top: 1px solid #E9E4E4;
    margin: 12px 0;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
    font-size: 14px;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #0f4c5c;
}

.breadcrumbs a.active {
    color: #0f4c5c;
    font-weight: 500;
}

.breadcrumbs a i {
    font-size: 16px;
}

/* Row and Column Utilities */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-4,
.col-lg-6,
.col-lg-9,
.col-12 {
    padding: 0 15px;
    flex: 0 0 auto;
}

.col-12 {
    width: 100%;
}

.col-lg-9 {
    width: 75%;
}

.col-lg-6 {
    width: 50%;
}

.col-lg-4 {
    width: 33.333333%;
}

@media screen and (max-width: 991px) {
    .col-lg-9,
    .col-lg-6,
    .col-lg-4,
    .col-12 {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* Additional Account Utilities */
.align-items-center {
    align-items: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.d-none {
    display: none;
}

/* ==========================================================================
   Language Selector Styles
   ========================================================================== */
.language-selector {
    display: flex;
    align-items: center;
    margin-right: 15px;
    margin-left: 10px; /* Add spacing from previous element */
}

/* Hide mobile-only language selector on desktop by default */
.language-selector.mobile-only {
    display: none;
}

.language-selector select.lan_name {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 6px 12px;
    padding-right: 30px; /* Space for arrow */
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    min-width: 100px;
}

.language-selector select.lan_name:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.1);
}

.language-selector select.lan_name:focus {
    border-color: rgba(255, 255, 255, 0.7);
    background-color: rgba(255, 255, 255, 0.15);
}

/* Fix dropdown options - dark background with white text */
.language-selector select.lan_name option {
    background: #0f4c5c !important;
    color: white !important;
    padding: 10px 12px;
    font-size: 14px;
}

/* Ensure dropdown menu has proper styling */
.language-selector select.lan_name option:checked {
    background: #1f7a8c !important;
    color: white !important;
}

.language-selector select.lan_name option:hover {
    background: #1f7a8c !important;
}

@media screen and (max-width: 767px) {
    .language-selector {
        margin-right: 10px;
    }
    
    .language-selector select.lan_name {
        font-size: 13px;
        padding: 5px 10px;
        padding-right: 28px;
        min-width: 90px;
    }
}

/* ==========================================================================
   Navbar Navigation Links Fix
   ========================================================================== */
.nav-menu-wrap {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 600px;
    overflow: visible;
    z-index: 10;
}

/* Desktop: show menu horizontally */
@media screen and (min-width: 992px) {
    .nav-menu {
        display: flex !important;
        align-items: center;
        flex-wrap: nowrap;
        gap: 0;
        white-space: nowrap;
        width: 100%;
        justify-content: center;
    }
    
    .nav-menu .nav-link {
        display: inline-flex !important;
        white-space: nowrap;
        flex-shrink: 0;
        margin: 0 8px;
        padding: 0 8px;
    }
    
    /* Hide search form inside nav-menu on desktop - it's in navbar-right */
    .nav-menu .search.w-form {
        display: none !important;
    }
}

/* Ensure navbar-right items don't overlap */
.navbar-right {
    flex-shrink: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Ensure language selector is properly styled */
.navbar-right .language-selector {
    margin-right: 0;
    margin-left: 0;
}

/* Ensure user icon and cart button are properly aligned */
.navbar-right .user-icon,
.navbar-right .cart-button {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 991px) {
    /* Hide language selector in navbar-right on mobile */
    .navbar-right .language-selector {
        display: none;
    }
    
    /* Show language selector in mobile menu */
    .language-selector.mobile-only {
        display: flex !important;
        width: 100%;
        margin: 15px 0;
        padding: 10px 0;
        border-top: 1px solid rgba(186, 138, 91, 0.1);
        border-bottom: 1px solid rgba(186, 138, 91, 0.1);
    }
    
    .language-selector.mobile-only select.lan_name {
        width: 100%;
        max-width: min-content;
        background-color: #f8f1e8;
        
    border-radius: 50px;
        color: var(--body);
        border: 1px solid rgba(186, 138, 91, 0.2);
        /*padding: 10px 35px 10px 15px;*/
    }
    
    .language-selector.mobile-only select.lan_name option {
        background: #fff !important;
        color: #000 !important;
    }
    
    .nav-menu-wrap {
        position: static;
        transform: none;
        width: 100%;
        max-width: 100%;
    }
    
    /* Respect Webflow's default behavior - menu hidden by default on mobile */
    /* Webflow's CSS already hides .w-nav-menu on mobile, we just style it when open */
    .nav-menu.w--nav-menu-open {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        background-color: #fdf7f1;
        border-bottom: 1px solid rgba(186, 138, 91, 0.1);
        padding: 20px;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    
    .nav-menu.w--nav-menu-open .nav-link {
        width: 100%;
        justify-content: flex-start;
        margin: 0;
        padding: 10px 0;
        color: #000 !important;
    }
    
    .nav-menu.w--nav-menu-open .search.w-form {
        display: flex !important;
        width: 100%;
        margin-top: 10px;
        position: static;
    }
}

/* Hide mobile-only language selector on desktop */
@media screen and (min-width: 992px) {
    .language-selector.mobile-only {
        display: none !important;
    }
}

/* ==========================================================================
   Forgot Password Page Styling
   ========================================================================== */
.section_padding {
    padding: 60px 0;
}

.padding_default {
    padding: 40px;
    background: #fff;
    border-radius: 8px;
}

.shadow_sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.title_2 {
    font-size: 28px;
    font-weight: 600;
    color: #0f4c5c;
    margin-bottom: 15px;
}

.text_md {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.single_billing_inp {
    margin-bottom: 20px;
}

.single_billing_inp label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.single_billing_inp input[type="email"],
.single_billing_inp input[type="text"],
.single_billing_inp input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.single_billing_inp input[type="email"]:focus,
.single_billing_inp input[type="text"]:focus,
.single_billing_inp input[type="password"]:focus {
    outline: none;
    border-color: #0f4c5c;
}

.required_star {
    color: #e74c3c;
}

.default_btn {
    background: #0f4c5c;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.default_btn:hover {
    background: #1f7a8c;
}

.default_btn.rounded {
    border-radius: 4px;
}

.default_btn.small {
    padding: 10px 25px;
    font-size: 14px;
}

.breadcrumbs {
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumbs a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #0f4c5c;
}

.breadcrumbs a.active {
    color: #0f4c5c;
    font-weight: 500;
}

.breadcrumbs i {
    margin-right: 5px;
}

/* ==========================================================================
   RTL (Right-to-Left) Support for Arabic Language
   ========================================================================== */
body[dir="rtl"],
body.lang-arabic,
body.rtl {
    direction: rtl;
}

/* ==========================================================================
   Banner Section RTL Support - Fix text and image positioning
   ========================================================================== */
/* Position text containers on the right side in RTL */
body.rtl .shipping-data,
body[dir="rtl"] .shipping-data {
    text-align: right;
    align-items: flex-end;
    margin-left: auto;
    margin-right: 0;
    position: relative;
    z-index: 2;
    max-width: 50% !important; /* Adjust width to leave space for image */
}

body.rtl .banner-data,
body[dir="rtl"] .banner-data {
    align-items: flex-end;
    text-align: right;
    margin-left: auto;
    margin-right: 0;
    position: relative;
    z-index: 2;
    width: auto;
    max-width: 50% !important; /* Adjust width to leave space for image */
}

body.rtl .on-sale-data,
body[dir="rtl"] .on-sale-data {
    align-items: flex-end;
    text-align: right;
    margin-left: auto;
    margin-right: 0;
    position: relative;
    z-index: 2;
    width: auto;
    max-width: 50% !important; /* Adjust width to leave space for image */
}

/* Ensure text content is properly aligned */
body.rtl .banner-sub-title,
body[dir="rtl"] .banner-sub-title,
body.rtl .banner-title,
body[dir="rtl"] .banner-title,
body.rtl .banner-info,
body[dir="rtl"] .banner-info {
    text-align: right;
    direction: rtl;
}

/* Flip image positions for RTL - swap left/right positioning */
body.rtl .banner .shipping-img,
body[dir="rtl"] .banner .shipping-img {
    left: 30px !important;
    right: auto !important;
    position: absolute !important;
    z-index: 1;
}

body.rtl .banner .banner-top-img,
body[dir="rtl"] .banner .banner-top-img {
    left: 0px !important;
    right: auto !important;
    position: absolute !important;
    z-index: 1;
}

body.rtl .banner .banner-bottom-img,
body[dir="rtl"] .banner .banner-bottom-img {
    left: 30px !important;
    right: auto !important;
    position: absolute !important;
    z-index: 1;
}

body.rtl .banner .on-sale-img,
body[dir="rtl"] .banner .on-sale-img {
    left: 25px !important;
    right: auto !important;
    position: absolute !important;
    z-index: 1;
}

/* Ensure banner containers maintain proper layout */
body.rtl .free-shipping,
body[dir="rtl"] .free-shipping,
body.rtl .banner-top,
body[dir="rtl"] .banner-top,
body.rtl .banner-bottom,
body[dir="rtl"] .banner-bottom,
body.rtl .on-sale,
body[dir="rtl"] .on-sale {
    position: relative;
    overflow: visible;
}

/* Ensure free-shipping container positions text on right */
body.rtl .free-shipping,
body[dir="rtl"] .free-shipping {
    flex-direction: row-reverse;
    justify-content: flex-start;
}


/* Reverse banner link direction for RTL */
body.rtl .banner-link,
body[dir="rtl"] .banner-link {
    flex-direction: row-reverse;
}

/* Flip arrow icon for RTL */
body.rtl .banner-link .arrow,
body[dir="rtl"] .banner-link .arrow {
    transform: scaleX(-1);
}

body.rtl .banner-link .btn-icon,
body[dir="rtl"] .banner-link .btn-icon {
    order: -1;
}

/* ==========================================================================
   Banner Slider RTL Fix - Ensure all banners are visible
   ========================================================================== */
/* Force LTR direction on slider mask to prevent RTL layout issues */
body.rtl .banner-slider .w-slider-mask,
body[dir="rtl"] .banner-slider .w-slider-mask {
    direction: ltr;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

/* Ensure slides are visible and properly positioned in RTL */
body.rtl .banner-slider .w-slide,
body[dir="rtl"] .banner-slider .w-slide {
    display: inline-block;
    position: relative;
    vertical-align: top;
    min-width: 100%;
}

/* Ensure banner section doesn't hide content in RTL */
body.rtl .banner-section,
body[dir="rtl"] .banner-section {
    overflow: visible;
    direction: ltr;
}

/* Fix banner grid layouts in RTL */
body.rtl .banner-grid-01,
body[dir="rtl"] .banner-grid-01,
body.rtl .banner-grid-02,
body[dir="rtl"] .banner-grid-02 {
    direction: ltr;
}

/* Ensure banner detail wrapper maintains proper layout */
body.rtl .banner-detail-wrapper,
body[dir="rtl"] .banner-detail-wrapper {
    direction: ltr;
}

/* Fix text alignment within banner slides for RTL */
body.rtl .banner-slider .banner-text-wrapper,
body[dir="rtl"] .banner-slider .banner-text-wrapper {
    direction: rtl;
    text-align: right;
}

body.rtl .banner-slider .banner-text-wrapper.left,
body[dir="rtl"] .banner-slider .banner-text-wrapper.left {
    text-align: left;
}
