* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #fff;
    color: #1e293b;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    text-decoration: none;
}


/* TOPBAR */

.pw-topbar {
    padding: 7px 0;
    background: #111827;
    color: #fff;
    font-size: 12px;
}

.pw-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.pw-topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pw-topbar a {
    color: inherit;
}

.pw-topbar i {
    margin-right: 4px;
}

.pw-topbar-divider {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, .3);
}


/* HEADER */

.pw-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.pw-header-inner {
    min-height: 82px;

    display: grid;
    grid-template-columns: 230px minmax(300px, 1fr) auto;

    align-items: center;
    gap: 30px;
}


/* LOGO */

.pw-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #111827;
}

.pw-logo-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #111827;
    color: #fff;

    font-size: 20px;
}

.pw-logo-text strong {
    display: block;
    font-size: 22px;
    line-height: 1;
}

.pw-logo-text strong span {
    font-weight: 400;
}

.pw-logo-text small {
    display: block;

    margin-top: 4px;

    color: #64748b;
    font-size: 9px;
    letter-spacing: .4px;
}


/* SEARCH */

.pw-search-box {
    height: 46px;

    display: flex;
    align-items: center;

    overflow: hidden;

    border: 1px solid #dbe1e8;
    border-radius: 9px;

    background: #f8fafc;
}

.pw-search-icon {
    margin-left: 15px;
    color: #94a3b8;
}

.pw-search-input {
    min-width: 0;
    flex: 1;

    height: 100%;

    padding: 0 12px;

    border: 0;
    outline: 0;

    background: transparent;

    font-size: 13px;
}

.pw-search-button {
    align-self: stretch;

    padding: 0 22px;

    border: 0;

    background: #111827;
    color: #fff;

    font-size: 12px;
    font-weight: 600;
}


/* ACTIONS */

.pw-header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.pw-header-action {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #1e293b;
}

.pw-action-icon {
    position: relative;
    font-size: 23px;
}

.pw-action-text small,
.pw-action-text strong {
    display: block;
}

.pw-action-text small {
    color: #94a3b8;
    font-size: 9px;
}

.pw-action-text strong {
    font-size: 11px;
}

.pw-cart-count {
    position: absolute;
    top: -7px;
    right: -10px;

    min-width: 17px;
    height: 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 4px;

    border-radius: 20px;

    background: #ef4444;
    color: #fff;

    font-size: 9px;
    font-weight: 700;
}


/* NAV */

.pw-navbar {
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
}

.pw-navbar-inner {
    min-height: 46px;

    display: flex;
    align-items: center;
    gap: 28px;
}

.pw-navbar-link {
    color: #334155;

    font-size: 12px;
    font-weight: 600;
}

.pw-navbar-link:hover {
    color: #000;
}


/* MOBILE */

.pw-mobile-menu-button {
    display: none;

    border: 0;
    background: transparent;

    color: #111827;
    font-size: 26px;
}


/* FOOTER */

.pw-footer {
    margin-top: 50px;
    padding: 25px 0;

    background: #111827;
    color: #cbd5e1;
}

.pw-footer-bottom {
    font-size: 11px;
    text-align: center;
}


@media (max-width: 991.98px) {

    .pw-header-inner {
        grid-template-columns: 1fr auto;
        gap: 15px;
    }

    .pw-header-search {
        grid-column: 1 / -1;
        grid-row: 2;

        padding-bottom: 15px;
    }

    .pw-action-text {
        display: none;
    }

    .pw-mobile-menu-button {
        display: block;
    }

}


@media (max-width: 575.98px) {

    .pw-topbar-left {
        display: none;
    }

    .pw-topbar-inner {
        justify-content: center;
    }

    .pw-topbar-right > span:last-child,
    .pw-topbar-divider {
        display: none;
    }

    .pw-header-inner {
        min-height: 68px;
    }

    .pw-logo-text strong {
        font-size: 19px;
    }

    .pw-logo-text small {
        display: none;
    }

    .pw-logo-icon {
        width: 37px;
        height: 37px;
    }

    .pw-header-actions {
        gap: 15px;
    }

    .pw-search-button {
        padding: 0 14px;
    }

    .pw-navbar {
        display: none;
    }

}

/* ============================================================
   PIXELWORLD NAVIGATION
   ============================================================ */

.pw-navbar {
    position: relative;
    z-index: 800;

    border-bottom: 1px solid #e5e7eb;

    background: #fff;
}


.pw-navbar-inner {
    min-height: 48px;

    display: flex;
    align-items: stretch;

    gap: 3px;
}


.pw-navbar-link {
    position: relative;

    display: flex;
    align-items: center;

    gap: 6px;

    padding: 0 13px;

    color: #334155;

    font-size: 12px;
    font-weight: 600;

    white-space: nowrap;

    transition:
        color .2s ease,
        background .2s ease;
}


.pw-navbar-link:hover,
.pw-navbar-link.active {
    background: #f8fafc;
    color: #111827;
}


.pw-navbar-link.active::after {
    content: "";

    position: absolute;

    left: 13px;
    right: 13px;
    bottom: 0;

    height: 2px;

    border-radius: 2px 2px 0 0;

    background: #111827;
}


.pw-navbar-link .bi-chevron-down {
    margin-left: 2px;

    font-size: 8px;

    transition: transform .2s ease;
}


.pw-navbar-highlight {
    margin-left: auto;

    color: #b45309;
}


.pw-navbar-highlight i {
    color: #d97706;
}


/* ============================================================
   DESKTOP DROPDOWN
   ============================================================ */

.pw-nav-dropdown {
    position: relative;

    display: flex;
}


.pw-nav-dropdown:hover
.pw-dropdown-trigger
.bi-chevron-down {
    transform: rotate(180deg);
}


.pw-dropdown-menu {
    position: absolute;

    top: calc(100% - 1px);
    left: 0;

    width: 440px;

    visibility: hidden;

    padding: 0;

    border: 1px solid #e2e8f0;
    border-radius: 0 0 10px 10px;

    background: #fff;

    box-shadow:
        0 15px 35px rgba(15, 23, 42, .12);

    opacity: 0;

    transform: translateY(6px);

    transition:
        opacity .18s ease,
        transform .18s ease,
        visibility .18s ease;
}


.pw-nav-dropdown:hover
.pw-dropdown-menu {
    visibility: visible;

    opacity: 1;

    transform: translateY(0);
}


.pw-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 14px 16px;

    border-bottom: 1px solid #f1f5f9;

    background: #f8fafc;
}


.pw-dropdown-header strong {
    display: block;

    color: #1e293b;

    font-size: 12px;
}


.pw-dropdown-header span {
    display: block;

    margin-top: 2px;

    color: #94a3b8;

    font-size: 9.5px;
}


.pw-dropdown-header > a {
    display: flex;
    align-items: center;

    gap: 5px;

    color: #475569;

    font-size: 10px;
    font-weight: 600;

    white-space: nowrap;
}


.pw-dropdown-header > a:hover {
    color: #111827;
}


.pw-dropdown-categories {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 4px;

    padding: 10px;
}


.pw-dropdown-category {
    display: flex;
    align-items: center;

    gap: 10px;

    padding: 10px;

    border-radius: 7px;

    color: #334155;

    transition: background .2s ease;
}


.pw-dropdown-category:hover {
    background: #f8fafc;
}


.pw-dropdown-category-icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid #e2e8f0;
    border-radius: 7px;

    background: #fff;

    color: #64748b;

    font-size: 14px;
}


.pw-dropdown-category strong {
    display: block;

    color: #334155;

    font-size: 10.5px;
}


.pw-dropdown-category small {
    display: block;

    margin-top: 2px;

    color: #94a3b8;

    font-size: 8.5px;
}


/* ============================================================
   MOBILE OVERLAY
   ============================================================ */

.pw-mobile-overlay {
    position: fixed;

    inset: 0;

    z-index: 1990;

    visibility: hidden;

    background: rgba(15, 23, 42, .55);

    opacity: 0;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}


.pw-mobile-overlay.active {
    visibility: visible;
    opacity: 1;
}


body.pw-menu-open {
    overflow: hidden;
}


/* ============================================================
   MOBILE NAVIGATION
   ============================================================ */

.pw-mobile-navigation {
    position: fixed;

    top: 0;
    right: 0;
    bottom: 0;

    z-index: 2000;

    width: min(360px, 90vw);

    display: flex;
    flex-direction: column;

    background: #fff;

    box-shadow:
        -15px 0 40px rgba(15, 23, 42, .15);

    transform: translateX(105%);

    transition: transform .28s ease;
}


.pw-mobile-navigation.active {
    transform: translateX(0);
}


.pw-mobile-nav-header {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 12px 16px;

    border-bottom: 1px solid #e5e7eb;
}


.pw-mobile-logo {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #111827;
}


.pw-mobile-logo .pw-logo-icon {
    width: 36px;
    height: 36px;

    font-size: 16px;
}


.pw-mobile-logo .pw-logo-text strong {
    font-size: 18px;
}


.pw-mobile-logo .pw-logo-text small {
    font-size: 8px;
}


.pw-mobile-close {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #e2e8f0;
    border-radius: 8px;

    background: #fff;

    color: #475569;

    font-size: 16px;
}


/* ACCOUNT */

.pw-mobile-account {
    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 10px;

    padding: 14px 16px;

    background: #f8fafc;

    border-bottom: 1px solid #e5e7eb;
}


.pw-mobile-account-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #111827;
    color: #fff;

    font-size: 17px;
}


.pw-mobile-account small {
    display: block;

    color: #94a3b8;

    font-size: 9px;
}


.pw-mobile-account strong {
    display: block;

    margin-top: 1px;

    color: #334155;

    font-size: 10.5px;
}


.pw-mobile-account > a {
    color: #64748b;
}


/* BODY */

.pw-mobile-nav-body {
    flex: 1;

    overflow-y: auto;

    padding: 8px 0 20px;
}


.pw-mobile-nav-title {
    padding: 15px 17px 6px;

    color: #94a3b8;

    font-size: 8.5px;
    font-weight: 700;

    letter-spacing: .7px;

    text-transform: uppercase;
}


.pw-mobile-nav-link,
.pw-mobile-category-toggle {
    width: 100%;

    min-height: 45px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding: 8px 17px;

    border: 0;

    background: transparent;

    color: #334155;

    font-size: 11px;
    font-weight: 600;

    text-align: left;
}


.pw-mobile-nav-link > span,
.pw-mobile-category-toggle > span {
    display: flex;
    align-items: center;

    gap: 10px;
}


.pw-mobile-nav-link > span > i,
.pw-mobile-category-toggle
> span > i {
    width: 18px;

    color: #64748b;

    font-size: 14px;

    text-align: center;
}


.pw-mobile-nav-link:hover,
.pw-mobile-category-toggle:hover {
    background: #f8fafc;
}


.pw-mobile-highlight {
    color: #b45309;
}


.pw-mobile-highlight
> span > i {
    color: #d97706;
}


/* MOBILE SUBMENU */

.pw-mobile-arrow {
    color: #94a3b8;

    font-size: 9px;

    transition: transform .2s ease;
}


.pw-mobile-category-toggle.active
.pw-mobile-arrow {
    transform: rotate(180deg);
}


.pw-mobile-submenu {
    display: none;

    padding:
        2px 15px 8px 45px;
}


.pw-mobile-submenu.active {
    display: block;
}


.pw-mobile-submenu a {
    display: block;

    padding: 8px 10px;

    border-radius: 5px;

    color: #64748b;

    font-size: 10px;
}


.pw-mobile-submenu a:hover {
    background: #f8fafc;

    color: #111827;
}


.pw-mobile-submenu
.pw-mobile-submenu-view-all {
    color: #334155;
    font-weight: 700;
}


/* MOBILE FOOTER */

.pw-mobile-nav-footer {
    padding: 12px 16px;

    border-top: 1px solid #e5e7eb;

    background: #f8fafc;

    color: #64748b;

    font-size: 9.5px;

    text-align: center;
}


.pw-mobile-nav-footer i {
    margin-right: 5px;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1199.98px) {

    .pw-navbar-link {
        padding-left: 9px;
        padding-right: 9px;

        font-size: 11px;
    }

}


@media (max-width: 991.98px) {

    .pw-navbar {
        display: none;
    }

}


@media (min-width: 992px) {

    .pw-mobile-navigation,
    .pw-mobile-overlay {
        display: none;
    }

}

/* ============================================================
   HOMEPAGE HERO
   ============================================================ */

.pw-hero-section {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: #111827;
}


.pw-hero-slide {
    position: relative;

    min-height: 500px;

    overflow: hidden;

    background: #111827;
}


.pw-hero-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


/*
|--------------------------------------------------------------------------
| Overlay
|--------------------------------------------------------------------------
|
| This improves text readability on photographic banners.
|
*/

.pw-hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(15, 23, 42, .72) 0%,
            rgba(15, 23, 42, .45) 40%,
            rgba(15, 23, 42, .12) 75%,
            rgba(15, 23, 42, .08) 100%
        );
}


/* CONTAINER */

.pw-hero-container {
    position: relative;

    z-index: 2;

    min-height: 500px;

    display: flex;
    align-items: center;
}


/* CONTENT */

.pw-hero-content {
    width: 100%;
    max-width: 650px;

    padding: 65px 0;

    color: #fff;
}


.pw-hero-content-left {
    margin-right: auto;

    text-align: left;
}


.pw-hero-content-center {
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}


.pw-hero-content-right {
    margin-left: auto;

    text-align: right;
}


/* EYEBROW */

.pw-hero-eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin-bottom: 15px;

    padding: 6px 11px;

    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 30px;

    background: rgba(255, 255, 255, .1);

    backdrop-filter: blur(5px);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .4px;

    text-transform: uppercase;
}


.pw-hero-eyebrow i {
    color: #fbbf24;
}


/* TITLE */

.pw-hero-content h1 {
    max-width: 650px;

    margin: 0;

    color: #fff;

    font-size: clamp(
        34px,
        4vw,
        58px
    );

    font-weight: 700;

    line-height: 1.08;

    letter-spacing: -1.5px;
}


.pw-hero-content-center h1 {
    margin-left: auto;
    margin-right: auto;
}


.pw-hero-content-right h1 {
    margin-left: auto;
}


/* SUBTITLE */

.pw-hero-content p {
    max-width: 560px;

    margin:
        18px 0
        0;

    color: rgba(
        255,
        255,
        255,
        .88
    );

    font-size: 15px;

    line-height: 1.7;
}


.pw-hero-content-center p {
    margin-left: auto;
    margin-right: auto;
}


.pw-hero-content-right p {
    margin-left: auto;
}


/* BUTTON */

.pw-hero-button {
    min-height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-top: 26px;

    padding: 0 21px;

    border-radius: 7px;

    background: #fff;

    color: #111827;

    font-size: 12px;
    font-weight: 700;

    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}


.pw-hero-button:hover {
    background: #f8fafc;

    color: #111827;

    transform: translateY(-2px);

    box-shadow:
        0 8px 25px
        rgba(0, 0, 0, .15);
}


.pw-hero-button i {
    font-size: 12px;
}


/* ============================================================
   CAROUSEL CONTROLS
   ============================================================ */

.pw-hero-control {
    width: 65px;

    opacity: 0;

    transition: opacity .2s ease;
}


.pw-hero-section:hover
.pw-hero-control {
    opacity: 1;
}


.pw-hero-control-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid
        rgba(255, 255, 255, .25);

    border-radius: 50%;

    background:
        rgba(15, 23, 42, .45);

    backdrop-filter: blur(6px);

    color: #fff;

    font-size: 13px;
}


/* ============================================================
   INDICATORS
   ============================================================ */

.pw-hero-indicators {
    z-index: 5;

    margin-bottom: 18px;
}


.pw-hero-indicators
[data-bs-target] {
    width: 7px;
    height: 7px;

    margin: 0 4px;

    border: 0;
    border-radius: 50%;

    background: #fff;

    opacity: .45;

    transition:
        width .2s ease,
        border-radius .2s ease,
        opacity .2s ease;
}


.pw-hero-indicators
.active {
    width: 25px;

    border-radius: 10px;

    opacity: 1;
}


/* ============================================================
   FALLBACK HERO
   ============================================================ */

.pw-hero-fallback {
    padding: 90px 0;

    background:
        linear-gradient(
            135deg,
            #111827,
            #334155
        );

    color: #fff;
}


.pw-hero-fallback-content {
    max-width: 650px;
}


.pw-hero-fallback-content > span {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    margin-bottom: 14px;

    color: #fbbf24;

    font-size: 11px;
    font-weight: 600;
}


.pw-hero-fallback h1 {
    margin: 0;

    color: #fff;

    font-size: clamp(
        34px,
        4vw,
        56px
    );

    line-height: 1.1;
}


.pw-hero-fallback p {
    max-width: 550px;

    margin: 18px 0 0;

    color: #cbd5e1;

    line-height: 1.7;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 991.98px) {

    .pw-hero-slide,
    .pw-hero-container {
        min-height: 440px;
    }


    .pw-hero-content {
        max-width: 570px;

        padding:
            55px 20px;
    }


    .pw-hero-content h1 {
        font-size: 42px;
    }


    .pw-hero-control {
        display: none;
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 575.98px) {

    .pw-hero-slide,
    .pw-hero-container {
        min-height: 420px;
    }


    .pw-hero-image {
        object-position: center;
    }


    .pw-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(15, 23, 42, .75),
                rgba(15, 23, 42, .42)
            );
    }


    .pw-hero-content {
        max-width: 100%;

        padding:
            55px 8px
            70px;
    }


    .pw-hero-content h1 {
        font-size: 33px;

        letter-spacing: -.8px;
    }


    .pw-hero-content p {
        max-width: 430px;

        font-size: 13px;

        line-height: 1.6;
    }


    /*
     * On mobile, force all content left aligned.
     */

    .pw-hero-content-center,
    .pw-hero-content-right {
        margin-left: 0;
        margin-right: 0;

        text-align: left;
    }


    .pw-hero-content-center h1,
    .pw-hero-content-center p,
    .pw-hero-content-right h1,
    .pw-hero-content-right p {
        margin-left: 0;
        margin-right: 0;
    }


    .pw-hero-button {
        min-height: 43px;

        margin-top: 21px;

        padding: 0 17px;
    }

}
/* ============================================================
   PIXELWORLD HOMEPAGE HERO
   ============================================================ */

.pw-home-hero {
    position: relative;
    overflow: hidden;
    background: #111827;
}


/* SLIDE */

.pw-hero-slide {
    position: relative;

    width: 100%;
    min-height: 500px;

    overflow: hidden;

    background: #111827;
}


/* IMAGE */

.pw-hero-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* OVERLAY */

.pw-hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(15, 23, 42, .72) 0%,
            rgba(15, 23, 42, .48) 38%,
            rgba(15, 23, 42, .16) 72%,
            rgba(15, 23, 42, .08) 100%
        );
}


/* CONTAINER */

.pw-hero-container {
    position: relative;

    z-index: 2;

    min-height: 500px;

    display: flex;
    align-items: center;
}


/* CONTENT */

.pw-hero-content {
    width: 100%;
    max-width: 660px;

    padding: 65px 0;

    color: #fff;
}


.pw-hero-content-left {
    margin-right: auto;
    text-align: left;
}


.pw-hero-content-center {
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}


.pw-hero-content-right {
    margin-left: auto;

    text-align: right;
}


/* SMALL TITLE */

.pw-hero-small-title {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin-bottom: 15px;

    padding: 7px 12px;

    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50px;

    background: rgba(255,255,255,.10);

    backdrop-filter: blur(5px);

    color: #fff;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .5px;

    text-transform: uppercase;
}


.pw-hero-small-title i {
    color: #fbbf24;
}


/* TITLE */

.pw-hero-content h1 {
    max-width: 660px;

    margin: 0;

    color: #fff;

    font-size: clamp(
        36px,
        4vw,
        58px
    );

    font-weight: 700;

    line-height: 1.08;

    letter-spacing: -1.5px;
}


.pw-hero-content-center h1 {
    margin-left: auto;
    margin-right: auto;
}


.pw-hero-content-right h1 {
    margin-left: auto;
}


/* DESCRIPTION */

.pw-hero-content p {
    max-width: 560px;

    margin: 18px 0 0;

    color: rgba(255,255,255,.88);

    font-size: 15px;

    line-height: 1.7;
}


.pw-hero-content-center p {
    margin-left: auto;
    margin-right: auto;
}


.pw-hero-content-right p {
    margin-left: auto;
}


/* BUTTON */

.pw-hero-btn {
    min-height: 47px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-top: 27px;

    padding: 0 22px;

    border-radius: 8px;

    background: #fff;

    color: #111827;

    font-size: 12px;
    font-weight: 700;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}


.pw-hero-btn:hover {
    background: #f8fafc;

    color: #111827;

    transform: translateY(-2px);

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.18);
}


/* ============================================================
   CAROUSEL INDICATORS
   ============================================================ */

.pw-hero-indicators {
    z-index: 5;

    margin-bottom: 20px;
}


.pw-hero-indicators [data-bs-target] {
    width: 7px;
    height: 7px;

    margin: 0 4px;

    border: 0;
    border-radius: 50%;

    background: #fff;

    opacity: .5;

    transition:
        width .2s ease,
        opacity .2s ease;
}


.pw-hero-indicators .active {
    width: 26px;

    border-radius: 20px;

    opacity: 1;
}


/* ============================================================
   CAROUSEL ARROWS
   ============================================================ */

.pw-hero-control {
    width: 65px;

    opacity: 0;

    transition: opacity .2s ease;
}


.pw-home-hero:hover
.pw-hero-control {
    opacity: 1;
}


.pw-hero-arrow {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid
        rgba(255,255,255,.25);

    border-radius: 50%;

    background:
        rgba(15,23,42,.42);

    backdrop-filter: blur(5px);

    color: #fff;

    font-size: 14px;
}


/* ============================================================
   FALLBACK
   ============================================================ */

.pw-hero-fallback {
    padding: 95px 0;

    background:
        linear-gradient(
            135deg,
            #111827,
            #334155
        );

    color: #fff;
}


.pw-hero-fallback-content {
    max-width: 650px;
}


.pw-hero-fallback-content > span {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    margin-bottom: 15px;

    color: #fbbf24;

    font-size: 11px;
    font-weight: 600;
}


.pw-hero-fallback h1 {
    margin: 0;

    color: #fff;

    font-size: clamp(
        36px,
        4vw,
        56px
    );

    line-height: 1.1;
}


.pw-hero-fallback p {
    max-width: 550px;

    margin-top: 18px;

    color: #cbd5e1;

    line-height: 1.7;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 991.98px) {

    .pw-hero-slide,
    .pw-hero-container {
        min-height: 440px;
    }


    .pw-hero-content {
        max-width: 580px;

        padding: 55px 15px;
    }


    .pw-hero-content h1 {
        font-size: 42px;
    }


    .pw-hero-control {
        display: none;
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 575.98px) {

    .pw-hero-slide,
    .pw-hero-container {
        min-height: 410px;
    }


    .pw-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(15,23,42,.76),
                rgba(15,23,42,.38)
            );
    }


    .pw-hero-content {
        max-width: 100%;

        padding:
            50px 7px
            65px;
    }


    .pw-hero-content h1 {
        font-size: 32px;

        letter-spacing: -.8px;
    }


    .pw-hero-content p {
        font-size: 13px;

        line-height: 1.6;
    }


    .pw-hero-small-title {
        font-size: 8px;
    }


    /*
     * Mobile readability:
     * all banner text becomes left aligned.
     */

    .pw-hero-content-center,
    .pw-hero-content-right {
        margin-left: 0;
        margin-right: 0;

        text-align: left;
    }


    .pw-hero-content-center h1,
    .pw-hero-content-center p,
    .pw-hero-content-right h1,
    .pw-hero-content-right p {
        margin-left: 0;
        margin-right: 0;
    }


    .pw-hero-btn {
        min-height: 43px;

        margin-top: 21px;

        padding: 0 17px;
    }

}
/* ============================================================
   HOMEPAGE COMMON SECTION
   ============================================================ */

.pw-home-section {
    padding: 75px 0;
}


.pw-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 30px;
}


.pw-section-eyebrow {
    display: block;

    margin-bottom: 6px;

    color: #64748b;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.pw-section-header h2 {
    margin: 0;

    color: #111827;

    font-size: 30px;
    font-weight: 700;

    letter-spacing: -.7px;
}


.pw-section-header p {
    max-width: 560px;

    margin: 8px 0 0;

    color: #64748b;

    font-size: 12px;

    line-height: 1.6;
}


.pw-section-view-all {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    flex-shrink: 0;

    padding-bottom: 3px;

    border-bottom: 1px solid #cbd5e1;

    color: #334155;

    font-size: 11px;
    font-weight: 700;

    transition:
        color .2s ease,
        border-color .2s ease;
}


.pw-section-view-all:hover {
    color: #000;

    border-color: #111827;
}


/* ============================================================
   SHOP BY CATEGORY
   ============================================================ */

.pw-category-section {
    background: #fff;
}


.pw-category-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}


/* CARD */

.pw-category-card {
    min-width: 0;

    overflow: hidden;

    border: 1px solid #e5e7eb;
    border-radius: 12px;

    background: #fff;

    color: #334155;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.pw-category-card:hover {
    border-color: #d1d5db;

    color: #334155;

    transform: translateY(-4px);

    box-shadow:
        0 14px 35px
        rgba(15, 23, 42, .08);
}


/* IMAGE */

.pw-category-image {
    position: relative;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: #f1f5f9;
}


.pw-category-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .4s ease;
}


.pw-category-card:hover
.pw-category-image img {
    transform: scale(1.045);
}


/* LIGHT OVERLAY */

.pw-category-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(15,23,42,.10)
        );
}


/* PLACEHOLDER */

.pw-category-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #f8fafc,
            #e2e8f0
        );

    color: #94a3b8;

    font-size: 35px;
}


/* ARROW */

.pw-category-arrow {
    position: absolute;

    top: 12px;
    right: 12px;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.92);

    color: #334155;

    box-shadow:
        0 4px 12px
        rgba(15,23,42,.08);

    font-size: 12px;

    opacity: 0;

    transform:
        translateY(5px);

    transition:
        opacity .2s ease,
        transform .2s ease;
}


.pw-category-card:hover
.pw-category-arrow {
    opacity: 1;

    transform:
        translateY(0);
}


/* CONTENT */

.pw-category-content {
    padding: 16px 17px 18px;
}


.pw-category-content h3 {
    margin: 0;

    color: #1e293b;

    font-size: 14px;
    font-weight: 700;
}


.pw-category-content p {
    min-height: 36px;

    margin: 6px 0 12px;

    color: #94a3b8;

    font-size: 10px;

    line-height: 1.6;
}


.pw-category-content > span {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: #475569;

    font-size: 10px;
    font-weight: 700;
}


.pw-category-content > span i {
    transition:
        transform .2s ease;
}


.pw-category-card:hover
.pw-category-content > span i {
    transform:
        translateX(3px);
}


/* ============================================================
   CATEGORY TABLET
   ============================================================ */

@media (max-width: 991.98px) {

    .pw-home-section {
        padding: 60px 0;
    }


    .pw-category-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* ============================================================
   CATEGORY MOBILE
   ============================================================ */

@media (max-width: 575.98px) {

    .pw-home-section {
        padding: 45px 0;
    }


    .pw-section-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 12px;

        margin-bottom: 22px;
    }


    .pw-section-header h2 {
        font-size: 24px;
    }


    .pw-section-header p {
        font-size: 11px;
    }


    .pw-category-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }


    .pw-category-card {
        border-radius: 9px;
    }


    .pw-category-image {
        aspect-ratio: 1 / 1;
    }


    .pw-category-content {
        padding: 11px 11px 13px;
    }


    .pw-category-content h3 {
        font-size: 11px;
    }


    .pw-category-content p {
        min-height: 0;

        margin: 4px 0 8px;

        font-size: 8.5px;
    }


    .pw-category-content > span {
        font-size: 8.5px;
    }


    .pw-category-arrow {
        display: none;
    }

}
/* ============================================================
   FEATURED PRODUCTS
   ============================================================ */

.pw-featured-products {
    background: #f8fafc;
}


.pw-product-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}


/* CARD */

.pw-product-card {
    min-width: 0;

    overflow: hidden;

    border: 1px solid #e5e7eb;
    border-radius: 12px;

    background: #fff;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}


.pw-product-card:hover {
    border-color: #d7dce2;

    transform: translateY(-4px);

    box-shadow:
        0 15px 35px
        rgba(15, 23, 42, .08);
}


/* ============================================================
   PRODUCT IMAGE
   ============================================================ */

.pw-product-image-wrap {
    position: relative;

    display: block;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: #f1f5f9;
}


.pw-product-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .4s ease;
}


.pw-product-card:hover
.pw-product-image {
    transform: scale(1.045);
}


/* NO IMAGE */

.pw-product-no-image {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #f8fafc,
            #e2e8f0
        );

    color: #94a3b8;

    font-size: 36px;
}


/* ============================================================
   BADGES
   ============================================================ */

.pw-product-featured-badge {
    position: absolute;

    top: 11px;
    left: 11px;

    display: inline-flex;
    align-items: center;

    gap: 5px;

    padding: 5px 8px;

    border-radius: 5px;

    background:
        rgba(255, 255, 255, .94);

    color: #334155;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .3px;

    text-transform: uppercase;

    box-shadow:
        0 3px 10px
        rgba(15,23,42,.06);
}


.pw-product-featured-badge i {
    color: #f59e0b;
}


.pw-product-discount {
    position: absolute;

    right: 11px;
    bottom: 11px;

    padding: 5px 7px;

    border-radius: 5px;

    background: #111827;

    color: #fff;

    font-size: 8px;
    font-weight: 700;
}


/* OPEN PRODUCT */

.pw-product-open {
    position: absolute;

    top: 11px;
    right: 11px;

    width: 33px;
    height: 33px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.94);

    color: #334155;

    font-size: 11px;

    opacity: 0;

    transform:
        translateY(4px);

    transition:
        opacity .2s ease,
        transform .2s ease;
}


.pw-product-card:hover
.pw-product-open {
    opacity: 1;

    transform:
        translateY(0);
}


/* ============================================================
   PRODUCT CONTENT
   ============================================================ */

.pw-product-content {
    padding: 16px 17px 18px;
}


.pw-product-type {
    display: flex;
    align-items: center;

    gap: 5px;

    margin-bottom: 7px;

    color: #94a3b8;

    font-size: 8.5px;
    font-weight: 700;

    letter-spacing: .4px;

    text-transform: uppercase;
}


.pw-product-content h3 {
    margin: 0;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.45;
}


.pw-product-content h3 a {
    color: #1e293b;
}


.pw-product-content h3 a:hover {
    color: #000;
}


/* DESCRIPTION */

.pw-product-description {
    min-height: 34px;

    margin: 6px 0 0;

    color: #94a3b8;

    font-size: 9.5px;

    line-height: 1.6;
}


/* ============================================================
   PRICE
   ============================================================ */

.pw-product-price {
    display: flex;
    align-items: baseline;

    gap: 7px;

    margin-top: 11px;
}


.pw-product-current-price {
    color: #111827;

    font-size: 15px;
    font-weight: 700;
}


.pw-product-mrp {
    color: #94a3b8;

    font-size: 10px;

    text-decoration: line-through;
}


/* CUSTOMIZABLE */

.pw-product-customizable {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    margin-top: 9px;

    padding: 4px 7px;

    border-radius: 4px;

    background: #f1f5f9;

    color: #64748b;

    font-size: 8.5px;
    font-weight: 600;
}


/* ============================================================
   PRODUCT BUTTON
   ============================================================ */

.pw-product-btn {
    width: 100%;
    min-height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    margin-top: 14px;

    border: 1px solid #e2e8f0;
    border-radius: 6px;

    background: #fff;

    color: #334155;

    font-size: 9.5px;
    font-weight: 700;

    transition:
        background .2s ease,
        border-color .2s ease,
        color .2s ease;
}


.pw-product-btn:hover {
    border-color: #111827;

    background: #111827;

    color: #fff;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 991.98px) {

    .pw-product-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 575.98px) {

    .pw-product-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }


    .pw-product-card {
        border-radius: 9px;
    }


    .pw-product-content {
        padding: 11px;
    }


    .pw-product-content h3 {
        font-size: 10.5px;
    }


    .pw-product-description {
        display: none;
    }


    .pw-product-current-price {
        font-size: 12px;
    }


    .pw-product-mrp {
        font-size: 8.5px;
    }


    .pw-product-featured-badge {
        top: 7px;
        left: 7px;

        font-size: 7px;
    }


    .pw-product-discount {
        right: 7px;
        bottom: 7px;

        font-size: 7px;
    }


    .pw-product-open {
        display: none;
    }


    .pw-product-customizable {
        font-size: 7.5px;
    }


    .pw-product-btn {
        min-height: 35px;

        margin-top: 10px;

        font-size: 8px;
    }

}

/* ============================================================
   PERSONALIZED PHOTO PRODUCTS
   ============================================================ */

.pw-personalized-section {
    background: #fff;
}


.pw-personalized-box {
    position: relative;

    overflow: hidden;

    padding: 55px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #f8fafc 0%,
            #f1f5f9 100%
        );

    border: 1px solid #e2e8f0;
}


/* DECORATIVE CIRCLE */

.pw-personalized-box::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    top: -170px;
    right: -120px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .7);
}


/* ============================================================
   LEFT CONTENT
   ============================================================ */

.pw-personalized-content {
    position: relative;

    z-index: 2;

    max-width: 440px;
}


.pw-personalized-content h2 {
    margin: 0;

    color: #111827;

    font-size: 36px;
    font-weight: 700;

    line-height: 1.15;

    letter-spacing: -1px;
}


.pw-personalized-intro {
    margin: 17px 0 0;

    color: #64748b;

    font-size: 12px;

    line-height: 1.75;
}


/* BUTTON */

.pw-personalized-button {
    min-height: 45px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 25px;

    padding: 0 19px;

    border-radius: 7px;

    background: #111827;

    color: #fff;

    font-size: 10px;
    font-weight: 700;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}


.pw-personalized-button:hover {
    background: #1e293b;

    color: #fff;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px
        rgba(15, 23, 42, .15);
}


/* ============================================================
   PROCESS
   ============================================================ */

.pw-personalized-process {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 14px;
}


/* PROCESS CARD */

.pw-process-item {
    position: relative;

    min-height: 180px;

    padding: 22px;

    overflow: hidden;

    border: 1px solid #e2e8f0;
    border-radius: 12px;

    background: #fff;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}


.pw-process-item:hover {
    border-color: #cbd5e1;

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px
        rgba(15, 23, 42, .07);
}


/* NUMBER */

.pw-process-number {
    position: absolute;

    top: 14px;
    right: 16px;

    color: #e2e8f0;

    font-size: 27px;
    font-weight: 800;

    line-height: 1;
}


/* ICON */

.pw-process-icon {
    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 15px;

    border-radius: 9px;

    background: #f1f5f9;

    color: #334155;

    font-size: 16px;
}


/* CONTENT */

.pw-process-content h3 {
    margin: 0;

    color: #1e293b;

    font-size: 12px;
    font-weight: 700;
}


.pw-process-content p {
    margin: 7px 0 0;

    color: #94a3b8;

    font-size: 9.5px;

    line-height: 1.65;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 991.98px) {

    .pw-personalized-box {
        padding: 40px;
    }


    .pw-personalized-content {
        max-width: 600px;
    }


    .pw-personalized-content h2 {
        font-size: 31px;
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 575.98px) {

    .pw-personalized-box {
        padding: 28px 18px;

        border-radius: 13px;
    }


    .pw-personalized-content h2 {
        font-size: 26px;

        letter-spacing: -.5px;
    }


    .pw-personalized-intro {
        font-size: 10.5px;
    }


    .pw-personalized-button {
        min-height: 41px;

        margin-top: 20px;

        font-size: 9px;
    }


    .pw-personalized-process {
        grid-template-columns: 1fr;

        gap: 10px;
    }


    .pw-process-item {
        min-height: auto;

        padding: 17px;
    }


    .pw-process-icon {
        width: 35px;
        height: 35px;

        margin-bottom: 11px;

        font-size: 14px;
    }


    .pw-process-content h3 {
        font-size: 11px;
    }


    .pw-process-content p {
        font-size: 9px;
    }


    .pw-process-number {
        font-size: 23px;
    }

}

/* ============================================================
   PHOTO BOOK HIGHLIGHT
   ============================================================ */

.pw-photo-book-section {
    background: #fff;
}


.pw-photo-book-box {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, .95fr);

    min-height: 500px;

    overflow: hidden;

    border: 1px solid #e2e8f0;
    border-radius: 18px;

    background: #111827;
}


/* ============================================================
   PHOTO BOOK IMAGE
   ============================================================ */

.pw-photo-book-visual {
    position: relative;

    min-height: 500px;

    overflow: hidden;

    background: #e2e8f0;
}


.pw-photo-book-visual > img {
    width: 100%;
    height: 100%;

    position: absolute;

    inset: 0;

    display: block;

    object-fit: cover;

    transition:
        transform .6s ease;
}


.pw-photo-book-box:hover
.pw-photo-book-visual > img {
    transform: scale(1.025);
}


/* IMAGE LABEL */

.pw-photo-book-image-label {
    position: absolute;

    left: 22px;
    bottom: 22px;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    padding: 8px 12px;

    border: 1px solid
        rgba(255,255,255,.35);

    border-radius: 30px;

    background:
        rgba(15,23,42,.58);

    backdrop-filter: blur(7px);

    color: #fff;

    font-size: 9px;
    font-weight: 700;
}


/* PLACEHOLDER */

.pw-photo-book-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #e2e8f0,
            #cbd5e1
        );

    color: #64748b;

    font-size: 55px;
}


/* ============================================================
   CONTENT
   ============================================================ */

.pw-photo-book-content {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 55px;

    color: #fff;
}


.pw-photo-book-eyebrow {
    display: inline-flex;
    align-items: center;

    align-self: flex-start;

    gap: 7px;

    margin-bottom: 14px;

    color: #cbd5e1;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .7px;

    text-transform: uppercase;
}


.pw-photo-book-eyebrow i {
    color: #fbbf24;
}


.pw-photo-book-content h2 {
    max-width: 480px;

    margin: 0;

    color: #fff;

    font-size: 35px;
    font-weight: 700;

    line-height: 1.15;

    letter-spacing: -.8px;
}


.pw-photo-book-description {
    max-width: 490px;

    margin: 15px 0 0;

    color: #cbd5e1;

    font-size: 11px;

    line-height: 1.75;
}


/* ============================================================
   FEATURES
   ============================================================ */

.pw-photo-book-features {
    display: grid;

    gap: 13px;

    margin-top: 25px;
}


.pw-photo-book-features > div {
    display: flex;
    align-items: center;

    gap: 12px;
}


.pw-photo-book-features > div > span {
    width: 35px;
    height: 35px;

    flex: 0 0 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #334155;
    border-radius: 8px;

    background: #1e293b;

    color: #f8fafc;

    font-size: 13px;
}


.pw-photo-book-features p {
    margin: 0;

    color: #94a3b8;

    font-size: 9px;

    line-height: 1.5;
}


.pw-photo-book-features strong {
    display: block;

    margin-bottom: 2px;

    color: #f8fafc;

    font-size: 10px;
}


/* ============================================================
   PHOTO INFO
   ============================================================ */

.pw-photo-book-photo-info {
    display: inline-flex;
    align-items: center;

    align-self: flex-start;

    gap: 6px;

    margin-top: 21px;

    padding: 6px 9px;

    border-radius: 5px;

    background: #1e293b;

    color: #cbd5e1;

    font-size: 8.5px;
}


/* ============================================================
   PRICE + BUTTON
   ============================================================ */

.pw-photo-book-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-top: 27px;

    padding-top: 22px;

    border-top: 1px solid #334155;
}


.pw-photo-book-price-label {
    display: block;

    margin-bottom: 3px;

    color: #94a3b8;

    font-size: 8px;

    text-transform: uppercase;

    letter-spacing: .5px;
}


.pw-photo-book-price strong {
    color: #fff;

    font-size: 20px;
    font-weight: 700;
}


.pw-photo-book-price del {
    margin-left: 6px;

    color: #64748b;

    font-size: 10px;
}


.pw-photo-book-button {
    min-height: 43px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 0 18px;

    border-radius: 7px;

    background: #fff;

    color: #111827;

    font-size: 9.5px;
    font-weight: 700;

    white-space: nowrap;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.pw-photo-book-button:hover {
    color: #111827;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px
        rgba(0,0,0,.20);
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 991.98px) {

    .pw-photo-book-box {
        grid-template-columns: 1fr;
    }


    .pw-photo-book-visual {
        min-height: 420px;
    }


    .pw-photo-book-content {
        padding: 45px;
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 575.98px) {

    .pw-photo-book-box {
        border-radius: 13px;
    }


    .pw-photo-book-visual {
        min-height: 300px;
    }


    .pw-photo-book-placeholder {
        min-height: 300px;
    }


    .pw-photo-book-content {
        padding: 30px 20px;
    }


    .pw-photo-book-content h2 {
        font-size: 26px;
    }


    .pw-photo-book-description {
        font-size: 10px;
    }


    .pw-photo-book-bottom {
        align-items: flex-start;
        flex-direction: column;
    }


    .pw-photo-book-button {
        width: 100%;
    }

}

/* ============================================================
   WHY CHOOSE PIXELWORLD
   ============================================================ */

.pw-why-section {
    background: #f8fafc;

    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}


/* ============================================================
   HEADER
   ============================================================ */

.pw-why-header {
    max-width: 650px;

    margin: 0 auto 34px;

    text-align: center;
}


.pw-why-header h2 {
    margin: 0;

    color: #111827;

    font-size: 30px;
    font-weight: 700;

    letter-spacing: -.7px;
}


.pw-why-header p {
    max-width: 560px;

    margin:
        9px auto
        0;

    color: #64748b;

    font-size: 11px;

    line-height: 1.7;
}


/* ============================================================
   GRID
   ============================================================ */

.pw-why-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 15px;
}


/* ============================================================
   CARD
   ============================================================ */

.pw-why-card {
    position: relative;

    min-width: 0;

    min-height: 210px;

    overflow: hidden;

    padding: 25px 22px;

    border: 1px solid #e2e8f0;
    border-radius: 12px;

    background: #fff;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}


.pw-why-card:hover {
    border-color: #cbd5e1;

    transform:
        translateY(-4px);

    box-shadow:
        0 14px 32px
        rgba(15, 23, 42, .07);
}


/* ============================================================
   ICON
   ============================================================ */

.pw-why-icon {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 19px;

    border-radius: 10px;

    background: #111827;

    color: #fff;

    font-size: 16px;

    transition:
        transform .25s ease;
}


.pw-why-card:hover
.pw-why-icon {
    transform:
        translateY(-2px);
}


/* ============================================================
   CONTENT
   ============================================================ */

.pw-why-content {
    position: relative;

    z-index: 2;
}


.pw-why-content h3 {
    margin: 0;

    color: #1e293b;

    font-size: 12px;
    font-weight: 700;
}


.pw-why-content p {
    margin: 8px 0 0;

    color: #94a3b8;

    font-size: 9.5px;

    line-height: 1.7;
}


/* ============================================================
   BACKGROUND NUMBER
   ============================================================ */

.pw-why-number {
    position: absolute;

    right: 15px;
    bottom: 8px;

    color: #f1f5f9;

    font-size: 43px;
    font-weight: 800;

    line-height: 1;

    pointer-events: none;
}


/* ============================================================
   TRUST BAR
   ============================================================ */

.pw-why-trust {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 0;

    margin-top: 28px;

    padding: 15px 20px;

    border: 1px solid #e2e8f0;
    border-radius: 9px;

    background: #fff;
}


.pw-why-trust > div {
    display: flex;
    align-items: center;

    gap: 7px;

    padding: 0 25px;

    color: #64748b;

    font-size: 9px;
    font-weight: 600;
}


.pw-why-trust > div:not(:last-child) {
    border-right:
        1px solid #e2e8f0;
}


.pw-why-trust i {
    color: #334155;

    font-size: 11px;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 991.98px) {

    .pw-why-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .pw-why-card {
        min-height: 190px;
    }


    .pw-why-trust > div {
        padding: 8px 18px;
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 575.98px) {

    .pw-why-header {
        margin-bottom: 24px;
    }


    .pw-why-header h2 {
        font-size: 24px;
    }


    .pw-why-header p {
        font-size: 10px;
    }


    .pw-why-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 9px;
    }


    .pw-why-card {
        min-height: 185px;

        padding: 17px 14px;

        border-radius: 9px;
    }


    .pw-why-icon {
        width: 36px;
        height: 36px;

        margin-bottom: 14px;

        border-radius: 8px;

        font-size: 13px;
    }


    .pw-why-content h3 {
        font-size: 10px;
    }


    .pw-why-content p {
        font-size: 8.5px;

        line-height: 1.6;
    }


    .pw-why-number {
        right: 9px;

        font-size: 32px;
    }


    .pw-why-trust {
        align-items: flex-start;
        flex-direction: column;

        padding: 10px 15px;
    }


    .pw-why-trust > div {
        width: 100%;

        padding: 8px 0;
    }


    .pw-why-trust >
    div:not(:last-child) {
        border-right: 0;

        border-bottom:
            1px solid #f1f5f9;
    }

}



/*============================================================
    FOOTER
=============================================================*/

.footer{
    margin-top:70px;
    background:#101828;
    color:#d1d5db;
    font-size:15px;
}

.footer a{
    color:#d1d5db;
    text-decoration:none;
    transition:.3s;
}

.footer a:hover{
    color:var(--primary-color);
}

.footer .container{
    max-width:1320px;
    margin:auto;
    padding:60px 15px 25px;
}

/*============================================================
    FOOTER TOP
=============================================================*/

.footer-top{

    display:grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1fr
        1.5fr;

    gap:40px;

    padding-bottom:45px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

/*============================================================
    FOOTER COLUMN
=============================================================*/

.footer-column h4{

    color:#ffffff;

    margin-bottom:22px;

    font-size:18px;

    font-weight:600;

}

.footer-column ul{

    margin:0;

    padding:0;

    list-style:none;

}

.footer-column ul li{

    margin-bottom:13px;

}

.footer-column ul li a{

    display:inline-block;

    transition:.25s;

}

.footer-column ul li a:hover{

    padding-left:6px;

}

/*============================================================
    COMPANY
=============================================================*/

.company-column img{

    width:180px;

    margin-bottom:18px;

}

.company-column h3{

    color:#fff;

    margin-bottom:10px;

}

.company-column .tagline{

    color:#ffffff;

    font-weight:600;

    margin-bottom:15px;

}

.company-column p{

    line-height:1.8;

}

/*============================================================
    SOCIAL
=============================================================*/

.footer-social{

    display:flex;

    gap:12px;

    margin-top:25px;

}

.footer-social a{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

    transition:.3s;

}

.footer-social a:hover{

    transform:translateY(-4px);

}

/* Brand Hover */

.footer-social a:nth-child(1):hover{

    background:#1877F2;

}

.footer-social a:nth-child(2):hover{

    background:#E4405F;

}

.footer-social a:nth-child(3):hover{

    background:#FF0000;

}

.footer-social a:nth-child(4):hover{

    background:#25D366;

}

/*============================================================
    CONTACT
=============================================================*/

.footer-contact li{

    display:flex;

    gap:12px;

    align-items:flex-start;

    line-height:1.8;

}

.footer-contact i{

    color:var(--primary-color);

    width:20px;

    margin-top:5px;

}

/*============================================================
    PAYMENT
=============================================================*/

.footer-payment{

    text-align:center;

    padding:40px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.footer-payment h4{

    color:#fff;

    margin-bottom:10px;

}

.footer-payment p{

    color:#9ca3af;

    margin-bottom:25px;

}

.payment-icons{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:18px;

}

.payment-icons img{

    background:#fff;

    border-radius:8px;

    padding:8px 14px;

    height:40px;

    transition:.3s;

    box-shadow:0 3px 12px rgba(0,0,0,.10);

}

.payment-icons img:hover{

    transform:translateY(-4px);

    box-shadow:0 8px 18px rgba(0,0,0,.18);

}

/*============================================================
    FOOTER BOTTOM
=============================================================*/

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

    padding-top:22px;

    font-size:14px;

    color:#9ca3af;

}

.footer-bottom strong{

    color:#fff;

}

/*============================================================
    FLOATING BUTTONS
=============================================================*/

.whatsapp-float,

.back-to-top{

    position:fixed;

    right:25px;

    width:56px;

    height:56px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    color:#fff;

    z-index:999;

    transition:.3s;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

}

.whatsapp-float{

    bottom:25px;

    background:#25D366;

}

.back-to-top{

    bottom:95px;

    background:var(--primary-color);

    opacity:0;

    visibility:hidden;

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

}

.whatsapp-float:hover,

.back-to-top:hover{

    transform:translateY(-5px);

}

.whatsapp-float span{

    display:none;

}

/*============================================================
    RESPONSIVE
=============================================================*/

@media(max-width:1200px){

.footer-top{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.footer-top{

grid-template-columns:1fr;

gap:35px;

}

.footer{

text-align:center;

}

.footer-contact li{

justify-content:center;

}

.footer-social{

justify-content:center;

}

.footer-bottom{

flex-direction:column;

text-align:center;

}

.payment-icons{

gap:12px;

}

.payment-icons img{

height:34px;

}

.whatsapp-float{

right:18px;

bottom:18px;

}

.back-to-top{

right:18px;

bottom:88px;

}

}

@media(min-width:992px){

.whatsapp-float{

width:auto;

padding:0 18px;

border-radius:50px;

gap:8px;

}

.whatsapp-float span{

display:block;

font-size:14px;

font-weight:600;

}

}

/*============================================================
    Footer Animation
=============================================================*/

.footer{

    opacity:.95;

    transform:translateY(30px);

    transition:.6s ease;

}

.footer.footer-visible{

    opacity:1;

    transform:translateY(0);

}

/*============================================================
    WhatsApp Pulse
=============================================================*/

@keyframes whatsappPulse{

    0%{

        transform:scale(1);

        box-shadow:0 0 0 0 rgba(37,211,102,.6);

    }

    70%{

        transform:scale(1.05);

        box-shadow:0 0 0 15px rgba(37,211,102,0);

    }

    100%{

        transform:scale(1);

        box-shadow:0 0 0 0 rgba(37,211,102,0);

    }

}

.whatsapp-float.pulse{

    animation:whatsappPulse 1s ease;

}

.pw-breadcrumb-wrapper{
    background:#f8f9fa;
    border-bottom:1px solid #e9ecef;
}

.pw-breadcrumb-wrapper .breadcrumb{
    margin:0;
}

.pw-breadcrumb-wrapper a{
    color:#0d6efd;
    text-decoration:none;
}

.pw-breadcrumb-wrapper a:hover{
    text-decoration:underline;
}

/* ============================================================
   NEW ARRIVALS
============================================================ */

.pw-new-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
}

.pw-new-product-card {
    min-width: 0;
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 14px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.pw-new-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .10);
}


/* IMAGE */

.pw-new-product-image-wrap {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f7fa;
}

.pw-new-product-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* CONTENT */

.pw-new-product-content {
    padding: 16px;
}

.pw-new-product-type {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 7px;
}

.pw-new-product-content h3 {
    margin: 0 0 10px;
    font-size: 17px;
    line-height: 1.35;
}

.pw-new-product-content h3 a {
    color: #0f172a;
    text-decoration: none;
}

.pw-new-product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.pw-new-product-price strong {
    font-size: 19px;
}

.pw-new-product-price del {
    font-size: 14px;
    color: #94a3b8;
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .pw-new-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}

@media (max-width: 767px) {

    .pw-new-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .pw-new-product-content {
        padding: 12px;
    }

}

@media (max-width: 480px) {

    .pw-new-product-grid {
        grid-template-columns: 1fr;
    }

}