.home-slider img.slide-bg {
    width: 100%;
    height: auto;
    min-height: 0;
}

.menu .flash-deals > .flash-deals-link {
    display: block;
    padding: 1rem 0;
}

.menu .flash-deals > .flash-deals-link span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1px solid #ffb400;
    color: #fff;
    background: linear-gradient(135deg, #ffb400 0%, #ff5a00 45%, #e0004d 100%);
    background-size: 200% 200%;
    background-position: 0% 50%;
    box-shadow: 0 8px 16px rgba(224, 0, 77, 0.25);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.2s ease, background-position 0.25s ease, transform 0.2s ease;
}

.menu .flash-deals > .flash-deals-link:hover span,
.menu .flash-deals > .flash-deals-link:focus span {
    background-position: 100% 50%;
    box-shadow: 0 12px 22px rgba(224, 0, 77, 0.3);
    animation: flash-deal-bounce 0.6s ease;
}

@keyframes flash-deal-bounce {
    0% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-4px);
    }
    50% {
        transform: translateY(0);
    }
    70% {
        transform: translateY(-2px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Flash Deal Badge Styling */
.product-label.label-flash-deal {
    background: linear-gradient(135deg, #ffb400 0%, #ff5a00 45%, #e0004d 100%) !important;
    color: white !important;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(224, 0, 77, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

.featured-products-section .section-title,
.new-products-section .section-title,
.categories-section-title {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 600;
    letter-spacing: 0.015em;
    color: #101114;
    margin-bottom: 1.75rem;
    text-transform: none;
    line-height: 1.2;
}

.modern-section-title {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 600;
    letter-spacing: 0.015em;
    color: #101114;
    line-height: 1.2;
}

.featured-products-section .section-title::after,
.new-products-section .section-title::after,
.categories-section-title::after {
    content: "";
    display: inline-block;
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, #0087cb 0%, #ff5a00 100%);
    margin-left: 12px;
    vertical-align: middle;
}

.section-shell {
    padding-left: clamp(1rem, 4vw, 3.5rem);
    padding-right: clamp(1rem, 4vw, 3.5rem);
}

.header-shell {
    padding-left: clamp(1rem, 4vw, 3.5rem);
    padding-right: clamp(1rem, 4vw, 3.5rem);
}

.section-head {
    margin-bottom: 1.75rem;
}

.section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.7rem;
    font-weight: 600;
    color: #ff5a00;
    margin-bottom: 0.4rem;
}

.section-subtitle {
    font-size: 1rem;
    color: #4b5563;
    margin: 0.35rem 0 0;
    max-width: 720px;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.flash-deals-section {
    padding: 3rem 0;
}

.flash-deals-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 0;
    background: #fff;
}

.flash-deals-left {
    padding: 2.6rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.flash-deals-right {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
    min-height: 320px;
}

.flash-image-frame {
    width: 100%;
    height: 100%;
}

.flash-image-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
}

.flash-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.8rem;
    border-radius: 999px;
    color: #ff2b6a;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.flash-kicker {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ff5a00;
    margin-bottom: 0.5rem;
}

.flash-title {
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    font-weight: 700;
    color: #101114;
    margin-bottom: 0.5rem;
}

.flash-title span {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.8rem;
    color: #ff5a00;
    margin-bottom: 0.4rem;
}

.flash-subtitle {
    font-size: 20px;
    margin-top: 30px;
    color: #4b5563;
    margin-bottom: 0;
    max-width: 420px;
}

.flash-deals-icon {
    width: 30%;
    height: auto;
}

.flash-btn {
    margin-top: 20px;
    padding: 0.75rem 1.6rem;
    font-weight: 600;
    border-radius: 0;
}

.flash-deals-timer {
    display: grid;
    grid-template-columns: repeat(4, minmax(70px, 1fr));
    gap: 0.75rem;
    margin: 0;
    width: 100%;
    max-width: 480px;
}

.flash-deals-timer .time-block {
    background: #f4f6f9;
    padding: 1rem 0.5rem;
    text-align: center;
}

.flash-deals-timer .time-value {
    display: block;
    font-size: 64px;
    font-weight: 700;
    color: #101114;
}

.flash-deals-timer .time-label {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b7280;
}

.category-filter-section {
    padding: 2.6rem 0;
    background: #fff;
}

.category-filter-row + .category-filter-row {
    border-top: 1px solid #eef1f4;
    margin-top: 2rem;
    padding-top: 2rem;
}

.category-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.4rem;
    flex-wrap: wrap;
}

.category-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 0.35rem;
}

.category-filter-tab {
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 16px;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.category-filter-tab.is-active,
.category-filter-tab:hover,
.category-filter-tab:focus {
    background: #111;
    border-color: #111;
    color: #fff;
}

.category-filter-row.is-filtered .category-filter-item {
    display: none;
}

.category-filter-row.is-filtered .category-filter-item.is-visible {
    display: block;
}

/* Ensure products are visible by default before filtering is applied */
.category-filter-item {
    display: block;
}

.water-divider {
    padding: 2.5rem 0 3rem;
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 70%);
}

.water-divider-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 2rem;
}

.water-copy {
    max-width: 520px;
}

.water-animation {
    position: relative;
    width: 100%;
    min-height: 220px;
    overflow: hidden;
}

.water-wave {
    width: 100%;
    height: 220px;
    display: block;
}

.wave-track {
    animation: wave-shift 12s linear infinite;
}

.wave-track-2 {
    animation-duration: 9s;
    opacity: 0.75;
}

.wave-1 {
    fill: rgba(0, 140, 210, 0.18);
}

.wave-2 {
    fill: rgba(0, 140, 210, 0.32);
}

@keyframes wave-shift {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-1200px);
    }
}

@media (max-width: 991px) {
    .water-divider-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .flash-deals-wrap {
        grid-template-columns: 1fr;
    }

    .flash-deals-timer {
        width: 100%;
    }

    .flash-deals-right {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .flash-deals-left {
        padding: 2rem 1.5rem;
    }

    .flash-deals-right {
        min-height: 240px;
    }

    .flash-deals-timer .time-value {
        font-size: 2rem;
    }
}

/* ==========================
   Responsive Product Cards
   ========================== */

/* Tablet and below - 2 columns */
@media (max-width: 991px) {
    .split-product-section .product-scroll-row {
        --product-scroll-gap: 16px;
        grid-auto-columns: calc((100% - 2 * var(--product-scroll-gap)) / 3);
    }
}

/* Small tablets - 2 columns */
@media (max-width: 768px) {
    .split-product-section .product-scroll-row {
        --product-scroll-gap: 14px;
        grid-auto-columns: calc((100% - 1 * var(--product-scroll-gap)) / 2);
    }
}

/* Mobile - 1.3 columns for better browsing */
@media (max-width: 576px) {
    .split-product-section .product-scroll-row {
        --product-scroll-gap: 12px;
        grid-auto-columns: calc((100% - 0.5 * var(--product-scroll-gap)) / 1.3);
    }
}

/* Very small mobile devices */
@media (max-width: 375px) {
    .split-product-section .product-scroll-row {
        --product-scroll-gap: 10px;
        grid-auto-columns: calc((100% - 0.3 * var(--product-scroll-gap)) / 1.2);
    }
}

/* ==========================
   PRODUCT CARDS - ALL VARIANTS
   Consolidated section for all product card styles
   ========================== */

/* Base Product Card Styles */
.product-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 1.4rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card figure {
    margin: 0 0 1rem;
    text-align: center;
}

.product-card img {
    width: 100%;
    max-height: 160px;
    object-fit: contain;
}

.product-card .product-title {
    font-size: calc(0.95rem + 20px);
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.product-card .product-title a {
    color: #111;
}

.product-card .product-price {
    font-weight: 700;
    font-size: calc(0.95rem + 20px);
    margin-bottom: 0.7rem;
}

.swatch-list {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.3rem;
}

.swatch {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #222;
    display: inline-block;
}

.product-cta {
    margin-top: auto;
    font-size: calc(0.7rem + 20px);
    letter-spacing: 0.18em;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
}

.product-card.compact {
    padding: 1.1rem;
}

.product-card.compact img {
    max-height: 130px;
}

/* Featured & New Products Section Cards */
.featured-products-section .product-default,
.new-products-section .product-default {
    background: #fff;
    border-radius: 0;
    border: 1px solid #b9b9b9;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.featured-products-section .product-default:hover,
.new-products-section .product-default:hover {
    transform: translateY(-4px);
}

.featured-products-section .product-default figure,
.new-products-section .product-default figure {
    padding: 18px 18px 0;
    margin: 0;
    background: #f8fafc;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-products-section .product-default figure img,
.new-products-section .product-default figure img {
    border-radius: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.featured-products-section .product-details,
.new-products-section .product-details {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    /* Override theme .product-default .product-details { justify-content: center } so margin-top:auto pins CTA to bottom */
    justify-content: flex-start;
}

.featured-products-section .category-list,
.new-products-section .category-list {
    min-height: 24px;
    /* margin-bottom: 4px; */
}

.featured-products-section .product-category,
.new-products-section .product-category {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0f172a;
    background: rgba(15, 23, 42, 0.06);
    white-space: nowrap;
}

.featured-products-section .product-title,
.new-products-section .product-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    margin: 8px 0 6px;
    color: #121214;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: visible !important;
    min-height: 4.2em;
}

.featured-products-section .product-title a,
.new-products-section .product-title a {
    color: inherit;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    display: block !important;
    word-break: break-word;
}

.featured-products-section .product-title a:hover,
.new-products-section .product-title a:hover {
    color: #0073af;
}

.featured-products-section .price-box,
.new-products-section .price-box {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    align-content: flex-start;
    min-height: 0.5em;
}

.featured-products-section .product-price,
.new-products-section .product-price {
    font-size: 19px;
    font-weight: 600;
    color: #0f172a;
}

.featured-products-section .price-box > div,
.new-products-section .price-box > div {
    font-size: 1.5rem;
    color: #6b7280;
    font-weight: 500;
}

.featured-products-section .product-action .btn-add-cart,
.new-products-section .product-action .btn-add-cart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 1.4rem;
    border-radius: 999px;
    border: 1px solid #013653;
    background: #fff;
    color: #013653;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    will-change: transform, background, border-color, color;
}

.featured-products-section .product-action,
.new-products-section .product-action {
    margin-top: auto;
}

.featured-products-section .product-action form,
.new-products-section .product-action form {
    width: 100%;
}

.featured-products-section .product-action .water-effect-wrapper,
.new-products-section .product-action .water-effect-wrapper {
    width: 100%;
}

.featured-products-section .product-action .btn-add-cart:hover,
.new-products-section .product-action .btn-add-cart:hover {
    background: #0073af;
    border-color: #013653;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 135, 203, 0.35);
}

.featured-products-section .product-action .btn-add-cart:active,
.new-products-section .product-action .btn-add-cart:active {
    transform: translateY(0);
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Owl: equal slide heights in a row (otherwise each card is only as tall as its content). */
.split-product-section .featured-products-section.owl-carousel .owl-stage,
.split-product-section .new-products-section.owl-carousel .owl-stage {
    display: flex;
}

.split-product-section .featured-products-section.owl-carousel .owl-item,
.split-product-section .new-products-section.owl-carousel .owl-item {
    float: none;
    display: flex;
    align-items: stretch;
}

.split-product-section .featured-products-section.owl-carousel .owl-item > .product-item,
.split-product-section .new-products-section.owl-carousel .owl-item > .product-item {
    display: flex;
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
}

/* Category Filter Cards - Home Page */
.category-filter-card {
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category-filter-card figure {
    margin: 0;
    padding: 1rem 1rem 0;
    background: #f8fafc;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.category-filter-card figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.category-filter-card .product-details {
    padding: 0.9rem 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: flex-start;
}

.category-filter-card .category-list {
    min-height: 24px;
    margin-bottom: 4px;
    white-space: nowrap;
}

.category-filter-card .product-category {
    /* display: inline-block; */
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0f172a;
    background: rgba(15, 23, 42, 0.06);
    white-space: nowrap;
}

.category-filter-card .product-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 0.75rem;
    text-align: center;
    min-height: 40px;
}

.category-filter-card .product-title a {
    color: inherit;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    display: block !important;
    word-break: break-word;
}

.category-filter-card .product-title a:hover {
    color: #0073af;
}

.category-filter-card .price-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
    min-height: 32px;
}

.category-filter-card .product-price {
    font-size: 17px;
    font-weight: 600;
    color: #0f172a;
}

.category-filter-card .price-box > div {
    font-size: 1.5rem;
    color: #6b7280;
    font-weight: 500;
}

.category-filter-card .product-action {
    margin-top: auto;
    margin-bottom: 0;
}

.category-filter-card .product-action form {
    width: 100%;
}

.category-filter-card .product-action .water-effect-wrapper {
    width: 100%;
}

.category-filter-card .btn-add-cart {
    border-radius: 999px;
    border: 1px solid #013653;
    background: #fff;
    color: #013653;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    will-change: transform, background, border-color, color;
}

.category-filter-card .btn-add-cart:hover {
    background: #0073af;
    border-color: #013653;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.15);
}

.category-filter-card .btn-add-cart:active {
    transform: translateY(0);
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Shop Page Category Sidebar Styles */
.shop-category-card {
    border: 1px solid #e5e7eb !important;
    border-radius: 8px;
    overflow: hidden;
}

.shop-category-header {
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    padding: 1.25rem;
    font-size: 1.2rem;
    color: #000;
    font-weight: 700;
}

.shop-all-categories {
    border: none;
    padding: 0.9rem 1.25rem;
    font-size: 1.15rem;
    transition: all 0.2s ease;
}

.shop-all-categories.active {
    background: linear-gradient(135deg, #0073af 0%, #005a8c 100%);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 115, 175, 0.2);
}

.shop-all-categories:not(.active) {
    background: #fff;
    color: #111;
    font-weight: 600;
}

.shop-all-categories:not(.active):hover {
    background: #f0f9ff;
    color: #0073af;
}

.shop-main-category-wrapper {
    border: none;
    background: #fff;
}

.shop-category-link {
    padding: 0.85rem 1.25rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    background: #fff;
    transition: all 0.2s ease;
    text-decoration: none;
    border: none;
}

.shop-category-link:hover:not(.active-category) {
    background: #f0f9ff;
    color: #0073af;
}

.shop-category-link.active-category {
    background: linear-gradient(135deg, #0073af 0%, #005a8c 100%);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 115, 175, 0.2);
}

.shop-subcategory-toggle {
    padding: 0.85rem 1.25rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    background: #fff;
    transition: all 0.2s ease;
    border-bottom: 1px solid #e5e7eb;
}

.shop-subcategory-toggle:hover {
    background: #f0f9ff;
    color: #0073af;
}

.shop-subcategory-toggle i.fa-chevron-down {
    font-size: 1.25rem;
    color: #6b7280;
    transition: transform 0.2s;
}

.shop-subcategory-toggle[aria-expanded="true"] i.fa-chevron-down {
    transform: rotate(180deg);
}

.shop-subcategory-list {
    background: #fff;
    padding-left: 0;
}

.shop-subcategory-link {
    padding: 0.65rem 1.25rem 0.65rem 2.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d343f;
    background: #fff;
    transition: all 0.2s ease;
    text-decoration: none;
    border-bottom: 1px solid #f3f4f6;
}

.shop-subcategory-link:hover:not(.active-subcategory) {
    background: #f9fafb;
    padding-left: 2.75rem;
}

.shop-subcategory-link.active-subcategory {
    background: #e0f2fe;
    color: #0073af;
    font-weight: 600;
}

.shop-subcategory-list li:last-child .shop-subcategory-link {
    border-bottom: none;
}

/* Mobile Filter Sidebar Styles */
@media (max-width: 991.98px) {
    .col-lg-3.mb-4 {
        position: static;
    }

    .filter-sidebar {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 85% !important;
        max-width: 350px !important;
        height: 100vh !important;
        z-index: 1050 !important;
        background: white !important;
        transition: left 0.3s ease-in-out !important;
        overflow-y: auto !important;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1) !important;
        margin: 0 !important;
    }

    .filter-sidebar.show {
        left: 0 !important;
    }

    .filter-sidebar-backdrop {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1049;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }

    .filter-sidebar-backdrop.show {
        display: block;
        opacity: 1;
    }

    body.filter-open {
        overflow: hidden;
    }

    .products-section {
        padding-top: 0 !important;
    }
}

.filter-close-btn {
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    z-index: 1;
    padding: 5px;
    line-height: 1;
}

@media (max-width: 991.98px) {
    .filter-close-btn {
        display: block;
    }
}

/* Shop Page Product Card Overrides */
.shop-products-grid {
    align-items: stretch;
}

.shop-products-grid > .product-default.category-filter-card {
    align-self: stretch;
    min-height: 0;
}

.shop-products-grid .category-filter-card {
    border-radius: 0;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.shop-products-grid .category-filter-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.shop-products-grid .category-filter-card figure {
    position: relative;
    margin: 0;
    padding: 18px 18px 0;
    background: #f8fafc;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.shop-products-grid .category-filter-card figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.shop-products-grid .category-filter-card .label-group {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.shop-products-grid .category-filter-card .product-details {
    padding: 1rem 1rem 1.2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: flex-start;
}

.shop-products-grid .category-filter-card .category-list {
    margin-bottom: 0.5rem;
    min-height: 24px;
}

.shop-products-grid .category-filter-card .product-category {
    /* display: inline-block; */
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0f172a;
    background: rgba(15, 23, 42, 0.06);
    white-space: nowrap;
}

.shop-products-grid .category-filter-card .product-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100% !important;
    overflow: visible !important;
    text-overflow: clip !important;
    min-height: 4.2em;
}

.shop-products-grid .category-filter-card .product-title a {
    color: #121214;
    text-decoration: none;
    word-break: break-word;
    text-align: center;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    display: block !important;
}

.shop-products-grid .category-filter-card .product-title a:hover {
    color: #0073af;
}

.shop-products-grid .category-filter-card .price-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    align-content: flex-start;
    margin-bottom: 0.75rem;
    /* min-height: 4.5em; */
}

.shop-products-grid .category-filter-card .product-price {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
}

.shop-products-grid .category-filter-card .old-price {
    font-size: 15px;
    color: #999;
    text-decoration: line-through;
}

.shop-products-grid .category-filter-card .product-action {
    margin-top: 1px;
    /* padding-top: 0.5rem; */
}

.shop-products-grid .category-filter-card .price-box > div {
    font-size: 1.5rem;
    color: #6b7280;
    width: 100%;
    text-align: center;
    margin-top: 4px;
    line-height: 1.3;
}

.shop-products-grid .category-filter-card .product-action form,
.shop-products-grid .category-filter-card .product-action .water-effect-wrapper {
    width: 100%;
}

.shop-products-grid .category-filter-card .btn-add-cart {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Split Product Section - Horizontal Scroll */
.split-product-section {
    padding: 2.2rem 0;
}

.split-product-section .product-scroll-row {
    --product-scroll-gap: 20px;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 3 * var(--product-scroll-gap)) / 4);
    gap: var(--product-scroll-gap);
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.75rem;
    scroll-snap-type: x proximity;
}

.split-product-section .product-scroll-item {
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.split-product-section .product-scroll-item > .product-default {
    flex: 1 1 auto;
    min-height: 0;
}

.split-product-section .product-default {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.split-product-section .product-default figure {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
}

.split-product-section .product-default figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.split-product-section .product-default:hover figure img {
    opacity: 1;
}

.split-product-section .product-default figure::after {
    content: "";
    position: absolute;
    top: 0;
    left: -140%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    opacity: 0;
    pointer-events: none;
}

.split-product-section .product-default:hover figure::after {
    animation: product-flare 0.8s ease;
    opacity: 1;
}

@keyframes product-flare {
    from {
        transform: translateX(-140%) skewX(-20deg);
    }
    to {
        transform: translateX(240%) skewX(-20deg);
    }
}

/* Category Showcase Section Cards */
.category-showcase-section {
    padding: 2.4rem 0;
    background: #f7f7f7;
}

.category-showcase-section .category-products-grid > [class*="col-"] {
    display: flex;
}

.category-showcase-section .category-product-card {
    background: #fff;
    border: 1px solid #ececec;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
    padding: 1.1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.category-showcase-section .category-product-card figure {
    margin: 0 0 1rem;
    padding: 0.75rem;
    background: #f8fafc;
    text-align: center;
}

.category-showcase-section .category-product-card figure img {
    max-height: 170px;
    object-fit: contain;
}

.category-showcase-section .category-product-card:hover figure img {
    opacity: 1;
}

.category-showcase-section .category-product-card .product-details {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
}

.category-showcase-section .category-product-card .product-title {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 0.35rem;
    max-width: none;
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
}

.category-showcase-section .category-product-card .product-price {
    font-size: 1.35rem;
    font-weight: 700;
}

.category-showcase-section .category-product-card .price-box {
    margin-bottom: 0.6rem;
}

.category-showcase-section .category-product-card .swatch-list {
    margin-bottom: 0.9rem;
}

.category-showcase-section .category-product-card .product-action {
    margin-top: auto;
    margin-bottom: 0;
    text-align: left;
}

.category-showcase-section .category-product-card .btn-add-cart {
    width: 100%;
    justify-content: center;
    border: 1px solid #222;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    padding: 0.7rem 1rem;
    background: #fff;
    color: #222;
}

.category-showcase-section
    .category-product-card
    .btn-add-cart.product-type-simple
    i {
    display: none;
}

/* Flash Deals Cards */
.flash-deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1rem;
    width: 100%;
    padding: 1.5rem;
}

.flash-deals-card {
    display: flex;
    gap: 0.9rem;
    align-items: center;
    text-decoration: none;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 0.85rem;
    color: #0f172a;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flash-deals-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

.flash-card-image img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}

.flash-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.flash-card-title {
    font-size: 0.95rem;
    font-weight: 600;
}

.flash-card-price {
    font-size: 0.85rem;
    color: #ff5a00;
    font-weight: 700;
}

.flash-card-badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.15rem 0.5rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: #0f172a;
    color: #fff;
}

/* Product Card Responsive Styles */
@media (max-width: 992px) {
    .shop-products-grid .category-filter-card .product-title {
        font-size: 16px;
    }

    .shop-products-grid .category-filter-card .product-price {
        font-size: 17px;
    }

    .featured-products-section .product-title,
    .new-products-section .product-title {
        font-size: 16px;
    }

    .featured-products-section .product-price,
    .new-products-section .product-price {
        font-size: 19px;
    }
}

@media (max-width: 768px) {
    .shop-products-grid .category-filter-card figure {
        padding: 14px 14px 0;
    }

    .shop-products-grid .category-filter-card .product-details {
        padding: 0.9rem 0.9rem 1rem;
    }

    .shop-products-grid .category-filter-card .product-title {
        font-size: 15px;
    }

    .shop-products-grid .category-filter-card .product-price {
        font-size: 16px;
    }

    .shop-products-grid .category-filter-card .price-box > div {
        font-size: 0.7rem;
    }

    .featured-products-section .product-default figure,
    .new-products-section .product-default figure {
        padding: 14px 14px 0;
    }

    .featured-products-section .product-details,
    .new-products-section .product-details {
        padding: 14px 14px 18px;
    }

    .featured-products-section .product-title,
    .new-products-section .product-title {
        font-size: 15px;
        margin: 6px 0 4px;
    }

    .featured-products-section .product-price,
    .new-products-section .product-price {
        font-size: 16px;
    }

    .featured-products-section .price-box > div,
    .new-products-section .price-box > div {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .shop-products-grid .category-filter-card figure {
        padding: 12px 12px 0;
    }

    .shop-products-grid .category-filter-card .product-details {
        padding: 0.8rem 0.8rem 0.9rem;
    }

    .shop-products-grid .category-filter-card .product-title {
        font-size: 22px;
        margin-bottom: 0.6rem;
    }

    .shop-products-grid .category-filter-card .product-price {
        font-size: 15px;
    }

    .featured-products-section .product-default figure,
    .new-products-section .product-default figure {
        padding: 12px 12px 0;
    }

    .featured-products-section .product-details,
    .new-products-section .product-details {
        padding: 12px 12px 16px;
    }

    .featured-products-section .product-title,
    .new-products-section .product-title {
        font-size: 14px;
        margin: 4px 0 4px;
    }

    .featured-products-section .product-price,
    .new-products-section .product-price {
        font-size: 15px;
    }

    .featured-products-section .price-box > div,
    .new-products-section .price-box > div {
        font-size: 0.65rem;
    }

    .featured-products-section .category-list,
    .new-products-section .category-list {
        min-height: 20px;
    }

    .shop-products-grid .category-filter-card .category-list {
        margin-bottom: 0.4rem;
    }

    .shop-products-grid .category-filter-card .product-category {
        font-size: 0.6rem;
        padding: 3px 8px;
        font-size: 1.5rem;
    }

    .featured-products-section .product-default figure,
    .new-products-section .product-default figure,
    .split-product-section .product-default figure {
        padding: 12px 12px 0;
    }

    .featured-products-section .product-details,
    .new-products-section .product-details {
        padding: 12px 12px 16px;
    }

    .featured-products-section .product-title,
    .new-products-section .product-title {
        font-size: 15px;
        margin: 6px 0 4px;
    }

    .featured-products-section .product-price,
    .new-products-section .product-price {
        font-size: 15px;
    }

    .featured-products-section .price-box > div,
    .new-products-section .price-box > div {
        font-size: 0.7rem;
    }

    .featured-products-section .category-list,
    .new-products-section .category-list {
        min-height: 22px;
    }
    
    .product-card {
        padding: 1rem;
    }
}

/* ==========================
   END PRODUCT CARDS SECTION
   ========================== */

.home-slider .owl-stage-outer {
    perspective: 1400px;
}

.home-slider .owl-item.animated {
    animation-duration: 700ms;
}

.home-slider .peel-in-left {
    animation-name: peelInLeft;
    transform-origin: left center;
    backface-visibility: hidden;
}

.home-slider .peel-out-left {
    animation-name: peelOutLeft;
    transform-origin: left center;
    backface-visibility: hidden;
}

.home-slider .peel-in-right {
    animation-name: peelInRight;
    transform-origin: right center;
    backface-visibility: hidden;
}

.home-slider .peel-out-right {
    animation-name: peelOutRight;
    transform-origin: right center;
    backface-visibility: hidden;
}

.home-slider .peel-in-top {
    animation-name: peelInTop;
    transform-origin: top center;
    backface-visibility: hidden;
}

.home-slider .peel-out-top {
    animation-name: peelOutTop;
    transform-origin: top center;
    backface-visibility: hidden;
}

.home-slider .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.home-slider .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.home-slider .owl-dots .owl-dot.active,
.home-slider .owl-dots .owl-dot:hover {
    background: #fff;
    border-color: #fff;
    transform: scale(1.2);
}

.home-slider .owl-dots .owl-dot span {
    display: none;
}

@keyframes peelInLeft {
    0% {
        opacity: 0;
        transform: perspective(1400px) rotateY(-35deg) translateX(-8%)
            scale(0.98);
    }
    100% {
        opacity: 1;
        transform: perspective(1400px) rotateY(0deg) translateX(0) scale(1);
    }
}

@keyframes peelOutLeft {
    0% {
        opacity: 1;
        transform: perspective(1400px) rotateY(0deg) translateX(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: perspective(1400px) rotateY(35deg) translateX(10%)
            scale(0.98);
    }
}

@keyframes peelInRight {
    0% {
        opacity: 0;
        transform: perspective(1400px) rotateY(35deg) translateX(8%) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: perspective(1400px) rotateY(0deg) translateX(0) scale(1);
    }
}

@keyframes peelOutRight {
    0% {
        opacity: 1;
        transform: perspective(1400px) rotateY(0deg) translateX(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: perspective(1400px) rotateY(-35deg) translateX(-10%)
            scale(0.98);
    }
}

@keyframes peelInTop {
    0% {
        opacity: 0;
        transform: perspective(1400px) rotateX(25deg) translateY(-6%)
            scale(0.98);
    }
    100% {
        opacity: 1;
        transform: perspective(1400px) rotateX(0deg) translateY(0) scale(1);
    }
}

@keyframes peelOutTop {
    0% {
        opacity: 1;
        transform: perspective(1400px) rotateX(0deg) translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: perspective(1400px) rotateX(-20deg) translateY(6%)
            scale(0.98);
    }
}

.promo-grid-section {
    padding-top: 1.5rem;
    margin-bottom: 2.5rem;
}

.promo-grid {
    margin-left: 0;
    margin-right: 0;
}

.promo-grid > [class*="col-"] {
    padding: 0;
}

.promo-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    width: 100%;
    display: flex;
    align-items: flex-end;
    color: #fff;
    border-radius: 0;
    box-shadow: 0 16px 28px rgba(16, 24, 40, 0.25);
}

.promo-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.promo-card::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(145deg, rgba(10, 22, 38, 0.2) 0%, rgba(10, 22, 38, 0.7) 70%); */
    z-index: 1;
}

.promo-card::after {
    content: "";
    position: absolute;
    top: -60%;
    left: -120%;
    width: 70%;
    height: 220%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(255, 255, 255, 0) 70%
    );
    opacity: 0;
    transform: rotate(18deg);
    pointer-events: none;
    z-index: 2;
}

.promo-card:hover::after {
    animation: promoFlare 1.1s ease;
}

.promo-card:hover .promo-image {
    transform: scale(1.05);
}

.promo-content {
    position: relative;
    z-index: 3;
    padding: 1.5rem;
    width: 100%;
    bottom: 30px;
    left: 20px;
}

.promo-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.65rem;
    font-weight: 700;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.promo-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.promo-btn {
    text-transform: uppercase;
    font-weight: 600;
    /* letter-spacing: 0.08em; */
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    background-color: aliceblue;
    color: #000;
    width: 40%;
    margin-bottom: 20px;
    margin-left: 20px;
}

@keyframes promoFlare {
    0% {
        opacity: 0;
        transform: translateX(0) rotate(18deg);
    }
    25% {
        opacity: 0.85;
    }
    100% {
        opacity: 0;
        transform: translateX(320%) rotate(18deg);
    }
}

@media (max-width: 991px) {
    .promo-card {
        aspect-ratio: 3 / 2;
    }
}

@media (max-width: 575px) {
    .promo-card {
        aspect-ratio: 3 / 2;
        border-radius: 0;
    }

    .promo-content {
        padding: 1.2rem;
    }
}

/* --------------------------------------------------
   Spaced promo grid (used when fewer than 3 banners)
   Keeps each card at the same width as a 3-banner
   slot, centers the group horizontally and adds a
   small gap between cards. Stays responsive.
   -------------------------------------------------- */
.promo-grid.promo-grid-spaced {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.promo-grid.promo-grid-spaced > [class*="col-"] {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .promo-grid.promo-grid-spaced {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .promo-grid.promo-grid-spaced > [class*="col-"] {
        padding-left: 0.625rem;
        padding-right: 0.625rem;
    }
}

@media (min-width: 992px) {
    .promo-grid.promo-grid-spaced {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .promo-grid.promo-grid-spaced > [class*="col-"] {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        margin-bottom: 0;
    }
}

.top-brand-section {
    padding: 2.2rem 0 1.4rem;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.section-heading.align-right {
    justify-content: flex-end;
}

.section-heading.align-left {
    justify-content: flex-start;
}

.section-heading .section-title {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
}

.section-view-all {
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.25em;
    color: #111;
}

.section-view-all:hover,
.section-view-all:focus {
    color: #111;
}

.brand-carousel .brand-pill {
    background: #fff;
    border-radius: 999px;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.8rem;
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    animation: brandLogoIntro 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.brand-carousel .brand-pill:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 135, 203, 0.2);
}

.brand-carousel .brand-pill:nth-child(1) {
    animation-delay: 0.1s;
}

.brand-carousel .brand-pill:nth-child(2) {
    animation-delay: 0.2s;
}

.brand-carousel .brand-pill:nth-child(3) {
    animation-delay: 0.3s;
}

.brand-carousel .brand-pill:nth-child(4) {
    animation-delay: 0.4s;
}

.brand-carousel .brand-pill:nth-child(5) {
    animation-delay: 0.5s;
}

.brand-carousel .brand-pill:nth-child(6) {
    animation-delay: 0.6s;
}

.brand-carousel .brand-pill img {
    max-height: 100%;
    width: auto;
    filter: grayscale(0.3);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.brand-carousel .brand-pill:hover img {
    filter: grayscale(0);
    transform: scale(1.1);
}

@keyframes brandLogoIntro {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8) rotate(-5deg);
    }
    50% {
        transform: translateY(-10px) scale(1.05) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

/* Shine effect on hover */
.brand-carousel .brand-pill::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    transition: left 0.5s ease;
    border-radius: 999px;
}

.brand-carousel .brand-pill:hover::before {
    left: 100%;
}

.brand-carousel.owl-theme .owl-nav [class*="owl-"] {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: #222;
}

.brand-carousel.owl-theme .owl-nav [class*="owl-"]:hover {
    background: #222;
    border-color: #222;
    color: #fff;
}

.brand-carousel .owl-dots {
    margin-top: 1.2rem;
}

.category-banner-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 14px;
    min-height: 420px;
    color: #fff;
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
}

.category-banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-banner-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.15) 0%,
        rgba(15, 23, 42, 0.75) 100%
    );
}

.category-banner-content h3 {
    font-size: 3rem;
    margin: 0 0 0.6rem;
    font-weight: 700;
}

.category-banner-content p {
    margin: 0 0 1rem;
}

.banner-kicker {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.banner-link {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    font-size: 0.8rem;
}

.category-side-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.category-side-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #111;
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.06);
}

.category-side-card strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.category-side-card span {
    font-size: 0.85rem;
    color: #666;
}

.category-side-card img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.category-side-card-all {
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: #111;
}

@media (max-width: 991px) {
    .section-heading.align-right {
        justify-content: flex-start;
        margin-top: 1.2rem;
    }

    .category-filter-header {
        align-items: flex-start;
    }

    .category-filter-tabs {
        width: 100%;
    }

    .category-filter-tab {
        flex: 1 1 auto;
        text-align: center;
    }

    .split-product-section .product-scroll-row {
        grid-auto-columns: calc((100% - var(--product-scroll-gap)) / 2);
    }

    .category-banner-card {
        min-height: 320px;
    }
}

@media (max-width: 575px) {
    .section-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .category-filter-tab {
        width: 100%;
    }

    .split-product-section .product-scroll-row {
        grid-auto-columns: 85%;
    }
}

.home-slider-content {
    max-width: 420px;
    padding: 1.6rem 1.8rem;
    background: rgba(15, 23, 42, 0.68);
    color: #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.28);
}

.home-slider-content h2 {
    font-size: 2.1rem;
    font-weight: 700;
}

.home-slider-content p {
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
}

.flash-deals-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

.flash-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.flash-price del {
    color: #94a3b8;
}

.flash-price-now {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
}

.popup-banner-modal .modal-content {
    border-radius: 0;
    border: 0;
    overflow: hidden;
}

.popup-banner-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    min-height: 320px;
}

.popup-banner-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-banner-content {
    padding: 2rem;
    background: #fff;
}

.popup-banner-kicker {
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.65rem;
    color: #ff5a00;
    margin-bottom: 0.5rem;
}

.popup-banner-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: #0f172a;
}

.popup-banner-description {
    color: #475569;
    margin-bottom: 1.5rem;
}

.popup-banner-close {
    position: absolute;
    right: 12px;
    top: 10px;
    z-index: 2;
}

.popup-banner-optout {
    margin-top: 1rem;
    font-size: 0.85rem;
}

@media (max-width: 991px) {
    .home-slider-content {
        margin: 0 auto;
    }

    .popup-banner-body {
        grid-template-columns: 1fr;
    }

    .popup-banner-media img {
        max-height: 260px;
    }
}

/* Clean Rich Footer Styles */
.rich-footer {
    background: #f8f9fa;
    color: #333;
    margin-top: 5rem;
    border-top: 3px solid #0087cb;
    width: 100%;
}

.rich-footer .footer-top {
    padding: 4rem 0 0 0;
    background: #ffffff;
    width: 100%;
}

.rich-footer .footer-top .container-fluid {
    padding-left: clamp(1rem, 4vw, 3.5rem);
    padding-right: clamp(1rem, 4vw, 3.5rem);
}

.rich-footer .footer-bottom .container-fluid {
    padding-left: clamp(1rem, 4vw, 3.5rem);
    padding-right: clamp(1rem, 4vw, 3.5rem);
}

.rich-footer .footer-widget {
    height: 100%;
    padding: 0 1.5rem;
}

.rich-footer .footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 1rem;
    border-bottom: 2px solid #0087cb;
    display: inline-block;
    width: 100%;
}

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

.rich-footer .footer-logo img {
    max-width: 220px;
    height: auto;
    filter: none;
}

.rich-footer .footer-description {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 280px;
}

.rich-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rich-footer .footer-links li {
    margin-bottom: 1rem;
}

.rich-footer .footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.2s ease;
    display: block;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 0;
}

.rich-footer .footer-links a:hover {
    color: #0087cb;
    padding-left: 8px;
}

.rich-footer .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rich-footer .contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    /* padding-bottom: 1rem; */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.rich-footer .contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.rich-footer .contact-item i {
    font-size: 20px;
    color: #0087cb;
    margin-top: 0.25rem;
    min-width: 24px;
    flex-shrink: 0;
}

.rich-footer .contact-item strong {
    display: block;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    /* margin-bottom: 0.5rem; */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.rich-footer .contact-item p {
    color: #666;
    font-size: 16px;
    /* line-height: 1.7; */
    margin: 0;
}

.rich-footer .contact-item a {
    color: #555;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
    display: block;
    margin-top: 0.25rem;
}

.rich-footer .contact-item a:hover {
    color: #0087cb;
}

.rich-footer .footer-bottom {
    padding: 2rem 0;
    background: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.rich-footer .copyright-text {
    color: #666;
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}

.rich-footer .footer-payment-methods {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

.rich-footer .payment-label {
    color: #666;
    font-size: 16px;
    font-weight: 500;
}

.rich-footer .payment-icons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.rich-footer .payment-icons i {
    font-size: 28px;
    color: #999;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.rich-footer .payment-icons i:hover {
    color: #0087cb;
    opacity: 1;
    transform: scale(1.1);
}

/* Responsive Footer */
@media (max-width: 991px) {
    .rich-footer {
        margin-top: 3rem;
    }

    .rich-footer .footer-top {
        padding: 3rem 0 2rem;
    }

    .rich-footer .footer-widget {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .rich-footer .footer-description {
        max-width: 100%;
    }

    .rich-footer .footer-bottom {
        text-align: center;
        padding: 1.5rem 0;
    }

    .rich-footer .footer-payment-methods {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 575px) {
    .rich-footer .footer-top {
        padding: 2.5rem 0 1.5rem;
    }

    .rich-footer .footer-title {
        font-size: 16px;
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
    }

    .rich-footer .footer-logo img {
        max-width: 180px;
    }

    .rich-footer .footer-description {
        font-size: 15px;
    }

    .rich-footer .footer-links a {
        font-size: 15px;
    }

    .rich-footer .contact-item strong {
        font-size: 13px;
    }

    .rich-footer .contact-item p,
    .rich-footer .contact-item a {
        font-size: 15px;
    }

    .rich-footer .contact-item {
        /* gap: 0.75rem; */
        /* padding-bottom: 0.75rem; */
    }

    .rich-footer .contact-item i {
        font-size: 18px;
    }

    .rich-footer .footer-widget {
        padding: 0;
    }

    .rich-footer .copyright-text {
        font-size: 14px;
    }

    .rich-footer .payment-label {
        font-size: 14px;
    }
}

/* Shop page refresh */
.shop-page {
    --shop-ink: #0f172a;
    --shop-muted: #64748b;
    --shop-accent: #f97316;
    --shop-accent-2: #0ea5e9;
    --shop-accent-3: #14b8a6;
    --shop-surface: #ffffff;
    --shop-line: rgba(15, 23, 42, 0.12);
    --shop-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    background: radial-gradient(
            circle at 18% 12%,
            rgba(249, 115, 22, 0.22),
            transparent 55%
        ),
        radial-gradient(
            circle at 82% 0%,
            rgba(14, 165, 233, 0.2),
            transparent 60%
        ),
        linear-gradient(180deg, #f8fafc 0%, #f3f4f6 40%, #ffffff 100%);
    color: var(--shop-ink);
    font-family: "Poppins", "Open Sans", sans-serif;
}

.shop-page a {
    color: inherit;
    text-decoration: none;
}

.shop-page a:hover {
    color: var(--shop-accent);
}

.shop-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
}

.shop-hero::before {
    content: "";
    position: absolute;
    top: -140px;
    right: 4%;
    width: 360px;
    height: 360px;
    background: radial-gradient(
        circle,
        rgba(20, 184, 166, 0.25),
        transparent 70%
    );
    pointer-events: none;
}

.shop-hero::after {
    content: "";
    position: absolute;
    bottom: -160px;
    left: 6%;
    width: 320px;
    height: 320px;
    background: radial-gradient(
        circle,
        rgba(249, 115, 22, 0.22),
        transparent 70%
    );
    pointer-events: none;
}

.shop-hero__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    position: relative;
    z-index: 1;
}

.shop-hero__copy {
    animation: shop-rise 0.8s ease both;
}

.shop-hero__kicker {
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--shop-accent);
    margin-bottom: 0.65rem;
}

.shop-hero__title {
    font-family: "Playfair Display", "Poppins", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 600;
    letter-spacing: 0.01em;
    margin-bottom: 0.85rem;
}

.shop-hero__subtitle {
    color: var(--shop-muted);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 36rem;
    margin-bottom: 1.4rem;
}

.shop-hero__crumbs {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--shop-muted);
}

.shop-hero__crumbs a {
    color: inherit;
}

.shop-hero__crumb-sep {
    opacity: 0.6;
}

.shop-hero__panel {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--shop-line);
    border-radius: 22px;
    padding: 1.6rem;
    box-shadow: var(--shop-shadow);
    display: grid;
    gap: 1rem;
    backdrop-filter: blur(10px);
    animation: shop-rise 0.9s ease both;
}

.shop-hero__stat {
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 0.85rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.shop-hero__stat span {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--shop-ink);
}

.shop-hero__stat small {
    font-size: 0.8rem;
    color: var(--shop-muted);
}

.shop-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem) 4rem;
}

.shop-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 2rem 0 1.5rem;
    animation: shop-fade 0.6s ease both;
}

.shop-toolbar__kicker {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--shop-muted);
    margin-bottom: 0.35rem;
}

.shop-toolbar__title {
    font-size: clamp(1.6rem, 2vw, 2.2rem);
    font-weight: 600;
    margin: 0;
}

.shop-toolbar__meta {
    margin: 0.3rem 0 0;
    color: var(--shop-muted);
    font-size: 0.95rem;
}

.shop-toolbar__controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.shop-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    border: 1px solid var(--shop-line);
    border-radius: 999px;
    padding: 0.35rem 0.35rem 0.35rem 0.8rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.shop-search input {
    border: none;
    outline: none;
    background: transparent;
    min-width: 220px;
    font-size: 0.9rem;
    color: var(--shop-ink);
}

.shop-search button {
    border: none;
    background: var(--shop-accent);
    color: #ffffff;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-search button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(249, 115, 22, 0.35);
}

.shop-sort {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.shop-sort label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    color: var(--shop-muted);
}

.shop-sort select {
    border: 1px solid var(--shop-line);
    border-radius: 999px;
    padding: 0.55rem 1rem;
    background: #ffffff;
    font-size: 0.9rem;
    color: var(--shop-ink);
}

.shop-layout {
    display: grid;
    grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 2.5rem);
}

.shop-filters {
    position: relative;
}

.shop-filter-card {
    background: #ffffff;
    border: 1px solid var(--shop-line);
    border-radius: 22px;
    padding: 1.5rem;
    box-shadow: var(--shop-shadow);
    animation: shop-rise 0.8s ease both;
}

.shop-filter-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.shop-filter-card__header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.shop-filter-card__header p {
    margin: 0.35rem 0 0;
    color: var(--shop-muted);
    font-size: 0.85rem;
}

.shop-filter-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.14);
    color: var(--shop-accent);
    font-weight: 600;
}

.shop-filter-note {
    background: rgba(14, 165, 233, 0.12);
    color: #0e7490;
    font-size: 0.82rem;
    border-radius: 12px;
    padding: 0.4rem 0.75rem;
    margin-bottom: 1.2rem;
}

.shop-filter-group {
    margin-bottom: 1.2rem;
}

.shop-filter-group__title {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--shop-muted);
    margin-bottom: 0.8rem;
}

.shop-filter-card label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--shop-ink);
    margin-bottom: 0.4rem;
}

.shop-filter-card .form-control {
    width: 100%;
    border: 1px solid var(--shop-line);
    border-radius: 12px;
    padding: 0.55rem 0.7rem;
    background: #f8fafc;
    font-size: 0.9rem;
    color: var(--shop-ink);
}

.shop-filter-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.shop-filter-range {
    display: block;
    margin-top: 0.6rem;
    color: var(--shop-muted);
    font-size: 0.8rem;
}

.shop-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--shop-ink);
    margin-bottom: 1.2rem;
}

.shop-check input {
    width: 16px;
    height: 16px;
    accent-color: var(--shop-accent);
}

.shop-check i {
    color: var(--shop-accent);
    margin-right: 0.3rem;
}

.shop-filter-actions {
    display: grid;
    gap: 0.6rem;
}

.shop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.shop-btn--primary {
    background: var(--shop-ink);
    color: #ffffff;
}

.shop-btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.25);
}

.shop-btn--ghost {
    background: transparent;
    border-color: var(--shop-line);
    color: var(--shop-ink);
}

.shop-btn--ghost:hover {
    background: rgba(15, 23, 42, 0.05);
}

.shop-results {
    min-width: 0;
}

.shop-active-filters {
    background: rgba(255, 255, 255, 0.9);
    border: 1px dashed var(--shop-line);
    border-radius: 18px;
    padding: 0.9rem 1.1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
    margin-bottom: 1.5rem;
    animation: shop-fade 0.6s ease both;
}

.shop-active-filters__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--shop-muted);
    font-weight: 600;
}

.shop-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.shop-chip a {
    color: inherit;
    opacity: 0.7;
    font-weight: 700;
}

.shop-chip--primary {
    background: rgba(14, 165, 233, 0.18);
    color: #0369a1;
}

.shop-chip--info {
    background: rgba(59, 130, 246, 0.16);
    color: #1d4ed8;
}

.shop-chip--teal {
    background: rgba(20, 184, 166, 0.18);
    color: #0f766e;
}

.shop-chip--muted {
    background: rgba(100, 116, 139, 0.16);
    color: #475569;
}

.shop-chip--success {
    background: rgba(34, 197, 94, 0.16);
    color: #15803d;
}

.shop-chip--warning {
    background: rgba(234, 179, 8, 0.2);
    color: #a16207;
}

.shop-chip--dark {
    background: rgba(15, 23, 42, 0.12);
    color: var(--shop-ink);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.4rem;
}

.shop-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    opacity: 0;
    transform: translateY(16px);
    animation: shop-card-rise 0.6s ease forwards;
    animation-delay: var(--shop-delay, 0s);
}

.shop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 45px rgba(15, 23, 42, 0.14);
}

.shop-card__media {
    position: relative;
    margin: 0;
    padding: 1.4rem;
    background: linear-gradient(
        140deg,
        rgba(14, 165, 233, 0.08),
        rgba(249, 115, 22, 0.08)
    );
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-card__media img {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.shop-card:hover .shop-card__media img {
    transform: scale(1.05);
}

.shop-card__labels {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.shop-card__label {
    font-size: 0.65rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: #ffffff;
    background: var(--shop-accent);
}

.shop-card__label--new {
    background: var(--shop-accent-3);
}

.shop-card__label--sale {
    background: var(--shop-accent);
}

.shop-card__body {
    padding: 1.1rem 1.2rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1;
}

.shop-card__category .product-category {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--shop-ink);
}

.shop-card__title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0.2rem 0 0.4rem;
    color: var(--shop-ink);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8rem;
}

.shop-card__price {
    margin: 0;
}

.shop-card__price .old-price {
    display: block;
    font-size: 0.8rem;
    color: var(--shop-muted);
    text-decoration: line-through;
    margin-bottom: 0.2rem;
}

.shop-card__price .product-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--shop-ink);
}

.shop-card__actions {
    margin-top: auto;
}

.shop-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.2);
    background: transparent;
    color: var(--shop-ink);
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.shop-card__cta:hover {
    background: var(--shop-ink);
    border-color: var(--shop-ink);
    color: #ffffff;
}

.shop-empty {
    grid-column: 1 / -1;
    background: #ffffff;
    border-radius: 22px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px dashed var(--shop-line);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.shop-empty__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--shop-muted);
    font-size: 1.5rem;
}

.shop-empty h4 {
    margin-bottom: 0.6rem;
    font-size: 1.2rem;
}

.shop-empty p {
    color: var(--shop-muted);
    margin: 0;
}

@media (min-width: 992px) {
    .shop-filter-card {
        position: sticky;
        top: 1.5rem;
    }
}

@media (max-width: 991px) {
    .shop-hero__inner {
        grid-template-columns: 1fr;
    }

    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-search input {
        min-width: 160px;
    }
}

@media (max-width: 640px) {
    .shop-toolbar {
        align-items: flex-start;
    }

    .shop-toolbar__controls {
        width: 100%;
        justify-content: flex-start;
    }

    .shop-search {
        width: 100%;
    }

    .shop-search input {
        width: 100%;
        min-width: 0;
    }

    .shop-sort {
        width: 100%;
    }

    .shop-sort select {
        width: 100%;
    }
}

@keyframes shop-rise {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shop-fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes shop-card-rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shop-card:nth-child(1) {
    --shop-delay: 0.05s;
}

.shop-card:nth-child(2) {
    --shop-delay: 0.1s;
}

.shop-card:nth-child(3) {
    --shop-delay: 0.15s;
}

.shop-card:nth-child(4) {
    --shop-delay: 0.2s;
}

.shop-card:nth-child(5) {
    --shop-delay: 0.25s;
}

.shop-card:nth-child(6) {
    --shop-delay: 0.3s;
}

.shop-card:nth-child(7) {
    --shop-delay: 0.35s;
}

.shop-card:nth-child(8) {
    --shop-delay: 0.4s;
}

.shop-card:nth-child(9) {
    --shop-delay: 0.45s;
}

.shop-card:nth-child(10) {
    --shop-delay: 0.5s;
}

.shop-card:nth-child(11) {
    --shop-delay: 0.55s;
}

.shop-card:nth-child(12) {
    --shop-delay: 0.6s;
}

@media (prefers-reduced-motion: reduce) {
    .shop-hero__copy,
    .shop-hero__panel,
    .shop-toolbar,
    .shop-filter-card,
    .shop-active-filters,
    .shop-card {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ================================================== */
/* Water Splash Effect for Add to Cart Button */
/* ================================================== */

/* Add to Cart Button Water Effect */
.btn-add-cart.water-effect-enabled {
    position: relative;
    overflow: visible !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    pointer-events: auto !important;
    cursor: pointer !important;
    z-index: 10;
}

.btn-add-cart.water-effect-enabled:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 135, 203, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Water effect background */
.btn-add-cart.water-effect-enabled .water-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle,
        rgba(0, 135, 203, 0.15) 0%,
        rgba(0, 135, 203, 0.05) 50%,
        transparent 70%
    );
    border-radius: inherit;
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    top: 0;
    left: 0;
}

/* Ripple effect */
.btn-add-cart.water-effect-enabled .water-ripple {
    position: absolute;
    background: rgba(0, 135, 203, 0.3);
    border-radius: 50%;
    transform: scale(0);
    pointer-events: none;
    z-index: 2;
}

@keyframes water-ripple-animation {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Droplet effect */
.btn-add-cart.water-effect-enabled .water-droplet {
    position: absolute;
    width: 10px;
    height: 15px;
    background-color: rgba(0, 135, 203, 0.5);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: translateY(-30px) scale(0);
    opacity: 0;
    z-index: 3;
    pointer-events: none;
}

@keyframes water-droplet-fall {
    0% {
        transform: translateY(-30px) scale(0);
        opacity: 0;
    }
    30% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }
}

/* Surface tension effect */
.btn-add-cart.water-effect-enabled::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    pointer-events: none;
    border-radius: inherit;
    will-change: opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.btn-add-cart.water-effect-enabled:hover::before {
    opacity: 1;
    animation: water-surface-tension 1.2s ease-in-out infinite;
}

@keyframes water-surface-tension {
    0% {
        transform: translateY(0) scaleY(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-5px) scaleY(1.05);
        opacity: 0.5;
    }
    100% {
        transform: translateY(0) scaleY(1);
        opacity: 0.3;
    }
}

/* Active state */
.btn-add-cart.water-effect-enabled:active {
    transform: translateY(-1px) scale(0.97);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================== */
/* New Water Effect Animation System */
/* Apply .water-effect class to any element for water animation */
/* ================================================== */

.water-effect {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.water-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* Water background effect */
.water-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle,
        rgba(74, 144, 226, 0.15) 0%,
        rgba(74, 144, 226, 0) 70%
    );
    border-radius: inherit;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.water-effect:hover .water-bg {
    opacity: 1;
    transform: scale(1.2);
}

/* Water ripple effect */
.water-ripple {
    position: absolute;
    background: rgba(74, 144, 226, 0.3);
    border-radius: 50%;
    transform: scale(0);
    pointer-events: none;
    border: 2px solid rgba(74, 144, 226, 0.4);
}

@keyframes water-ripple-animation {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Water droplet effect */
.water-droplet {
    position: absolute;
    width: 10px;
    height: 15px;
    background-color: rgba(74, 144, 226, 0.5);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: translateY(-30px) scale(0);
    opacity: 0;
    z-index: 2;
    pointer-events: none;
}

@keyframes water-droplet-animation {
    0% {
        transform: translateY(-30px) scale(0);
        opacity: 0;
    }
    30% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }
}

/* Button specific water effects */
.btn-icon.water-effect,
button.water-effect,
a.water-effect {
    position: relative;
    z-index: 1;
    overflow: visible;
}

.btn-icon.water-effect .icon,
button.water-effect .icon,
a.water-effect .icon,
.btn-icon.water-effect i,
button.water-effect i,
a.water-effect i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, color 0.3s ease;
}

.water-effect:hover .icon,
.water-effect:hover i {
    transform: scale(1.1) rotate(15deg);
}

/* General smooth cart button animations */
.btn-add-cart,
.btn-icon.btn-add-cart {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, background, border-color, color, box-shadow;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Product card add to cart button */
.btn-add-cart.water-effect {
    overflow: visible;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, background, box-shadow;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.btn-add-cart.water-effect i,
.btn-add-cart.water-effect span {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    will-change: transform, color;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Smooth transitions for water effect elements */
.water-effect * {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, color, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Prevent text selection during animation */
.water-effect {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Active state with smooth animation */
.water-effect:active {
    transform: scale(0.97);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth hover state for cart button */
.btn-add-cart.water-effect:hover {
    transform: translateY(-3px) scale(1.03);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(0, 135, 203, 0.3);
}

.btn-add-cart.water-effect:hover i {
    transform: scale(1.15) rotate(15deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-add-cart.water-effect:hover span {
    transform: translateX(3px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================== */
/* Scroll to Top Button with Water Effect */
/* ================================================== */

.scroll-to-top-wrapper {
    position: fixed;
    right: 20px;
    bottom: 90px;
    z-index: 1029;
}

.scroll-to-top-btn {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0087cb 0%, #00a8e8 100%);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 135, 203, 0.3),
        0 8px 24px rgba(0, 135, 203, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.scroll-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top-btn:hover {
    background: linear-gradient(135deg, #00a8e8 0%, #0087cb 100%);
    box-shadow: 0 6px 20px rgba(0, 135, 203, 0.5),
        0 12px 32px rgba(0, 135, 203, 0.4);
    transform: translateY(-3px) scale(1.05);
}

.scroll-to-top-btn:active {
    transform: translateY(-1px) scale(0.95);
}

/* Water fill progress indicator */
.water-fill-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.25) 30%,
        rgba(255, 255, 255, 0.15) 60%,
        rgba(255, 255, 255, 0.1) 100%
    );
    border-radius: 50% 50% 50% 50% / 0% 0% 100% 100%;
    transition: height 0.15s ease-out;
    z-index: 1;
    overflow: hidden;
    clip-path: inset(0 0 0 0 round 0 0 50% 50%);
}

.water-fill-progress::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.5) 0%,
        transparent 60%
    );
    animation: water-wave-fill 2s ease-in-out infinite;
    transform-origin: center bottom;
}

.water-fill-progress::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    border-radius: 50%;
    animation: water-ripple-fill 3s ease-in-out infinite;
}

@keyframes water-wave-fill {
    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-8px) scale(1.05);
        opacity: 0.8;
    }
}

@keyframes water-ripple-fill {
    0% {
        transform: scale(0.8);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.3;
    }
}

/* Button content */
.scroll-btn-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.scroll-to-top-btn i {
    position: relative;
    z-index: 3;
    transition: transform 0.3s ease;
}

.scroll-to-top-btn:hover i {
    transform: translateY(-2px);
}

/* Water effect container for scroll button */
.scroll-to-top-btn .water-container {
    border-radius: 50%;
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .scroll-to-top-wrapper {
        right: 15px;
        bottom: 85px;
    }

    .scroll-to-top-btn {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top-wrapper {
        right: 15px;
        bottom: 80px;
    }

    .scroll-to-top-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

/* Animation for button appearance */
@keyframes scrollToTopFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.scroll-to-top-btn.visible {
    animation: scrollToTopFadeIn 0.3s ease-out;
}

/* ================================================== */
/* Sticky Navigation Bar with Smooth Animations - DISABLED */
/* ================================================== */

/* Sticky header functionality has been removed */

.header {
    /* transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform; */
}

/* Sticky header state - DISABLED */
/*
.header.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08), 0 4px 40px rgba(0, 0, 0, 0.04);
    animation: slideDownHeader 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
    padding: 0;
}

.header.header-sticky.scrolling-down {
    transform: translateY(-100%);
    box-shadow: none;
}

.header.header-sticky.scrolling-up {
    transform: translateY(0);
}
*/

/* Header top section */
.header-top {
    transition: opacity 0.3s ease, max-height 0.3s ease, padding 0.3s ease,
        margin 0.3s ease;
    overflow: hidden;
    background-color: #114178;
    color: #ffffff;
}

.header-top .header a {
    text-decoration: none !important;
    border-bottom: none !important;
}

.social-icons .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 2px solid #0484c4;
    border-radius: 50%;
    background: transparent;
    color: inherit;
    transition: background 0.2s, color 0.2s;
    font-size: 18px;
    margin: 0 2px;
    box-sizing: border-box;
}

.social-icons .social-icon i {
    font-size: 18px;
    color: #0484c4;
}

.social-icons .social-icon:hover {
    background: #0484c4;
    color: #fff;
}

.social-icons .social-icon:hover i {
    color: #fff;
}


@media (max-width: 991px) {
  .header-top .separator {
    display: none;
  }

  .header-top .header-dropdowns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    justify-content: center;
  }

  .header-top .header a {
    white-space: nowrap;
  }

  /* hide long email on tablet/mobile */
  .header-top a[href^="mailto:"] {
    display: none;
  }
}

@media (max-width: 575px) {
  /* keep top bar clean: icon-first approach */
  .header-top .header a {
    font-size: 0; /* hide text */
  }

  .header-top .header a i,
  .header-top .social-icon i {
    font-size: 14px;
  }

  .header-top .social-icons {
    gap: 6px !important;
  }

  /* optional: hide translator in very small screens */
  .header-top .language-dropdown {
    display: none !important;
  }
}
/*
.header-top.header-top-hidden {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
    visibility: hidden;
    display: none;
}
*/

/* Header middle section */
.header-middle {
    transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Sticky styles disabled */
/*
.header-middle.is-sticky {
    position: fixed;
    top: 0 !important;
    left: 0;
    right: 0;
    z-index: 1041;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    background: #ffffff;
    margin: 0 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.header-middle.is-sticky .logo img {
    transition: width 0.3s ease, height 0.3s ease;
    width: 200px !important;
    height: auto !important;
    max-height: 60px;
}
*/

/* Header bottom navigation */
.header-bottom {
    transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease,
        box-shadow 0.3s ease, top 0.3s ease;
    background: #ffffff;
    position: relative;
}

/* Sticky styles disabled */
/*
.header-bottom.is-sticky {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1040;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    animation: slideDownNav 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
    margin: 0 !important;
    width: 100%;
}

.header-bottom.is-sticky .menu li a {
    transition: color 0.3s ease, padding 0.3s ease, font-size 0.3s ease;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
}

.header-bottom.is-sticky .menu li a:hover {
    color: #0087cb;
}

.header-bottom.is-sticky .menu li.active a {
    color: #0087cb;
    font-weight: 600;
}

.header-bottom.is-sticky .flash-deals-link span {
    transition: padding 0.3s ease, font-size 0.3s ease;
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
}
*/

/* Animations - DISABLED */
/*
@keyframes slideDownHeader {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.header-sticky .header-middle,
.header-sticky .header-bottom {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
*/

body {
    transition: padding-top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive adjustments - DISABLED */
/*
@media (max-width: 991px) {
    .header-middle.is-sticky .logo img {
        width: 150px !important;
        max-height: 50px;
    }

    .header-bottom.is-sticky {
        padding-top: 0.4rem;
        padding-bottom: 0.4rem;
    }

    .header-bottom.is-sticky .menu li a {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}
*/

/* Keep icon look after click/visited */
.social-icon:visited,
.social-icons .social-icon:visited {
    color: #ffffff;
    background: linear-gradient(135deg, #0087cb 0%, #006ba3 100%);
}

/* Responsive sticky styles - DISABLED */
/*
@media (max-width: 768px) {
    .header.header-sticky {
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }

    .header-middle.is-sticky {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .header-middle.is-sticky .logo img {
        width: 120px !important;
        max-height: 40px;
    }

    .header-bottom.is-sticky {
        padding-top: 0.3rem;
        padding-bottom: 0.3rem;
    }

    .header-bottom.is-sticky .menu li a {
        padding: 0.35rem 0.6rem;
        font-size: 0.85rem;
    }
}
*/

/* Prevent layout shift */
.page-wrapper {
    transition: padding-top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* ================================================== */
/* Rounded Icons with Smooth Hover Animations */
/* ================================================== */

/* Footer Contact Icons - Rounded Background */
.rich-footer .contact-item i,
.footer-contact .contact-item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0087cb 0%, #006ba3 100%);
    color: #ffffff !important;
    font-size: 20px;
    margin-top: 0.25rem;
    min-width: 48px;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow, background;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    box-shadow: 0 4px 12px rgba(0, 135, 203, 0.2);
    position: relative;
    overflow: hidden;
}

.rich-footer .contact-item:hover i,
.footer-contact .contact-item:hover i {
    transform: translateY(-4px) scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 135, 203, 0.4);
    background: linear-gradient(135deg, #00a0e8 0%, #0087cb 100%);
}

.rich-footer .contact-item i::before,
.footer-contact .contact-item i::before {
    position: relative;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.rich-footer .contact-item:hover i::before,
.footer-contact .contact-item:hover i::before {
    transform: scale(1.15);
}

/* Ripple effect on click */
.rich-footer .contact-item i::after,
.footer-contact .contact-item i::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
    opacity: 0;
    z-index: 1;
}

.rich-footer .contact-item i:active::after,
.footer-contact .contact-item i:active::after {
    width: 100px;
    height: 100px;
    opacity: 0;
}

/* Social Media Icons - Rounded Background */

.social-icon,
.social-icons .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    position: relative;
    overflow: visible;
    background: transparent;
    transition: color 0.3s, background 0.3s, transform 0.3s;
}

/* Brand colors for icons */
.social-icon.social-facebook i,
.social-icons .social-icon.social-facebook i {
    color: #1877F3 !important;
}
.social-icon.social-instagram i,
.social-icons .social-icon.social-instagram i {
    color: #E4405F !important;
}
.social-icon.social-youtube i,
.social-icons .social-icon.social-youtube i {
    color: #FF0000 !important;
}

/* Remove generic color override on hover */
.social-icon:hover i,
.social-icons .social-icon:hover i {
    opacity: 0.85;
}

/* Optional: Slightly darken on hover */
.social-icon.social-facebook:hover i,
.social-icons .social-icon.social-facebook:hover i {
    color: #145db2 !important;
}
.social-icon.social-instagram:hover i,
.social-icons .social-icon.social-instagram:hover i {
    color: #b92d4b !important;
}
.social-icon.social-youtube:hover i,
.social-icons .social-icon.social-youtube:hover i {
    color: #b80000 !important;
}

/* Ensure icons stay visible and maintain style after click (visited state) */
.social-icon:visited,
.social-icons .social-icon:visited {
    /* background: linear-gradient(135deg, #0087cb 0%, #006ba3 100%); */
    color: #5d5d5d !important;
}


.social-icon i,
.social-icons .social-icon i {
    position: relative;
    font-size: 15px !important;
    z-index: 2;
}

/* Social Media Icon Colors */
.social-icon.social-facebook:hover,
.social-icons .social-icon.social-facebook:hover {
    /* background: linear-gradient(135deg, #1877f2 0%, #0d5fcc 100%);
    transform: translateY(-5px) scale(1.15) rotate(360deg); */
    /* box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4); */
}

.social-icon.social-instagram:hover,
.social-icons .social-icon.social-instagram:hover {
    /* background: linear-gradient(135deg, #e4405f 0%, #c13584 50%, #833ab4 100%);
    transform: translateY(-5px) scale(1.15) rotate(360deg); */
    /* box-shadow: 0 8px 20px rgba(227, 64, 95, 0.4); */
}

.social-icon.social-twitter:hover,
.social-icons .social-icon.social-twitter:hover {
    /* background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
    transform: translateY(-5px) scale(1.15) rotate(360deg); */
    /* box-shadow: 0 8px 20px rgba(29, 161, 242, 0.4); */
}

.social-icon.social-youtube:hover,
.social-icons .social-icon.social-youtube:hover {
    /* background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    transform: translateY(-5px) scale(1.15) rotate(360deg);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4); */
}

.social-icon.social-linkedin:hover,
.social-icons .social-icon.social-linkedin:hover {
    /* background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    transform: translateY(-5px) scale(1.15) rotate(360deg);
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.4); */
}
/* 
.social-icon i,
.social-icons .social-icon i {
    position: relative;
    font-size: 15px !important;
    z-index: 2;
    color: #5d5d5d !important;
}

.social-icon i,
.social-icons .social-icon:hover > i {
    color: #000000 !important;
} */

/* Header Phone Icon - Rounded Background */
.header-dropdown a i.icon-phone-2,
.header-contact i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: white;
    color: #5d5d5d !important;
    font-size: 15px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* will-change: transform, box-shadow; */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    /* box-shadow: 0 3px 10px rgba(0, 135, 203, 0.25); */
    /* margin-right: 10px; */
}

/* Social Icons Hover Transitions */
/* .social-icon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform: translateY(0) scale(1) !important;
    will-change: transform, box-shadow;
} */

/* .social-icon:hover {
    transform: translateY(-3px) scale(1.1) !important;
    box-shadow: 0 6px 16px rgba(0, 135, 203, 0.35) !important;
} */

/* .social-icon:active {
    transform: translateY(-1px) scale(1.05) !important;
} */

/* .header-dropdown a:hover i.icon-phone-2,
.header-contact:hover i {
    transform: translateY(-3px) scale(1.1) rotate(-10deg);
    box-shadow: 0 6px 16px rgba(0, 135, 203, 0.4);
    background: linear-gradient(135deg, #00a0e8 0%, #0087cb 100%);
} */

/* Search Icon - Rounded Background */
.search-toggle i,
.header-search .icon-search-3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 135, 203, 0.1);
    color: #0087cb;
    font-size: 18px;
    /* transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); */
    /* will-change: transform, background, box-shadow; */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.search-toggle:hover i,
.header-search:hover .icon-search-3 {
    background: linear-gradient(135deg, #0087cb 0%, #006ba3 100%);
    color: #ffffff;
    transform: translateY(-3px) scale(1.1) rotate(90deg);
    box-shadow: 0 6px 16px rgba(0, 135, 203, 0.4);
}

/* Cart Icon - Rounded Background */
.header-icon i.icon-shopping-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0087cb 0%, #006ba3 100%);
    color: #ffffff;
    font-size: 24px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    box-shadow: 0 4px 12px rgba(0, 135, 203, 0.3);
}

.header-icon:hover i.icon-shopping-cart {
    transform: translateY(-4px) scale(1.15) rotate(-15deg);
    box-shadow: 0 8px 20px rgba(0, 135, 203, 0.5);
    background: linear-gradient(135deg, #00a0e8 0%, #0087cb 100%);
}

/* Mobile Menu Close Icon - Rounded Background */
.mobile-menu-close i.icon-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, background;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.mobile-menu-close:hover i.icon-close {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg) scale(1.1);
}

/* WhatsApp Icon Enhancement */
.whatsapp-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    font-size: 32px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-float-btn:hover .whatsapp-icon-wrapper {
    transform: translateY(-5px) scale(1.15) rotate(15deg);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #2efd7a 0%, #25d366 100%);
}

/* Scroll to Top Icon - Rounded Background */
.scroll-to-top-wrapper i,
.scroll-to-top-btn i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0087cb 0%, #006ba3 100%);
    color: #ffffff;
    font-size: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    box-shadow: 0 4px 12px rgba(0, 135, 203, 0.3);
}

.scroll-to-top-wrapper:hover i,
.scroll-to-top-btn:hover i {
    transform: translateY(-4px) scale(1.1) rotate(-180deg);
    box-shadow: 0 8px 20px rgba(0, 135, 203, 0.5);
    background: linear-gradient(135deg, #00a0e8 0%, #0087cb 100%);
}

/* Feature Icons - For use in sections */
.feature-icon,
.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0087cb 0%, #006ba3 100%);
    color: #ffffff;
    font-size: 32px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    box-shadow: 0 6px 18px rgba(0, 135, 203, 0.3);
    margin-bottom: 1.5rem;
}

.feature-icon:hover,
.service-icon:hover {
    transform: translateY(-8px) scale(1.15) rotate(10deg);
    box-shadow: 0 12px 30px rgba(0, 135, 203, 0.5);
    background: linear-gradient(135deg, #00a0e8 0%, #0087cb 100%);
}

/* Pulse animation for important icons */
@keyframes icon-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 135, 203, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 18px rgba(0, 135, 203, 0.5);
    }
}

.icon-pulse {
    animation: icon-pulse 2s ease-in-out infinite;
}

/* Feature Box Icons - Rounded Background */
.feature-box i,
.features-section .feature-box i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0087cb 0%, #006ba3 100%);
    color: #ffffff;
    font-size: 36px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    box-shadow: 0 6px 20px rgba(0, 135, 203, 0.3);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.feature-box i::before {
    position: relative;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-box:hover i,
.features-section .feature-box:hover i {
    transform: translateY(-8px) scale(1.15) rotate(10deg);
    box-shadow: 0 12px 30px rgba(0, 135, 203, 0.5);
    background: linear-gradient(135deg, #00a0e8 0%, #0087cb 100%);
}

.feature-box:hover i::before,
.features-section .feature-box:hover i::before {
    transform: scale(1.2);
}

/* Shine effect on hover */
.feature-box i::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.feature-box:hover i::after {
    transform: rotate(45deg) translate(100%, 100%);
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .rich-footer .contact-item i,
    .footer-contact .contact-item i {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .social-icon,
    .social-icons .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin: 0 4px;
    }

    .feature-icon,
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .feature-box i,
    .features-section .feature-box i {
        width: 70px;
        height: 70px;
        font-size: 32px;
        margin-bottom: 1.5rem;
    }
}

/* ==========================
   HOME SLIDER - MOBILE HEIGHT
   Boost slider height on small screens so the
   banner imagery is clearly visible instead of
   collapsing to the natural 1903x499 aspect ratio.
   ========================== */
@media (max-width: 991px) {
    .home-slider .home-slide.banner {
        position: relative;
        overflow: hidden;
        min-height: 320px;
    }

    .home-slider img.slide-bg {
        width: 100%;
        height: 320px;
        min-height: 320px;
        object-fit: cover;
        object-position: center center;
    }
}

@media (max-width: 767px) {
    .home-slider .home-slide.banner {
        min-height: 280px;
    }

    .home-slider img.slide-bg {
        height: 280px;
        min-height: 280px;
    }
}

@media (max-width: 575px) {
    .home-slider .home-slide.banner {
        min-height: 168px;
    }

    .home-slider img.slide-bg {
        height: 168px;
        min-height: 168px;
    }

    .home-slider .owl-dots {
        bottom: 10px;
    }

    .home-slider .owl-dots .owl-dot {
        width: 9px;
        height: 9px;
    }
}

