/*
 * FirstPhone community redesign compatibility layer.
 * Visual overrides only: no application state, pricing or commerce logic lives here.
 */
:root {
    --fp-ink: #0b0b0d;
    --fp-text: #221f1f;
    --fp-muted: #77736f;
    --fp-line: #ece8e3;
    --fp-paper: #ffffff;
    --fp-canvas: #f8f7f5;
    --fp-orange: #e98435;
    --fp-amber: #f1b72a;
    --fp-gold: #fda30e;
    --fp-red: #d80e2f;
    --fp-green: #34c800;
    --fp-radius-sm: 14px;
    --fp-radius: 22px;
    --fp-radius-lg: 30px;
    --fp-shadow: 0 14px 38px rgba(20, 18, 16, .08);
    --fp-shadow-hover: 0 20px 48px rgba(20, 18, 16, .14);
}

body.fp-community-design {
    color: var(--fp-text);
    background: #0b0c0f;
    font-family: "Open Sans", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

@keyframes fp-community-announcement-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.fp-community-design .fp-community-announcement {
    position: relative;
    z-index: 1031;
    overflow: hidden;
    background: #0b0c0f;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .075em;
    text-transform: uppercase;
}

.fp-community-design .fp-community-announcement-track {
    display: flex;
    width: max-content;
    padding: 8px 0;
    align-items: center;
    justify-content: flex-start;
    white-space: nowrap;
    will-change: transform;
}

.fp-community-design .fp-community-announcement-set {
    display: flex;
    padding-right: 44px;
    padding-left: 24px;
    align-items: center;
    gap: 44px;
}

.fp-community-design .fp-community-announcement:not(.is-scrolling) .fp-community-announcement-track {
    width: 100%;
    justify-content: center;
}

.fp-community-design .fp-community-announcement:not(.is-scrolling) .fp-community-announcement-set[aria-hidden="true"] {
    display: none;
}

.fp-community-design .fp-community-announcement.is-scrolling .fp-community-announcement-track {
    animation: fp-community-announcement-scroll var(--fp-announcement-duration, 28s) linear infinite;
}

.fp-community-design .fp-community-announcement.is-scrolling:hover .fp-community-announcement-track {
    animation-play-state: paused;
}

.fp-community-design .fp-community-announcement-track span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.fp-community-design .fp-community-announcement-track i {
    color: var(--fp-orange);
}

.fp-community-design main {
    background-color: var(--fp-canvas);
}

.fp-community-design .container {
    max-width: 1360px;
}

.fp-community-design a,
.fp-community-design button,
.fp-community-design .btn {
    transition: color .18s ease, background-color .18s ease, border-color .18s ease,
        box-shadow .18s ease, transform .18s ease;
}

/* Header: the same floating, black textured character as the community design. */
.fp-community-design .topNav {
    position: sticky !important;
    top: 0;
    z-index: 1030;
    height: auto;
    padding: 10px 14px 7px;
    border: 0;
    background: #0b0c0f;
    box-shadow: none;
}

.fp-community-design .topNav > .container {
    max-width: 920px;
    padding: 9px 24px;
    border: 1px solid rgba(241, 183, 42, .14);
    border-radius: 999px;
    background-color: rgba(12, 12, 14, .96);
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, 0)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 7px);
    box-shadow: 0 13px 34px rgba(233, 132, 53, .22), 0 4px 14px rgba(0, 0, 0, .38);
}

.fp-community-design .topNav .row:first-child {
    min-height: 54px;
    align-items: center;
}

.fp-community-design .topNav .fp-community-menu-trigger {
    color: #fff;
}

.fp-community-design.fp-community-home .navigation {
    display: none !important;
}

.fp-community-design .cd-dropdown:not(.dropdown-is-active) {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.fp-community-design .cd-dropdown.dropdown-is-active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.fp-community-design .topNav a[href$="/"] img {
    width: auto;
    max-height: 48px;
    object-fit: contain;
}

.fp-community-design .topNav .search input,
.fp-community-design .topNav .new_searchInput {
    height: 42px;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    color: #fff;
    box-shadow: none;
}

.fp-community-design .topNav .new_searchInput::placeholder {
    color: rgba(255, 255, 255, .68);
}

.fp-community-design .topNav .icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    margin-left: 7px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.fp-community-design .topNav .icon:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-1px);
}

.fp-community-design .topNav .icon img {
    width: 23px;
    height: 23px;
    filter: brightness(0) invert(1);
}

.fp-community-design .topNav .storescnt,
.fp-community-design .topNav .cartcountbadge {
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border: 0;
    border-radius: 9px;
    background: var(--fp-orange);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 18px;
}

.fp-community-design .navigation {
    position: relative;
    z-index: 1020;
    padding: 0 14px 12px;
    border: 0;
    background: #0b0c0f;
}

.fp-community-design .navigation .header-navigation-inner {
    min-height: 52px;
    padding: 6px 10px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.fp-community-design .navigation a,
.fp-community-design .navigation .nav-link {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.fp-community-design .navigation .category-menu-trigger,
.fp-community-design .navigation .firstapp,
.fp-community-design .navigation .sale {
    min-height: 38px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
}

.fp-community-design .navigation .category-menu-trigger:hover,
.fp-community-design .navigation a:hover {
    color: var(--fp-amber);
}

/* Homepage hero and promotions mirror the community design without changing commerce data. */
.fp-community-design #index_slider {
    position: relative;
    overflow: hidden;
    padding: 0 0 8px;
    background: #000;
}

.fp-community-design .fp-community-video-wrap {
    position: relative;
    width: 100%;
    min-height: 340px;
    max-height: 78vh;
    overflow: hidden;
    aspect-ratio: 21 / 9;
    background: #000;
}

.fp-community-design .fp-community-video-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .45));
    pointer-events: none;
}

.fp-community-design .fp-community-video-wrap iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    min-width: 100%;
    height: 56.25vw;
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}

.fp-community-design .fp-community-hero-copy {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0 24px 40px;
    color: #fff;
    text-align: center;
    pointer-events: none;
}

.fp-community-design .fp-community-hero-copy h1 {
    margin: 0 0 8px;
    color: #fff;
    font-size: clamp(28px, 5vw, 56px);
    font-weight: 900;
    letter-spacing: -.02em;
    text-transform: uppercase;
    text-shadow: 0 4px 24px rgba(0, 0, 0, .5);
}

.fp-community-design .fp-community-hero-lead {
    margin: 0 0 18px;
    font-size: clamp(14px, 1.6vw, 18px);
    font-weight: 600;
    opacity: .95;
}

.fp-community-design .fp-community-hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    pointer-events: auto;
}

.fp-community-design .fp-community-hero-actions a {
    display: inline-flex;
    min-height: 46px;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .52);
    border-radius: 999px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.fp-community-design .fp-community-promos {
    padding: 28px 0 20px;
    background: var(--fp-canvas);
}

.fp-community-design .fp-community-promos .sliderc,
.fp-community-design .fp-community-promos .owl-stage-outer,
.fp-community-design .fp-community-promos .owl-item > a {
    overflow: hidden;
    border-radius: var(--fp-radius);
}

.fp-community-design .fp-community-promos .owl-item > a {
    display: block;
    background: #fff;
}

.fp-community-design .fp-community-promos img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 2857 / 1236;
    object-fit: cover;
}

.fp-community-design .fp-community-usps {
    padding: 0 0 24px;
    background: var(--fp-canvas);
}

.fp-community-design .fp-community-usps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--fp-line);
    border-radius: var(--fp-radius);
    background: #fff;
    box-shadow: var(--fp-shadow);
}

.fp-community-design .fp-community-usp {
    display: flex;
    min-height: 100px;
    padding: 20px 22px;
    align-items: center;
    gap: 14px;
    border-right: 1px solid var(--fp-line);
    color: var(--fp-text);
    text-decoration: none;
}

.fp-community-design .fp-community-usp:last-child {
    border-right: 0;
}

.fp-community-design .fp-community-usp > i {
    display: inline-flex;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fp-orange), var(--fp-amber));
    color: #fff;
    font-size: 18px;
}

.fp-community-design .fp-community-usp span,
.fp-community-design .fp-community-usp strong,
.fp-community-design .fp-community-usp small {
    display: block;
}

.fp-community-design .fp-community-usp strong {
    font-size: 14px;
    line-height: 1.25;
}

.fp-community-design .fp-community-usp small {
    margin-top: 4px;
    color: var(--fp-muted);
    font-size: 11px;
    line-height: 1.35;
}

.fp-community-design .fp-community-usp:hover {
    color: var(--fp-orange);
    background: #fffaf5;
}

.fp-community-design .fp-community-hero-primary {
    border-color: #fff !important;
    background: #fff;
    color: var(--fp-ink) !important;
}

.fp-community-design .fp-community-hero-actions a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .25);
}

/* Homepage sections and cards. */
.fp-community-design #firstphone,
.fp-community-design #sales,
.fp-community-design #services,
.fp-community-design #news,
.fp-community-design #refurbished,
.fp-community-design #blog {
    padding-top: 42px;
    padding-bottom: 42px;
    background: var(--fp-canvas);
}

.fp-community-design #firstphone .firstphone_box {
    overflow: hidden;
    padding: 34px;
    border: 1px solid rgba(241, 183, 42, .18);
    border-radius: var(--fp-radius-lg);
    color: #fff;
    background-color: #07080a;
    background-image:
        linear-gradient(rgba(0, 0, 0, .46), rgba(0, 0, 0, .46)),
        url(../images/firstphone-pattern.png),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 8px);
    background-position: center;
    background-size: cover, contain, auto;
    box-shadow: 0 18px 46px rgba(233, 132, 53, .18);
}

.fp-community-design #firstphone .opacity_div {
    display: none;
}

.fp-community-design #firstphone .number_box {
    display: inline-flex;
    min-height: 38px;
    padding: 4px 14px;
    align-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--fp-orange), var(--fp-amber));
    color: var(--fp-ink);
    font-size: 20px;
    font-weight: 900;
}

.fp-community-design #firstphone i {
    color: var(--fp-amber);
}

.fp-community-design #firstphone .custom_button1,
.fp-community-design .custom_button1 {
    padding: 11px 24px;
    border: 0;
    border-radius: 999px;
    background: var(--fp-orange);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 9px 22px rgba(233, 132, 53, .28);
}

.fp-community-design #sales .item,
.fp-community-design #news .item,
.fp-community-design #refurbished .item,
.fp-community-design .topProducts .item {
    overflow: hidden;
    padding: 18px;
    border: 1px solid var(--fp-line);
    border-radius: var(--fp-radius);
    background: #fff;
    box-shadow: 0 8px 24px rgba(20, 18, 16, .05);
}

/* Keep the homepage refurbished feature legible as a dark feature card. */
.fp-community-design #refurbished > .container {
    position: relative;
    overflow: hidden;
    padding: 32px;
    border: 1px solid rgba(241, 183, 42, .18);
    border-radius: var(--fp-radius-lg);
    color: #fff;
    background-color: #0b0c0f;
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, 0)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .028) 0 1px, transparent 1px 8px);
    box-shadow: 0 18px 46px rgba(20, 18, 16, .13);
}

.fp-community-design #refurbished > .container h3,
.fp-community-design #refurbished > .container h4,
.fp-community-design #refurbished > .container p {
    color: #fff;
}

.fp-community-design #sales .item:hover,
.fp-community-design #news .item:hover,
.fp-community-design #refurbished .item:hover {
    transform: translateY(-3px);
    box-shadow: var(--fp-shadow-hover);
}

.fp-community-design section h3.text-uppercase {
    text-transform: none !important;
    font-size: clamp(25px, 3vw, 36px);
    letter-spacing: -.025em;
}

/* Category listing. */
.fp-community-design #filterwrapper {
    padding-top: 30px;
    padding-bottom: 50px;
    background: var(--fp-canvas);
}

.fp-community-design #filterwrapper .breadcrumb,
.fp-community-design .product-breadcrumb .breadcrumb {
    padding: 0;
    background: transparent;
    color: var(--fp-muted);
    font-size: 12px;
}

.fp-community-design #filterwrapper .category_search,
.fp-community-design #filterwrapper #sortby,
.fp-community-design #filterwrapper .custom_newInput {
    min-height: 42px;
    border: 1px solid #dedbd7;
    border-radius: 999px;
    background: #fff;
    box-shadow: none;
}

.fp-community-design .desktop-featured-filter-toolbar,
.fp-community-design .filter-apply-panel-desktop,
.fp-community-design #sidebar-wrapper .filter-group,
.fp-community-design .filterDiv > div,
.fp-community-design .filterDiv > form > div {
    border: 1px solid var(--fp-line);
    border-radius: var(--fp-radius) !important;
    background: #fff;
    box-shadow: 0 9px 28px rgba(20, 18, 16, .055);
}

.fp-community-design .desktop-featured-filter-toolbar {
    padding: 18px 20px;
}

.fp-community-design .desktop-featured-filter-pill {
    min-height: 42px;
    border-color: #dedbd7;
    border-radius: 999px;
    background: #fff;
    color: var(--fp-text);
    font-weight: 700;
}

.fp-community-design .desktop-featured-filter-pill:hover,
.fp-community-design .desktop-featured-filter-pill.is-active {
    border-color: var(--fp-orange);
    color: var(--fp-orange);
    box-shadow: 0 6px 18px rgba(233, 132, 53, .15);
}

.fp-community-design .desktop-featured-filter-panel {
    border-radius: 28px 0 0 28px;
    box-shadow: -18px 0 55px rgba(20, 18, 16, .18);
}

.fp-community-design .desktop-featured-filter-results,
.fp-community-design .filter-action-buttons .apply-pending-filters {
    border: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--fp-orange), var(--fp-amber));
    color: #fff;
    font-weight: 800;
}

.fp-community-design #sidebar-wrapper .filterTitle,
.fp-community-design #sidebar-wrapper .filter-title,
.fp-community-design #sidebar-wrapper h3,
.fp-community-design #sidebar-wrapper h4 {
    border-radius: 16px 16px 0 0;
}

.fp-community-design .filtershow .input-group {
    overflow: hidden;
    border: 1px solid var(--fp-line);
    border-radius: 999px;
    background: #fff;
}

.fp-community-design .productlistCard {
    height: calc(100% - 18px);
    margin: 9px;
    padding: 16px;
    border: 1px solid transparent;
    border-radius: var(--fp-radius);
    background: #fff;
    box-shadow: 0 8px 25px rgba(20, 18, 16, .045);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.fp-community-design .productlistCard:hover {
    z-index: 2;
    border-color: rgba(233, 132, 53, .28);
    transform: translateY(-4px);
    box-shadow: var(--fp-shadow-hover);
}

.fp-community-design .productlistCard .pimage {
    display: flex;
    min-height: 220px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #fff;
}

.fp-community-design .productlistCard .pimage img {
    max-height: 210px;
    object-fit: contain;
}

.fp-community-design .productlistCard .card-title {
    min-height: 48px;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.38;
}

.fp-community-design .productlistCard .card-title a {
    color: var(--fp-text);
}

.fp-community-design .productlistCard .card-price {
    color: var(--fp-ink);
    font-size: 18px;
    font-weight: 900;
}

.fp-community-design .productlistCard .blackcart,
.fp-community-design .productlistCard .addtocart {
    border-radius: 13px;
    background: var(--fp-ink);
    color: #fff;
}

.fp-community-design .productlistCard .blackcart:hover,
.fp-community-design .productlistCard .addtocart:hover {
    background: var(--fp-orange);
    transform: translateY(-2px);
}

.fp-community-design .productlistCard .firstapp_price,
.fp-community-design .productlistCard .firstapp-price {
    border-radius: 15px;
    background: linear-gradient(110deg, #d64b2d, var(--fp-orange));
}

.fp-community-design .mobile-filter-trigger {
    min-height: 46px;
    padding: 7px 14px;
    border-color: rgba(233, 132, 53, .45);
    border-radius: 999px;
    background: #fff;
    color: var(--fp-text);
    box-shadow: 0 8px 22px rgba(20, 18, 16, .1);
}

.fp-community-design .mobile-filter-trigger-icon {
    background: linear-gradient(135deg, var(--fp-orange), var(--fp-amber));
}

/* Product detail. */
.fp-community-design .productdata {
    padding-top: 28px;
    padding-bottom: 48px;
    background: var(--fp-canvas);
}

.fp-community-design .productdata .product_image.main,
.fp-community-design .productdata .product_images,
.fp-community-design .productdata .mobileproductimage {
    overflow: hidden;
    border: 1px solid var(--fp-line);
    border-radius: var(--fp-radius);
    background: #fff;
    box-shadow: 0 12px 34px rgba(20, 18, 16, .055);
}

.fp-community-design .product_RightSide {
    position: relative;
    padding: 24px;
    border: 1px solid var(--fp-line);
    border-top: 3px solid var(--fp-orange);
    border-radius: var(--fp-radius);
    background: #fff;
    box-shadow: var(--fp-shadow);
}

.fp-community-design .product_RightSide h1 {
    color: var(--fp-ink);
    font-size: clamp(21px, 2.2vw, 31px);
    line-height: 1.14;
    letter-spacing: -.025em;
}

.fp-community-design .stock-available,
.fp-community-design .fewdays {
    margin-right: 6px;
    padding: 5px 10px;
    border-radius: 999px;
}

.fp-community-design .product_RightSide .sum-price {
    margin-top: 18px !important;
    padding: 18px 0;
    border-top: 1px solid var(--fp-line);
}

.fp-community-design .product_RightSide .sum-endprice,
.fp-community-design .product_RightSide .card-price {
    color: var(--fp-orange);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 900;
    letter-spacing: -.035em;
}

.fp-community-design .product_RightSide .firstapp_price_content {
    overflow: hidden;
    padding: 15px 18px;
    border: 0;
    border-radius: 17px;
    background: linear-gradient(110deg, #d54c2d, var(--fp-orange));
    box-shadow: 0 10px 28px rgba(233, 132, 53, .18);
}

.fp-community-design .product_RightSide .newcart_button,
.fp-community-design .product_RightSide .accessories_button {
    min-height: 50px;
    padding: 12px 24px;
    border: 0;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
}

.fp-community-design .product_RightSide .newcart_button {
    background: linear-gradient(90deg, var(--fp-orange), var(--fp-amber));
    color: #fff;
    box-shadow: 0 10px 26px rgba(233, 132, 53, .25);
}

.fp-community-design .product_RightSide .newcart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(233, 132, 53, .34);
}

.fp-community-design .product_RightSide .accessories_button {
    border: 1px solid var(--fp-ink);
    background: #fff;
    color: var(--fp-ink);
}

.fp-community-design .instacash_payment,
.fp-community-design .milpay_payment,
.fp-community-design .fp-refurb-card,
.fp-community-design .product-trust-foundation {
    border-radius: var(--fp-radius);
    box-shadow: 0 10px 30px rgba(20, 18, 16, .065);
}

.fp-community-design .productdescription,
.fp-community-design .productlist,
.fp-community-design .order-builder {
    border-radius: var(--fp-radius);
}

/* Footer. */
.fp-community-design .footer {
    position: relative;
    overflow: hidden;
    padding-top: 54px;
    padding-bottom: 26px;
    border-top: 1px solid rgba(241, 183, 42, .18);
    background-color: #0b0c0f;
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, 0)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .028) 0 1px, transparent 1px 8px);
    color: #fff;
    margin-bottom: 0;
}

.fp-community-design .footer .opacity_div {
    display: block;
    z-index: 0;
    opacity: .48;
    pointer-events: none;
}

.fp-community-design .footer > .container {
    position: relative;
    z-index: 1;
}

.fp-community-design .footer .list-group-item {
    padding: 6px 0;
    border: 0;
    background: transparent;
}

.fp-community-design .footer .list-group-item a {
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
}

.fp-community-design .footer .list-group-item a:hover {
    color: var(--fp-amber);
}

.fp-community-design .footer .title {
    color: var(--fp-amber);
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.fp-community-design .footer .facebook,
.fp-community-design .footer .instagram,
.fp-community-design .footer .tiktok {
    display: inline-flex !important;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    color: #fff;
}

/* Community new-design header: structural port, not a reskin of the legacy bar. */
.fp-community-design .topNav {
    padding: 10px 12px 0;
    background: transparent;
    pointer-events: none;
}

.fp-community-design.fp-community-home .topNav {
    margin-bottom: -80px;
}

.fp-community-design .topNav > .fp-community-header-pill {
    position: relative;
    display: flex;
    width: calc(100% - 24px);
    max-width: 720px;
    min-height: 60px;
    margin: 0 auto;
    padding: 7px 18px;
    align-items: center;
    border: 0;
    border-radius: 40px;
    color: #fff;
    background-color: rgba(9, 9, 11, .9);
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, .09) 0%, rgba(255, 255, 255, .02) 45%, transparent 100%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 7px);
    box-shadow: 0 14px 36px rgba(233, 132, 53, .32), 0 4px 14px rgba(0, 0, 0, .35),
        inset 0 1px 0 rgba(255, 255, 255, .08), inset 0 0 0 1px rgba(241, 183, 42, .12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    pointer-events: auto;
}

.fp-community-header-left,
.fp-community-header-right {
    display: flex;
    flex: 1 1 0;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 22px;
}

.fp-community-header-right {
    justify-content: flex-end;
}

.fp-community-header-logo {
    display: block;
    flex: none;
    line-height: 0;
}

.fp-community-design .topNav .fp-community-header-logo img {
    display: block;
    width: 100%;
    max-width: 220px;
    max-height: none;
    height: auto;
}

.fp-community-burger,
.fp-community-header-icon {
    display: inline-flex;
    width: 28px;
    height: 28px;
    padding: 0;
    flex: none;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.fp-community-burger {
    flex-direction: column;
    gap: 4px;
}

.fp-community-burger span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: transform .2s, opacity .2s;
}

.fp-community-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.fp-community-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.fp-community-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.fp-community-header-icon {
    font-size: 19px;
}

.fp-community-design .topNav .icon {
    width: 28px;
    height: 28px;
    margin: 0;
    flex: none;
}

.fp-community-design .topNav .icon img {
    width: 22px;
    height: 22px;
}

.fp-community-design .navigation {
    display: none !important;
}

.fp-community-search {
    position: fixed;
    inset: 0;
    z-index: 1042;
    overflow-y: auto;
    background: #fff;
    opacity: 0;
    transition: opacity .2s;
}

.fp-community-search[hidden],
.fp-community-drawer[hidden],
.fp-community-drawer-overlay[hidden] {
    display: none !important;
}

.fp-community-search.is-open { opacity: 1; }
.fp-community-search-inner { position: relative; max-width: 820px; margin: 0 auto; padding: 72px 24px 40px; }
.fp-community-search-close,
.fp-community-drawer-close {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid #d9d9d9;
    border-radius: 50%;
    background: #fff;
    color: #111;
    cursor: pointer;
}
.fp-community-search-close { position: absolute; top: 18px; right: 18px; }
.fp-community-search .search { display: flex; align-items: center; gap: 12px; border-bottom: 2px solid #111; }
.fp-community-search .new_searchInput {
    height: 58px;
    padding: 0;
    flex: 1 1 auto;
    border: 0;
    background: transparent;
    color: #111;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    box-shadow: none;
}
.fp-community-search-submit { width: 44px; height: 44px; border: 0; border-radius: 50%; background: #111; color: #fff; }
.fp-community-search .results { top: 62px; width: 100%; }
.fp-community-search-chips { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 18px; color: #777; font-size: 12.5px; }
.fp-community-search-chips a { display: inline-flex; height: 32px; padding: 0 14px; align-items: center; border: 1px solid #d9d9d9; border-radius: 16px; color: #111; font-weight: 700; }

.fp-community-drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 1040;
    padding: 0;
    border: 0;
    background: rgba(0, 0, 0, .52);
    opacity: 0;
    transition: opacity .25s;
}
.fp-community-drawer-overlay.is-open { opacity: 1; }
.fp-community-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1041;
    display: flex;
    width: 380px;
    max-width: 92vw;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    box-shadow: 14px 0 40px rgba(0, 0, 0, .18);
    transform: translateX(-104%);
    transition: transform .28s cubic-bezier(.22, .61, .36, 1);
}
.fp-community-drawer.is-open { transform: translateX(0); }
.fp-community-drawer-head {
    display: flex;
    padding: 14px 18px;
    flex: none;
    align-items: center;
    justify-content: space-between;
    background-color: #0b0b0d;
    background-image: linear-gradient(180deg, rgba(255,255,255,.09), transparent), repeating-linear-gradient(135deg, rgba(255,255,255,.045) 0 1px, transparent 1px 7px);
}
.fp-community-drawer-head img { display: block; width: 100%; max-width: 190px; height: auto; }
.fp-community-drawer-head .fp-community-drawer-close { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.12); color: #fff; }
.fp-community-drawer-nav { flex: 1 1 auto; padding: 8px 18px 16px; overflow-y: auto; overscroll-behavior: contain; }
.fp-community-drawer-big {
    display: flex;
    padding: 14px 0;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    color: #111;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    list-style: none;
}
.fp-community-drawer-big.is-accent { color: var(--fp-orange); }
.fp-community-drawer-categories summary::-webkit-details-marker { display: none; }
.fp-community-drawer-categories[open] summary i { transform: rotate(180deg); }
.fp-community-drawer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 10px 0 6px; }
.fp-community-drawer-grid a { display: flex; min-height: 50px; padding: 8px 10px; align-items: center; gap: 10px; border: 1px solid #e6e6e6; border-radius: 10px; background: #fafafa; color: #111; }
.fp-community-drawer-grid img { width: 24px; height: 24px; object-fit: contain; }
.fp-community-drawer-grid strong { font-size: 12.5px; line-height: 1.2; }
.fp-community-drawer-links { display: flex; flex-direction: column; margin-top: 4px; }
.fp-community-drawer-links a { padding: 13px 0; border-bottom: 1px solid #eee; color: #111; font-size: 14px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.fp-community-drawer-foot { flex: none; padding: 12px 18px 16px; border-top: 1px solid #d9d9d9; background: #fafafa; }
.fp-community-drawer-foot a { display: flex; padding: 8px 0; align-items: center; gap: 10px; color: #111; font-size: 13.5px; font-weight: 700; }
.fp-community-drawer-foot i { width: 16px; color: var(--fp-orange); text-align: center; }
.fp-community-drawer-stores { display: flex; gap: 10px; margin-top: 8px; }
.fp-community-drawer-stores a { display: block; padding: 0; }
.fp-community-drawer-stores img { display: block; width: auto; height: 36px; }
body.fp-community-layer-open { overflow: hidden !important; }

/* Mobile: retain current behavior and apply the redesigned proportions. */
@media (max-width: 767.98px) {
    .fp-community-design .topNav { padding: 8px 8px 0; }
    .fp-community-design.fp-community-home .topNav { margin-bottom: -62px; }
    .fp-community-design .topNav > .fp-community-header-pill {
        width: 100%;
        min-height: 46px;
        padding: 4px 12px;
        border-radius: 28px;
    }
    .fp-community-header-left,
    .fp-community-header-right { gap: 12px; }
    .fp-community-design .topNav .fp-community-header-logo img { max-width: 132px; }
    .fp-community-design .topNav .icon,
    .fp-community-header-icon { width: 24px; height: 24px; font-size: 17px; }
    .fp-community-design .topNav .storescnt { display: none; }
    .fp-community-design .topNav .fp-community-stores-link { display: none; }
    .fp-community-search-inner { padding-top: 64px; }
    body.fp-community-design {
        padding-bottom: 68px;
        background: #fff;
    }

    .fp-community-design main {
        background: #fff;
    }

    .fp-community-design .mobile-firstapp-banner {
        border-radius: 0;
    }

    .fp-community-design .topNav {
        top: 0;
        padding: 7px 8px;
    }

    .fp-community-design .topNav > .container {
        width: 100%;
        padding: 5px 10px;
        border-radius: 27px;
    }

    .fp-community-design .topNav .row:first-child {
        min-height: 46px;
    }

    .fp-community-design .topNav a[href$="/"] img {
        max-width: 132px;
        max-height: 38px;
    }

    .fp-community-design .topNav .cd-dropdown-trigger {
        color: #fff;
    }

    .fp-community-design .topNav .icon {
        width: 28px;
        height: 28px;
        margin-left: 2px;
    }

    .fp-community-design .topNav .icon img {
        width: 21px;
        height: 21px;
    }

    /* The cart glyph has more visual weight below its SVG centre than the
       profile glyph, so lift the complete control (including the badge). */
    .fp-community-design .fp-community-header-right > a[aria-label="Kosár"] {
        transform: translateY(-2px);
    }

    .fp-community-design .fp-community-header-right > a[aria-label="Kosár"]:hover {
        transform: translateY(-3px);
    }

    .fp-community-design .mobile_search {
        padding: 8px 2px 4px;
    }

    .fp-community-design #index_slider {
        padding-bottom: 6px;
    }

    .fp-community-design .fp-community-video-wrap {
        min-height: 430px;
        max-height: 70vh;
        aspect-ratio: 4 / 5;
    }

    .fp-community-design .fp-community-hero-copy {
        padding: 0 16px 28px;
    }

    .fp-community-design .fp-community-hero-copy h1 {
        font-size: clamp(30px, 10vw, 44px);
    }

    .fp-community-design .fp-community-hero-lead {
        max-width: 330px;
        margin-right: auto;
        margin-left: auto;
        font-size: 14px;
    }

    .fp-community-design .fp-community-hero-actions a {
        min-width: 0;
        min-height: 42px;
        padding: 0 16px;
        font-size: 12px;
    }

    .fp-community-design .fp-community-promos {
        padding: 16px 10px 12px;
    }

    .fp-community-design .fp-community-promos > .container {
        padding: 0;
    }

    .fp-community-design .fp-community-promos .sliderc,
    .fp-community-design .fp-community-promos .owl-stage-outer,
    .fp-community-design .fp-community-promos .owl-item > a {
        border-radius: 15px;
    }

    .fp-community-design .fp-community-usps {
        padding: 0 10px 12px;
    }

    .fp-community-design .fp-community-usps > .container {
        padding: 0;
    }

    .fp-community-design .fp-community-usps-grid {
        grid-template-columns: 1fr 1fr;
        border-radius: 16px;
    }

    .fp-community-design .fp-community-usp {
        min-height: 84px;
        padding: 13px 12px;
        gap: 10px;
        border-right: 1px solid var(--fp-line);
        border-bottom: 1px solid var(--fp-line);
    }

    .fp-community-design .fp-community-usp:nth-child(2n) {
        border-right: 0;
    }

    .fp-community-design .fp-community-usp:nth-child(n+3) {
        border-bottom: 0;
    }

    .fp-community-design .fp-community-usp > i {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .fp-community-design .fp-community-usp strong {
        font-size: 11px;
    }

    .fp-community-design .fp-community-usp small {
        display: none;
    }

    .fp-community-design #firstphone,
    .fp-community-design #sales,
    .fp-community-design #services,
    .fp-community-design #news,
    .fp-community-design #refurbished,
    .fp-community-design #blog {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .fp-community-design #firstphone .firstphone_box {
        padding: 22px 18px;
        border-radius: 24px;
        background-image:
            linear-gradient(rgba(0, 0, 0, .54), rgba(0, 0, 0, .54)),
            url(../images/firstphone-mobile-pattern.png) !important;
        background-position: center !important;
        background-size: cover, contain !important;
    }

    .fp-community-design #firstphone .col-6 {
        margin-bottom: 24px !important;
    }

    .fp-community-design #firstphone .number_box {
        padding: 3px 9px;
        font-size: 15px;
    }

    .fp-community-design #refurbished > .container {
        padding: 22px 18px;
        border-radius: 24px;
    }

    .fp-community-design #filterwrapper {
        padding-top: 18px;
    }

    .fp-community-design #filterwrapper h1 {
        margin-top: 12px;
        font-size: 27px;
        letter-spacing: -.025em;
    }

    .fp-community-design .mobile-filter-trigger-shell {
        position: sticky;
        top: calc(76px + env(safe-area-inset-top));
        z-index: 990;
        margin-top: 4px;
    }

    .fp-community-design .productlistCard {
        margin: 4px;
        padding: 10px;
        border-radius: 17px;
        box-shadow: none;
    }

    .fp-community-design .productlistCard:hover {
        transform: none;
        box-shadow: none;
    }

    .fp-community-design .productlistCard .pimage {
        min-height: 150px;
    }

    .fp-community-design .productlistCard .pimage img {
        max-height: 145px;
    }

    .fp-community-design .productlistCard .card-title {
        min-height: 54px;
        font-size: 13px;
    }

    .fp-community-design .productdata {
        padding-top: 14px;
        padding-bottom: 24px;
    }

    .fp-community-design .product_RightSide {
        padding: 17px;
        border-radius: 20px;
    }

    .fp-community-design .product_RightSide h1 {
        font-size: 21px;
    }

    .fp-community-design .product_RightSide .sum-endprice,
    .fp-community-design .product_RightSide .card-price {
        font-size: 29px;
    }

    .fp-community-design .product_RightSide .newcart_button,
    .fp-community-design .product_RightSide .accessories_button {
        width: 100% !important;
        min-height: 48px;
        margin-right: 0 !important;
        float: none !important;
    }

    .fp-community-design .mobile-navigation-footer {
        z-index: 1040;
        height: 62px;
        border-top: 1px solid rgba(255, 255, 255, .1);
        background-color: #0b0c0f;
        background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 7px);
        box-shadow: 0 -8px 24px rgba(0, 0, 0, .16);
    }

    .fp-community-design .mobile-navigation-footer .mobile-opt,
    .fp-community-design .mobile-navigation-footer .mobile-opt i,
    .fp-community-design .mobile-navigation-footer .mobile-opt p {
        color: #fff;
    }

    .fp-community-design .footer {
        padding-top: 34px;
        padding-bottom: 76px;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .fp-community-design .topNav > .container {
        max-width: 860px;
    }

    .fp-community-design .productlistCard {
        margin: 6px;
        padding: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fp-community-design .fp-community-announcement-track {
        transform: none !important;
        animation: none !important;
    }

    .fp-community-design *,
    .fp-community-design *::before,
    .fp-community-design *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Community mirror pass: category and product pages. */
@media (min-width: 768px) {
    .fp-community-design.fp-page-category > .container,
    .fp-community-design.fp-page-product #product-container > .container {
        width: min(100% - 40px, 1240px);
        max-width: 1240px;
    }

    .fp-community-design.fp-page-category > .container > .row {
        padding-top: 24px !important;
        padding-bottom: 56px !important;
    }

    .fp-community-design.fp-page-category .filterDiv {
        padding-right: 14px;
    }

    .fp-community-design.fp-page-category .filterDiv > .filtercards {
        overflow: hidden;
        margin: 0 0 12px;
        padding: 0;
        border: 1px solid #e8e5e1;
        border-radius: 15px !important;
        background: #fff;
        box-shadow: 0 7px 18px rgba(20, 18, 16, .055);
    }

    .fp-community-design.fp-page-category .filtercards .fixed_header {
        top: 0;
        z-index: 2;
        padding: 0;
        background: #fff;
    }

    .fp-community-design.fp-page-category .filtercards_header {
        display: flex;
        min-height: 52px;
        padding: 0 16px;
        align-items: center;
        justify-content: space-between;
        border: 0;
        border-bottom: 1px solid #efedea;
        border-radius: 0;
        background: #fff !important;
        color: #171717 !important;
    }

    .fp-community-design.fp-page-category .filtercards_header h3,
    .fp-community-design.fp-page-category .filtercards_header a,
    .fp-community-design.fp-page-category .filtercards_header i {
        margin: 0;
        color: #171717 !important;
        font-size: 14px;
        font-weight: 800;
    }

    .fp-community-design.fp-page-category .filtercards_header i {
        color: var(--fp-orange) !important;
    }

    .fp-community-design.fp-page-category .filtercards .search_filter {
        width: calc(100% - 28px);
        height: 38px;
        margin: 12px 14px 8px !important;
        padding: 0 14px;
        border: 1px solid #dfdcd8;
        border-radius: 999px;
        font-size: 11px;
    }

    .fp-community-design.fp-page-category .filtercards .options {
        padding: 8px 14px 14px;
    }

    .fp-community-design.fp-page-category .filtercards .custom-control {
        min-height: 34px;
        padding-top: 7px;
        padding-bottom: 7px;
        border-bottom: 1px solid #f2f0ed;
    }

    .fp-community-design.fp-page-category .desktop-featured-filter-toolbar {
        min-height: 94px;
        margin-bottom: 32px;
        padding: 18px 20px;
        border-radius: 16px !important;
        box-shadow: none;
    }

    .fp-community-design.fp-page-category .productlistCard {
        height: auto;
        min-height: 425px;
        margin: 0;
        padding: 10px 9px 18px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .fp-community-design.fp-page-category .productlistCard:hover {
        border-color: transparent;
        transform: translateY(-2px);
        box-shadow: none;
    }

    .fp-community-design.fp-page-category .productlistCard .pimage {
        min-height: 195px;
        border-radius: 0;
        background: transparent;
    }

    .fp-community-design.fp-page-category .productlistCard .pimage img {
        max-width: 92%;
        max-height: 190px;
    }

    .fp-community-design.fp-page-category .productlistCard .card-title {
        min-height: 42px;
        margin: 8px 0 6px;
        font-size: 12px;
        line-height: 1.35;
    }

    .fp-community-design.fp-page-category .productlistCard .card-body > p,
    .fp-community-design.fp-page-category .productlistCard .card-body .mt-2 {
        font-size: 10px !important;
    }

    .fp-community-design.fp-page-category .productlistCard .card-price {
        font-size: 16px;
    }

    .fp-community-design.fp-page-category .productlistCard .free-delivery {
        display: inline-flex;
        min-height: 27px;
        margin: 6px 0 8px !important;
        padding: 6px 10px !important;
        align-items: center;
        border-radius: 999px;
    }

    .fp-community-design.fp-page-category .productlistCard .addtocart {
        width: 46px !important;
        min-height: 38px;
        padding: 8px !important;
        border-radius: 5px;
    }

    .fp-community-design.fp-page-category .productlistCard .firstapp_price {
        margin-top: 10px;
        border-radius: 4px;
        box-shadow: none;
    }

    .fp-community-design.fp-page-product #product-container {
        padding-top: 34px;
        background: #fff;
    }

    .fp-community-design.fp-page-product .product-nav {
        margin-bottom: 24px;
    }

    .fp-community-design.fp-page-product .product-nav .breadcrumb {
        color: #8b8782;
        font-size: 12px;
    }

    .fp-community-design.fp-page-product #product-container > .container > .row:nth-of-type(2) {
        align-items: flex-start;
    }

    .fp-community-design.fp-page-product .productdata .product_image.main,
    .fp-community-design.fp-page-product .product_image.main,
    .fp-community-design.fp-page-product .product_images {
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .fp-community-design.fp-page-product .product_image.main {
        min-height: 390px;
        padding: 20px;
    }

    .fp-community-design.fp-page-product .product_image.main > img {
        max-height: 340px;
    }

    .fp-community-design.fp-page-product .product_images .product_image {
        overflow: hidden;
        margin-bottom: 8px;
        border: 1px solid #e8e5e1;
        border-radius: 5px;
    }

    .fp-community-design.fp-page-product .product_info > .row > [class*="col-"] {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }

    .fp-community-design.fp-page-product .product_info > .row > [class*="col-"]:last-child {
        order: -1;
        margin-top: 0 !important;
    }

    .fp-community-design.fp-page-product .product_RightSide {
        padding: 0 0 22px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .fp-community-design.fp-page-product .product_RightSide h1 {
        margin-bottom: 10px;
        font-size: clamp(22px, 2vw, 30px);
    }

    .fp-community-design.fp-page-product .product_RightSide .stock-available,
    .fp-community-design.fp-page-product .product_RightSide .fewdays {
        padding: 5px 11px;
        background: #24211f;
        color: #f4bc26;
    }

    .fp-community-design.fp-page-product .product_RightSide .sum-price {
        text-align: left !important;
    }

    .fp-community-design.fp-page-product .product_RightSide .sum-endprice,
    .fp-community-design.fp-page-product .product_RightSide .card-price {
        color: #171717;
        font-size: 31px;
    }

    .fp-community-design.fp-page-product .product_RightSide .newcart_button {
        width: 100% !important;
        float: none !important;
        border-radius: 999px;
    }

    .fp-community-design.fp-page-product .productplus {
        margin-top: 8px;
        margin-bottom: 18px !important;
    }

    .fp-community-design.fp-page-product .productplus > .row {
        gap: 8px 0;
    }

    .fp-community-design.fp-page-product .productplus .plusimage {
        min-height: 82px;
        padding: 11px 8px;
        border: 1px solid #e4e0dc;
        border-radius: 10px;
        background: #fff;
    }

    .fp-community-design.fp-page-product .productplus .plusimage.selected {
        border-color: var(--fp-orange);
        background: rgba(233, 132, 53, .06);
    }

    .fp-community-design.fp-page-product .services {
        overflow: hidden;
        border: 1px solid #e7e3df;
        border-radius: 14px;
        background: #fff;
        box-shadow: 0 12px 30px rgba(20, 18, 16, .08);
    }

    .fp-community-design.fp-page-product .services .header {
        padding: 14px 16px !important;
        background-color: #171717;
        background-image:
            linear-gradient(90deg, rgba(233, 132, 53, .12), transparent 52%),
            repeating-linear-gradient(135deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 7px);
        color: #fff;
        cursor: pointer;
    }

    .fp-community-design.fp-page-product .services .header > .row {
        margin: 0;
        align-items: center;
    }

    .fp-community-design.fp-page-product .services .header > .row > [class*="col-"] {
        padding-right: 7px;
        padding-left: 7px;
    }

    .fp-community-design.fp-page-product .services .header > .row > [class*="col-"]:first-child i {
        display: inline-flex;
        width: 38px;
        height: 38px;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--fp-orange), var(--fp-amber));
        color: #fff;
        box-shadow: 0 7px 18px rgba(233, 132, 53, .22);
    }

    .fp-community-design.fp-page-product .services .header p {
        margin: 0;
        line-height: 1.25;
    }

    .fp-community-design.fp-page-product .services .header p:first-child {
        font-size: 13px;
        font-weight: 800;
        letter-spacing: .01em;
    }

    .fp-community-design.fp-page-product .services .header p:last-child {
        margin-top: 3px;
        color: var(--fp-amber);
        font-size: 12px;
    }

    .fp-community-design.fp-page-product .services .plus-service table {
        margin: 0;
    }

    .fp-community-design.fp-page-product .services .plus-service tr {
        border-top: 1px solid #efedea;
        background: #fff;
        transition: background-color .18s ease, box-shadow .18s ease;
    }

    .fp-community-design.fp-page-product .services .plus-service tr:hover {
        background: #fffaf5;
    }

    .fp-community-design.fp-page-product .services .plus-service td {
        padding: 12px 8px;
        vertical-align: middle;
    }

    .fp-community-design.fp-page-product .services .plus-service td:first-child {
        padding-left: 14px;
    }

    .fp-community-design.fp-page-product .services .plus-service td:last-child {
        padding-right: 14px;
        color: #171717;
        font-size: 13px !important;
        font-weight: 800;
        white-space: nowrap;
    }

    .fp-community-design.fp-page-product .services .service-name {
        color: #171717;
        font-size: 13px;
        font-weight: 700;
    }

    .fp-community-design.fp-page-product .services .selected-service td {
        color: #171717 !important;
        background: rgba(233, 132, 53, .075);
        box-shadow: inset 3px 0 0 var(--fp-orange);
    }

    .fp-community-design.fp-page-product .services .selected-service .service-name,
    .fp-community-design.fp-page-product .services .selected-service .service-price {
        color: #c85f13 !important;
    }

    .fp-community-design.fp-page-product .services .custom-control-label::before {
        width: 20px;
        height: 20px;
        border: 1px solid #c8c2bc !important;
        border-radius: 6px !important;
        background: #fff;
    }

    .fp-community-design.fp-page-product .services .custom-control-label::after {
        width: 20px;
        height: 20px;
    }

    .fp-community-design.fp-page-product .services .custom-control-input:checked ~ .custom-control-label::before {
        border-color: var(--fp-orange) !important;
        background: linear-gradient(135deg, var(--fp-orange), var(--fp-amber));
    }
}

@media (max-width: 767.98px) {
    .fp-community-design.fp-page-category > .container-xl {
        padding-right: 10px;
        padding-left: 10px;
    }

    .fp-community-design.fp-page-category .productlistCard {
        height: 100%;
        min-height: 440px;
        padding: 8px 7px 14px;
        border-radius: 0;
        background: #fff;
    }

    .fp-community-design.fp-page-category .productlistCard .wrapper,
    .fp-community-design.fp-page-category .productlistCard .card-body,
    .fp-community-design.fp-page-category .productlistCard .more {
        display: flex;
        min-height: 0;
        flex: 1 1 auto;
        flex-direction: column;
    }

    .fp-community-design.fp-page-category .productlistCard .pimage {
        width: 100%;
        height: 150px;
        min-height: 150px;
        max-height: 150px;
    }

    .fp-community-design.fp-page-category .productlistCard .card-title {
        height: 58px;
        min-height: 58px;
        max-height: 58px;
        overflow: hidden;
        margin-top: 8px;
        font-size: 12px;
    }

    .fp-community-design.fp-page-category .productlistCard .product-primary-actions {
        display: grid;
        grid-template-columns: 7fr 5fr;
        grid-template-rows: 58px 70px;
        min-height: 58px;
        margin-top: auto;
        align-items: center;
    }

    .fp-community-design.fp-page-category .productlistCard .product-primary-actions > [class*="col-"] {
        display: flex;
        width: auto;
        min-height: 58px;
        max-width: none;
        flex-direction: column;
        justify-content: center;
    }

    .fp-community-design.fp-page-category .productlistCard .product-primary-actions > [class*="col-"]:nth-child(2) {
        align-items: flex-end;
    }

    .fp-community-design.fp-page-category .productlistCard .product-primary-actions > [class*="col-"]:nth-child(3) {
        grid-column: 1 / -1;
        grid-row: 2;
        min-height: 70px;
        margin-top: 0 !important;
    }

    .fp-community-design.fp-page-category .productlistCard .product-primary-actions .card-price,
    .fp-community-design.fp-page-category .productlistCard .product-primary-actions .addtocart {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .fp-community-design.fp-page-category .productlistCard.has-firstapp-price .firstapp_price {
        min-height: 70px;
    }

    .fp-community-design.fp-page-category .product-list-usp-slot {
        padding: 0 15px;
    }

    .fp-community-design.fp-page-category .product-list-usp {
        display: flex;
        width: 100%;
        min-height: 62px;
        padding: 8px 9px;
        align-items: center;
        gap: 9px;
        border: 1px solid #ece8e3;
        border-radius: 10px;
        background: #fff;
        color: #171717;
        text-decoration: none;
    }

    .fp-community-design.fp-page-category .product-list-usp-icon {
        display: inline-flex;
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background: linear-gradient(135deg, var(--fp-orange), var(--fp-amber));
        color: #fff;
    }

    .fp-community-design.fp-page-category .product-list-usp strong,
    .fp-community-design.fp-page-category .product-list-usp small {
        display: block;
        line-height: 1.18;
    }

    .fp-community-design.fp-page-category .product-list-usp strong {
        font-size: 10px;
        font-weight: 800;
    }

    .fp-community-design.fp-page-category .product-list-usp small {
        margin-top: 3px;
        color: #77716b;
        font-size: 8px;
    }

    .fp-community-design.fp-page-product #product-container {
        padding-top: 12px;
    }

    .fp-community-design.fp-page-product #product-container > .container {
        padding-right: 14px;
        padding-left: 14px;
    }

    .fp-community-design.fp-page-product .product_image.main {
        min-height: 285px;
        border: 0;
        box-shadow: none;
    }

    .fp-community-design.fp-page-product .product_RightSide {
        margin-top: 12px;
        padding: 0 0 18px;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .fp-community-design.fp-page-product .productplus .plusimage {
        border-radius: 10px;
    }

    .fp-community-design.fp-page-product .services {
        overflow: hidden;
        border: 1px solid #e7e3df;
        border-radius: 16px;
        background: #fff;
        box-shadow: 0 10px 24px rgba(20, 18, 16, .08);
    }

    .fp-community-design.fp-page-product .services .header {
        padding: 13px 12px !important;
        background-color: #171717;
        background-image: linear-gradient(90deg, rgba(233, 132, 53, .14), transparent 65%);
    }

    .fp-community-design.fp-page-product .services .header > .row {
        display: grid;
        grid-template-columns: 38px minmax(0, 1fr) 24px;
        gap: 9px;
        margin: 0;
        align-items: center;
    }

    .fp-community-design.fp-page-product .services .header > .row > [class*="col-"] {
        width: auto;
        min-width: 0;
        max-width: none;
        padding-right: 0;
        padding-left: 0;
    }

    .fp-community-design.fp-page-product .services .header > .row > [class*="col-"]:first-child i {
        display: inline-flex;
        width: 34px;
        height: 34px;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background: linear-gradient(135deg, var(--fp-orange), var(--fp-amber));
        color: #fff;
    }

    .fp-community-design.fp-page-product .services .header p {
        margin: 0;
        line-height: 1.2;
    }

    .fp-community-design.fp-page-product .services .header p:first-child {
        font-size: 12px;
        font-weight: 800;
    }

    .fp-community-design.fp-page-product .services .header p:last-child {
        margin-top: 3px;
        color: var(--fp-amber);
        font-size: 12px;
        white-space: nowrap;
    }

    .fp-community-design.fp-page-product .services .plus-service table {
        margin: 0;
    }

    .fp-community-design.fp-page-product .services .plus-service tr {
        border-top: 1px solid #efedea;
        background: #fff;
    }

    .fp-community-design.fp-page-product .services .plus-service td {
        padding-top: 11px;
        padding-bottom: 11px;
        vertical-align: middle;
    }

    .fp-community-design.fp-page-product .services .plus-service td:nth-child(2) {
        width: auto !important;
    }

    .fp-community-design.fp-page-product .services .plus-service td:last-child {
        width: 28% !important;
        padding-right: 10px;
        color: #171717;
        font-size: 12px !important;
        font-weight: 800;
        white-space: nowrap;
    }

    .fp-community-design.fp-page-product .services .service-name {
        color: #171717;
        font-weight: 700;
    }

    .fp-community-design.fp-page-product .services .selected-service td {
        color: #171717 !important;
        background: rgba(233, 132, 53, .075);
        box-shadow: inset 3px 0 0 var(--fp-orange);
    }

    .fp-community-design.fp-page-product .services .selected-service .service-name,
    .fp-community-design.fp-page-product .services .selected-service .service-price {
        color: #c85f13 !important;
    }

    .fp-community-design.fp-page-product .services .custom-control-label::before {
        width: 20px;
        height: 20px;
        border: 1px solid #c8c2bc !important;
        border-radius: 6px !important;
        background: #fff;
    }

    .fp-community-design.fp-page-product .services .custom-control-label::after {
        width: 20px;
        height: 20px;
    }

    .fp-community-design.fp-page-product .services .custom-control-input:checked ~ .custom-control-label::before {
        border-color: var(--fp-orange) !important;
        background: linear-gradient(135deg, var(--fp-orange), var(--fp-amber));
    }
}
