.customized-page-shell {
    --customized-page-gutter: 32px;
    --customized-products-max-width: 1100px;
    --customized-products-rail-offset: max(var(--customized-page-gutter), calc((100vw - var(--customized-products-max-width)) / 2));
    --customized-section-gap: 80px;
    --customized-subsection-gap: 50px;
    max-width: 1540px;
    margin: 0 auto;
    padding: 108px 32px 0;
}

html.customized-motion-enabled .customized-page-shell [data-customized-reveal] {
    opacity: 0;
    transform: translate3d(0, 42px, 0);
    filter: blur(6px);
    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--customized-reveal-delay, 0ms);
    will-change: transform, opacity, filter;
}

html.customized-motion-enabled .customized-page-shell [data-customized-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
}

html.customized-motion-enabled .customized-page-shell .customized-products-shell [data-customized-reveal] {
    transform: none;
    filter: none;
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1) var(--customized-reveal-delay, 0ms);
    will-change: opacity;
}

html.customized-motion-enabled .customized-page-shell .customized-products-shell [data-customized-reveal].is-visible {
    transform: none;
}

html.customized-motion-enabled .customized-page-shell .customized-brand-showcase-gallery [data-customized-reveal] {
    transform: none;
    filter: none;
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1) var(--customized-reveal-delay, 0ms);
    will-change: opacity;
}

html.customized-motion-enabled .customized-page-shell .customized-brand-showcase-gallery [data-customized-reveal].is-visible {
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html.customized-motion-enabled .customized-page-shell [data-customized-reveal] {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
        will-change: auto;
    }
}

.customized-page-hero {
    text-align: center;
}

.customized-page-title {
    margin: 0;
    color: #0b0b0f;
    font-family: "SF Pro Display", "SF Pro Icons", "AOS Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.05;
    text-align: center;
}

.customized-mobile-break-552,
.customized-mobile-break-767 {
    display: none;
}

.customized-category-shell {
    position: relative;
}

.customized-category-grid-controls,
.customized-category-grid-control {
    display: none;
}

.customized-category-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 30px;
    width: min(100%, 1040px);
    margin: 62px auto 0px;
}

.customized-category-card {
    width: 172px;
    min-height: 220px;
    padding: 0;
    border: 0;
    background: transparent;
    appearance: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: #111111;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
}

.customized-category-card:hover:not(.is-active),
.customized-category-card:focus-visible:not(.is-active) {
    color: var(--theme-color);
    transform: translateY(-4px);
    outline: none;
}

.customized-category-card.is-active {
    color: var(--theme-color);
    outline: none;
}

.customized-category-card:active {
    transform: translateY(-1px) scale(0.985);
}

.customized-category-card.is-active .customized-category-card-title {
    color: var(--theme-color);
}

.customized-category-card-image-wrap {
    width: 160px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), filter 0.2s ease;
    will-change: transform, filter;
}

.customized-category-card:hover:not(.is-active) .customized-category-card-image-wrap,
.customized-category-card:focus-visible:not(.is-active) .customized-category-card-image-wrap {
    transform: translateY(-2px) scale(1.04);
    /* filter: drop-shadow(0 12px 24px rgba(15, 23, 42, 0.14)); */
}

.customized-category-card-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.customized-category-card-title {
    color: inherit;
    font-family: "SF Pro Display", "SF Pro Icons", "AOS Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
}

.customized-divider {
    width: min(100%, var(--customized-products-max-width));
    margin: 0 auto;
    border-bottom: 1px solid #e4e4e7;
}

.customized-products-shell {
    width: min(100%, var(--customized-products-max-width));
    margin: 50px auto 0;
    padding-bottom: var(--customized-section-gap);
}

.customized-products-panel[hidden] {
    display: none !important;
}

.customized-products-rail {
    --customized-products-rail-column-width: 256px;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: var(--customized-products-rail-column-width);
    gap: 22px;
    overflow-x: auto;
    width: calc(100% + var(--customized-products-rail-offset) + var(--customized-products-rail-offset));
    padding: 12px var(--customized-page-gutter) 50px calc(var(--customized-products-rail-offset) + 6px);
    scroll-snap-type: x proximity;
    scroll-padding-left: calc(var(--customized-products-rail-offset) + 6px);
    scrollbar-width: none;
    scrollbar-color: rgba(15, 23, 42, 0.18) transparent;
    margin-left: calc(0px - var(--customized-products-rail-offset));
}

.customized-products-grid-mobile {
    display: none;
}

.customized-customize-button-wrap {
    display: flex;
    justify-content: center;
    margin: 20px auto 30px;
}

.customized-customize-button-wrap-mobile {
    display: none;
}

.customized-customize-button-wrap .customized-action-button {
    min-width: min(100%, 280px);
}

html.customized-motion-enabled .customized-page-shell .customized-customize-button-wrap[data-customized-reveal] .customized-action-button {
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

@media (min-width: 768px) {
    .customized-products-rail--centered-desktop {
        grid-auto-flow: row;
        grid-template-columns: repeat(var(--customized-products-count), minmax(0, var(--customized-products-rail-column-width)));
        justify-content: center;
        width: 100%;
        margin-left: 0;
        padding: 12px 0 50px;
        overflow: visible;
        scroll-snap-type: none;
        scroll-padding-left: 0;
    }
}

.customized-products-rail::-webkit-scrollbar {
    display: none;
}

.customized-products-rail::-webkit-scrollbar-track {
    background: transparent;
}

.customized-products-rail::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.16);
}

.customized-product-card {
    min-height: 320px;
    padding: 22px 18px 18px;
    border: 1.5px solid transparent;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
    appearance: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    scroll-snap-align: start;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.customized-product-card:hover,
.customized-product-card:focus-visible,
.customized-product-card.is-selected {
    transform: translateY(-4px);
    border-color: rgba(1, 113, 227, 0.46);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
    outline: none;
}

.customized-product-card:active {
    transform: translateY(-1px) scale(0.985);
}

.customized-product-card.is-selected {
    border-color: var(--theme-color);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
    z-index: 1;
}

.customized-product-card-media {
    width: 100%;
    min-height: 224px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customized-product-card-image {
    width: 100%;
    max-width: 220px;
    height: 238px;
    display: block;
    object-fit: contain;
    transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.customized-product-card:hover .customized-product-card-image,
.customized-product-card:focus-visible .customized-product-card-image,
.customized-product-card.is-selected .customized-product-card-image {
    transform: translateY(-2px) scale(1.03);
}

.customized-product-card-title {
    color: #111111;
    font-family: "SF Pro Display", "SF Pro Icons", "AOS Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}

.customized-products-empty {
    width: min(100%, 1240px);
    margin: var(--customized-section-gap) auto 0;
    padding: 32px 24px;
    border-radius: 8px;
    background: #f8f8f8;
    color: #4b5563;
    font-size: 15px;
    text-align: center;
}

.customized-selection-shell {
    width: min(50%, 1240px);
    margin: 0 auto 0;
}

.customized-selection-card,
.customized-accordion-shell {
    border-radius: 20px;
    background: #f7f7f8;
}

.customized-selection-card {
    padding: 34px 30px 30px;
}

.customized-selection-copy {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.customized-selection-eyebrow {
    color: #111111;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
}

.customized-selection-title {
    margin: 0;
    color: #0b0b0f;
    font-family: "SF Pro Display", "SF Pro Icons", "AOS Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.08;
}

.customized-selection-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
    margin-top: 34px;
}

.customized-selection-field {
    min-width: 0;
}

.customized-selection-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #111111;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
}

.customized-select-wrap {
    position: relative;
}

.customized-select-wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 22px;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 6L8 11L13 6' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
}

.customized-select {
    width: 100%;
    min-height: 50px;
    padding: 0 56px 0 20px;
    border: 1px solid #d5d8de;
    border-radius: 12px;
    background: #ffffff;
    color: #111111;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.customized-select:focus {
    outline: none;
    border-color: rgba(1, 113, 227, 0.48);
    box-shadow: 0 0 0 3px rgba(1, 113, 227, 0.12);
}

.customized-select:disabled {
    background: #eef1f5;
    color: #8a94a6;
    cursor: not-allowed;
}

.customized-selection-price {
    margin-top: 34px;
    color: var(--theme-color);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.08;
}

.customized-selection-note {
    max-width: 760px;
    margin: 18px 0 0;
    color: #111111;
    font-size: 15px;
    font-style: italic;
    line-height: 1.55;
}

.customized-selection-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 22px;
    margin-top: 30px;
}

.customized-action-button {
    min-width: 180px;
    min-height: 50px;
    padding: 0 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.customized-action-button:hover,
.customized-action-button:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.customized-action-button-primary {
    border: 1px solid var(--theme-color);
    background: var(--theme-color);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(1, 113, 227, 0.2);
}

.customized-action-button-primary:hover,
.customized-action-button-primary:focus-visible {
    box-shadow: 0 18px 34px rgba(1, 113, 227, 0.24);
}

.customized-action-button-secondary {
    border: 1px solid #0171E3;
    background: #F2F8FF;
    color: #111111;
}

.customized-action-button-secondary:hover,
.customized-action-button-secondary:focus-visible {
    border-color: #005bbf;
    background: linear-gradient(135deg, #0171e3 0%, #3b9cff 100%);
    color: #ffffff;
    box-shadow: 0 16px 32px rgba(1, 113, 227, 0.24);
}

.customized-selection-actions .ibp-directory-whatsapp.is-disabled,
.customized-action-button:disabled {
    opacity: 0.48;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.customized-selection-actions .ibp-directory-whatsapp.is-disabled {
    pointer-events: none;
}

.customized-accordion-shell {
    margin-top: 28px;
    padding: 0 38px;
}

.customized-accordion-item + .customized-accordion-item {
    border-top: 1px solid #d8dbe2;
}

.customized-accordion-trigger {
    width: 100%;
    padding: 28px 0;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    cursor: pointer;
}

.customized-accordion-title {
    color: #111111;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.customized-accordion-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.customized-accordion-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.customized-accordion-icon path {
    fill: none;
    stroke: #111111;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.customized-accordion-item:not(.is-open) .customized-accordion-icon {
    transform: rotate(180deg);
}

.customized-accordion-content {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 0.38s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.24s ease;
    will-change: height;
}

.customized-accordion-item.is-open .customized-accordion-content {
    opacity: 1;
}

.customized-accordion-content[hidden] {
    display: none !important;
}

.customized-accordion-copy {
    max-width: 820px;
    margin: 0;
    padding: 0 0 30px;
    color: #111111;
    font-size: 14px;
    line-height: 1.7;
    white-space: pre-line;
}

@media (prefers-reduced-motion: reduce) {
    .customized-accordion-icon,
    .customized-accordion-content {
        transition: none;
    }

    .customized-accordion-content {
        will-change: auto;
    }
}

.customized-what-you-get-shell {
    /* margin-top: var(--customized-section-gap); */
    padding-bottom: var(--customized-section-gap);
}

.customized-what-you-get-title {
    margin: 0;
    color: #0b0b0f;
    font-family: "SF Pro Display", "SF Pro Icons", "AOS Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.08;
    text-align: center;
}

.customized-what-you-get-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
    width: min(100%, 1100px);
    margin: 34px auto 0;
}

.customized-what-you-get-item {
    margin: 0;
    cursor: pointer;
}

.customized-what-you-get-media {
    min-height: 280px;
    padding: 24px;
    border-radius: 28px;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, box-shadow;
}

.customized-what-you-get-image {
    width: 100%;
    max-width: 260px;
    max-height: 320px;
    display: block;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.customized-what-you-get-item:hover .customized-what-you-get-media,
.customized-what-you-get-item:focus-visible .customized-what-you-get-media {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.customized-what-you-get-item:hover .customized-what-you-get-image,
.customized-what-you-get-item:focus-visible .customized-what-you-get-image {
    transform: scale(1.04);
}

.customized-what-you-get-caption {
    margin-top: 20px;
    color: #111111;
    font-family: "SF Pro Display", "SF Pro Icons", "AOS Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    text-align: center;
}

.customized-partners-section {
    width: min(100%, 1240px);
    margin: var(--customized-section-gap) auto 0;
    padding-bottom: var(--customized-section-gap);
}

.customized-partners-title {
    margin: 0 0 40px;
    color: #0b0b0f;
    font-family: "SF Pro Display", "SF Pro Icons", "AOS Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: 0;
    text-align: center;
}

.customized-partners-section .ibp-map-directory {
    max-width: 1240px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: center;
}

.customized-partners-section .ibp-world-map {
    margin: 0;
    min-height: clamp(260px, 30vw, 420px);
    display: flex;
    align-items: center;
}

.customized-partners-section .ibp-world-map-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.customized-partners-section .ibp-world-map.map-image {
    position: relative;
    display: grid;
    align-items: center;
}

.customized-partners-section .ibp-world-map.map-image > img {
    grid-area: 1 / 1;
    width: 100%;
}

.customized-partners-section .ibp-world-map.map-image > img:first-child:not(:last-child) + img:last-child {
    opacity: 0;
    animation: iphonesMapBlink 1.5s both infinite;
}

@keyframes iphonesMapBlink {
    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

.customized-partners-section .ibp-map-marker {
    display: none;
}

.customized-partners-section .ibp-directory-list {
    width: 100%;
    max-width: none;
    align-content: center;
}

.customized-partners-section .ibp-directory-card-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 14px;
}

.customized-partners-section .ibp-directory-card-avatar {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
}

.customized-partners-section .ibp-directory-card-main {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
}

.customized-partners-section .ibp-directory-card-flags {
    justify-content: flex-start;
    gap: 6px;
    flex-wrap: nowrap;
}

.customized-partners-section .ibp-directory-whatsapp {
    flex-shrink: 0;
    align-self: center;
    min-width: 118px;
    font-size: 14px;
}

.customized-partners-section .ibp-directory-card {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.customized-partners-section .ibp-directory-card:hover,
.customized-partners-section .ibp-directory-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
}

.customized-partners-section .ibp-directory-card:hover::after,
.customized-partners-section .ibp-directory-card:focus-within::after {
    border-color: transparent;
}

.customized-brand-showcase {
    width: min(100%, 1660px);
    margin: var(--customized-section-gap) auto 0;
    padding-bottom: var(--customized-section-gap);
}

.customized-brand-showcase-copy {
    text-align: center;
}

.customized-brand-showcase-title {
    margin: 0;
    color: #0b0b0f;
    font-family: "SF Pro Display", "SF Pro Icons", "AOS Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.04;
    text-align: center;
}

.customized-brand-showcase-title span {
    display: block;
    font-size: 48px;
    font-weight: 500;
}

.customized-brand-showcase-side-wrap {
    width: min(100%, 1118px);
    margin: var(--customized-subsection-gap) auto 0;
    display: flex;
    justify-content: center;
    padding-bottom: var(--customized-subsection-gap);
}

.customized-brand-showcase-side-image {
    width: 50%;
    max-width: 703px;
    height: auto;
    display: block;
    object-fit: contain;
}

.customized-brand-showcase-gallery {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 248px;
    gap: 16px;
    margin-top: var(--customized-section-gap);
    overflow-x: auto;
    padding: 0 4px 8px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}

.customized-brand-showcase-gallery::-webkit-scrollbar {
    display: none;
}

.customized-brand-showcase-gallery-item {
    aspect-ratio: 452 / 686;
    border-radius: 20px;
    overflow: hidden;
    scroll-snap-align: start;
}

.customized-brand-showcase-gallery-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.customized-faq-section {
    padding: 0 24px 0px;
}

.customized-faq-shell {
    max-width: 1365px;
    margin: var(--customized-section-gap) auto 0;
    padding: 0 88px;
}

.customized-faq-title {
    width: 100%;
    max-width: 1118px;
    margin: 0 auto 20px;
    color: #0b0b0f;
    font-family: "SF Pro Display", "SF Pro Icons", "AOS Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.16;
    letter-spacing: 0;
}

.customized-faq-list {
    width: 100%;
    max-width: 1118px;
    margin: 0 auto;
    border-bottom: 1px solid #d7dce4;
}

.customized-faq-item {
    border-top: 1px solid #d7dce4;
}

.customized-faq-item:first-child {
    border-top: 0;
}

.customized-faq-summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
    cursor: pointer;
}

.customized-faq-summary::-webkit-details-marker {
    display: none;
}

.customized-faq-question {
    color: #0b0b0f;
    font-family: "SF Pro Display", "SF Pro Icons", "AOS Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.customized-faq-toggle {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    border-right: 3px solid #0b0b0f;
    border-bottom: 3px solid #0b0b0f;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.customized-faq-item[open] .customized-faq-toggle,
.customized-faq-item.is-open .customized-faq-toggle {
    transform: rotate(-135deg);
}

.customized-faq-answer {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
    will-change: height;
}

.customized-faq-item[open]:not(.is-animating) > .customized-faq-answer,
.customized-faq-item.is-open > .customized-faq-answer {
    opacity: 1;
}

.customized-faq-answer-inner {
    padding: 0 72px 18px 0;
}

.customized-faq-answer-inner p {
    max-width: 960px;
    margin: 0;
    color: #111111;
    font-family: "SF Pro Display", "SF Pro Icons", "AOS Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 14px;
    line-height: 1.7;
}

/* Chosen by stars video gallery */
.customized-chosen-by-stars-shell {
    margin-top: var(--customized-section-gap);
    padding-bottom: var(--customized-section-gap);
}

.customized-chosen-by-stars-title {
    margin: 0;
    color: #0b0b0f;
    font-family: "SF Pro Display", "SF Pro Icons", "AOS Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.08;
    text-align: center;
}

.customized-chosen-by-stars-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    width: min(100%, 1100px);
    margin: 34px auto 0;
}

.customized-chosen-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 452 / 686;
    background: #000;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, box-shadow;
}

.customized-chosen-media {
    position: relative;
    width: 100%;
    height: 100%;
}

.customized-chosen-media::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.34);
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.customized-chosen-card.is-playing .customized-chosen-media::after {
    opacity: 0;
}

.customized-chosen-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
    .customized-chosen-card:hover,
    .customized-chosen-card:focus-within {
        transform: translateY(-6px);
    }

    .customized-chosen-card:hover .customized-chosen-media::after,
    .customized-chosen-card:focus-within .customized-chosen-media::after {
        opacity: 0.2;
    }

    .customized-chosen-card:hover .customized-chosen-video,
    .customized-chosen-card:focus-within .customized-chosen-video {
        transform: scale(1.035);
    }

    .customized-brand-showcase-gallery-item {
        transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: transform, box-shadow;
    }

    .customized-brand-showcase-gallery-item:hover,
    .customized-brand-showcase-gallery-item:focus-within {
        transform: translateY(-6px);
    }

    .customized-brand-showcase-gallery-image {
        transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: transform;
    }

    .customized-brand-showcase-gallery-item:hover .customized-brand-showcase-gallery-image,
    .customized-brand-showcase-gallery-item:focus-within .customized-brand-showcase-gallery-image {
        transform: scale(1.04);
    }
}

.customized-chosen-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.96);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.2s ease, opacity 0.25s ease;
    z-index: 2;
}

.customized-chosen-play-btn svg {
    width: 20px;
    height: 20px;
    color: #000;
    transform: translateX(0px);
}

.customized-chosen-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #ffffff;
}

.customized-chosen-card.is-playing .customized-chosen-play-btn {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .customized-page-shell {
        --customized-section-gap: 96px;
        --customized-subsection-gap: 44px;
    }

    .customized-category-grid {
        gap: 24px 38px;
        margin: 68px auto 56px;
    }

    .customized-products-rail {
        --customized-products-rail-column-width: 220px;
    }

    .customized-product-card {
        min-height: 300px;
    }

    .customized-product-card-media {
        min-height: 200px;
    }

    .customized-product-card-image {
        max-width: 170px;
        height: 200px;
    }

    .customized-selection-card {
        padding: 30px 24px 24px;
    }

    .customized-selection-grid {
        grid-template-columns: 1fr;
    }

    .customized-accordion-shell {
        padding: 0 28px;
    }

    .customized-what-you-get-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 24px;
    }

    .customized-what-you-get-media {
        min-height: 320px;
    }

    .customized-brand-showcase-gallery {
        grid-auto-columns: 220px;
        margin-top: 52px;
    }

    .customized-partners-section {
        padding-top: 44px;
    }

    .customized-partners-section .ibp-map-directory {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .customized-faq-section {
        padding: 0 24px 84px;
    }

    .customized-faq-shell {
        padding: 0 42px;
    }

    .customized-faq-title {
        margin-bottom: 28px;
    }

    .customized-faq-answer-inner {
        padding-right: 44px;
    }

    .customized-chosen-by-stars-grid {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: 220px;
        gap: 20px;
        width: calc(100% + var(--customized-page-gutter) + var(--customized-page-gutter));
        margin: 34px 0 0 calc(0px - var(--customized-page-gutter));
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 var(--customized-page-gutter) 16px;
        scroll-snap-type: x proximity;
        scroll-padding-left: var(--customized-page-gutter);
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x;
    }

    .customized-chosen-by-stars-grid::-webkit-scrollbar {
        display: none;
    }

    .customized-chosen-card {
        scroll-snap-align: start;
    }
}

@media (max-width: 767px) {
    .customized-selection-shell {
        width: min(100%, 1240px);
        /* margin: 50px auto 0; */
    }

    .customized-page-shell {
        --customized-page-gutter: 18px;
        --customized-section-gap: 84px;
        --customized-subsection-gap: 38px;
        padding: 130px 18px 0;
    }

    .customized-category-grid {
        gap: 18px 22px;
        margin: 54px auto 44px;
    }

    .customized-category-card {
        width: calc(50% - 14px);
        min-width: 144px;
        min-height: 196px;
    }

    .customized-category-card-image-wrap {
        width: 96px;
        height: 132px;
    }

    .customized-products-rail {
        display: none !important;
    }

    .customized-products-grid-mobile {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: 6px 0 24px;
        width: 100%;
    }

    .customized-customize-button-wrap-desktop {
        display: none;
    }

    .customized-customize-button-wrap-mobile {
        display: flex;
        margin: 0 0 24px;
    }

    .customized-product-card-mobile {
        width: 100%;
        min-height: 64px;
        padding: 12px 0;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 12px;
        background: #fcfcfd;
        appearance: none;
        -webkit-appearance: none;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        /* gap: 10px; */
        cursor: pointer;
        text-align: left;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .customized-product-card-mobile:hover,
    .customized-product-card-mobile:focus-visible {
        border-color: rgba(1, 113, 227, 0.35);
        background: #f5f5f7;
        outline: none;
    }

    .customized-product-card-mobile:active {
        transform: scale(0.98);
    }

    .customized-product-card-mobile.is-selected {
        border-color: var(--theme-color);
        background: #ffffff;
        box-shadow: 0 4px 12px rgba(1, 113, 227, 0.08);
    }

    .customized-product-image-wrap-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #ffffff;
        /* border: 1px solid rgba(0, 0, 0, 0.08); */
        flex-shrink: 0;
        overflow: hidden;
        transition: border-color 0.2s ease;
    }

    .customized-product-image-mobile {
        width: 90%;
        height: 90%;
        object-fit: contain;
        display: block;
    }

    .customized-product-card-mobile.is-selected .customized-product-image-wrap-mobile {
        /* border-color: var(--theme-color); */
    }

    .customized-product-card-title-mobile {
        color: #1d1d1f;
        font-family: "SF Pro Display", "SF Pro Icons", "AOS Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
        font-size: 13.5px;
        font-weight: 600;
        line-height: 1.25;
        transition: color 0.2s ease;
    }

    .customized-product-card-mobile.is-selected .customized-product-card-title-mobile {
        color: var(--theme-color);
    }

    .customized-product-card {
        min-height: 236px;
        padding: 18px 14px 16px;
        gap: 12px;
    }

    .customized-product-card-media {
        min-height: 170px;
    }

    .customized-product-card-image {
        max-width: 146px;
        height: 170px;
    }

    .customized-product-card-title {
        font-size: 15px;
    }

    .customized-selection-card,
    .customized-accordion-shell {
        border-radius: 26px;
    }

    .customized-selection-card {
        padding: 24px 18px 20px;
    }

    .customized-selection-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 24px;
    }

    .customized-selection-label {
        margin-bottom: 8px;
        font-size: 15px;
    }

    .customized-select {
        min-height: 60px;
        font-size: 15px;
    }

    .customized-selection-price {
        margin-top: 24px;
    }

    .customized-selection-note {
        margin-top: 14px;
        font-size: 14px;
    }

    .customized-selection-actions {
        flex-direction: column;
        gap: 14px;
        margin-top: 24px;
    }

    .customized-action-button {
        width: 100%;
        min-width: 0;
        min-height: 60px;
        border-radius: 12px;
    }

    .customized-customize-button-wrap .customized-action-button {
        min-width: 0;
    }

    .customized-accordion-shell {
        margin-top: 20px;
        padding: 0 18px;
    }

    .customized-accordion-trigger {
        padding: 22px 0;
    }

    .customized-accordion-copy {
        padding-bottom: 22px;
    }

    .customized-what-you-get-grid {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: 240px;
        gap: 22px;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        width: calc(100% + var(--customized-page-gutter) + var(--customized-page-gutter));
        margin: 26px 0 0 calc(0px - var(--customized-page-gutter));
        padding: 0 var(--customized-page-gutter) 10px;
        scroll-snap-type: x proximity;
        scroll-padding-left: var(--customized-page-gutter);
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x;
    }

    .customized-what-you-get-grid::-webkit-scrollbar {
        display: none;
    }

    .customized-what-you-get-item {
        width: 240px;
        min-width: 240px;
        scroll-snap-align: start;
    }

    .customized-what-you-get-media {
        min-height: 280px;
        padding: 20px;
        border-radius: 24px;
    }

    .customized-what-you-get-image {
        max-width: 220px;
        max-height: 260px;
    }

    .customized-what-you-get-caption {
        margin-top: 16px;
        font-size: 14px;
    }

    .customized-chosen-by-stars-shell,
    .customized-brand-showcase,
    .customized-partners-section,
    .customized-faq-shell {
        margin-top: 0;
    }

    .customized-brand-showcase-title {
        font-size: 30px;
    }

    .customized-brand-showcase-title span {
        font-size: 30px;
    }

    .customized-brand-showcase-side-wrap {
        margin-top: 50px;
    }

    .customized-brand-showcase-side-image {
        width: 100%;
        max-width: 703px;
        height: auto;
        display: block;
        object-fit: contain;
    }

    .customized-brand-showcase-gallery {
        grid-auto-columns: 206px;
        gap: 14px;
        margin-top: 34px;
        padding: 0 2px 8px;
    }

    .customized-brand-showcase-gallery-item {
        border-radius: 18px;
    }

    .customized-partners-section {
        padding-top: 32px;
    }

    .customized-partners-title {
        margin-bottom: 28px;
        font-size: 30px;
    }

    .customized-partners-section .ibp-map-directory {
        gap: 24px;
    }

    .customized-partners-section .ibp-world-map {
        min-height: 220px;
    }

    .customized-partners-section .ibp-directory-card-content {
        gap: 12px;
    }

    .customized-partners-section .ibp-directory-card-avatar {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .customized-partners-section .ibp-directory-whatsapp {
        min-width: 104px;
        font-size: 13px;
    }

    .customized-faq-section {
        padding: 0 18px 72px;
    }

    .customized-faq-shell {
        padding: 0;
    }

    .customized-faq-title {
        margin-bottom: 24px;
        font-size: 29px;
    }

    .customized-faq-summary {
        gap: 16px;
        padding: 16px 0;
    }

    .customized-faq-question {
        font-size: 15px;
        line-height: 1.45;
    }

    .customized-faq-toggle {
        width: 12px;
        height: 12px;
        border-right-width: 2px;
        border-bottom-width: 2px;
    }

    .customized-faq-answer-inner {
        padding: 0 18px 16px 0;
    }

    .customized-faq-answer-inner p {
        font-size: 14px;
        line-height: 1.65;
    }

    .customized-chosen-by-stars-title {
        font-size: 30px;
    }

    .customized-mobile-break-767 {
        display: inline;
    }

    .customized-chosen-by-stars-grid {
        grid-template-columns: none;
        grid-auto-columns: 186px;
        gap: 16px;
        margin-top: 26px;
        width: calc(100% + var(--customized-page-gutter) + var(--customized-page-gutter));
        margin: 26px 0 0 calc(0px - var(--customized-page-gutter));
        padding: 0 var(--customized-page-gutter) 16px;
        scroll-padding-left: var(--customized-page-gutter);
    }
}

@media (max-width: 552px) {
    .customized-mobile-break-552 {
        display: inline;
    }

    .customized-category-shell {
        width: 100%;
        margin: 40px 0 32px;
    }

    .customized-category-grid {
        width: 100%;
        margin: 0;
        /* padding: 0 18px 26px; */
        gap: 23px;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x proximity;
        scroll-padding-left: 18px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        touch-action: auto;
    }

    .customized-category-grid::-webkit-scrollbar {
        display: none;
    }

    .customized-category-grid-controls {
        width: calc(100% - 36px);
        margin: -6px auto 0;
        padding: 0;
        background: transparent;
        border-radius: 0;
        align-items: center;
        justify-content: center;
        gap: 12px;
        position: relative;
        z-index: 2;
    }

    .customized-category-grid-controls::before,
    .customized-category-grid-controls::after {
        content: "";
        flex: 1 1 auto;
        min-width: 24px;
        height: 1px;
        background: #e4e4e7;
    }

    .customized-category-grid-controls.is-visible {
        display: flex;
    }

    .customized-category-grid-control {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        min-width: 42px;
        height: 42px;
        padding: 0;
        border: 1.5px solid #dbe4eb;
        border-radius: 50%;
        background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
        box-shadow: 0 10px 24px rgba(23, 24, 26, 0.12);
        color: #17181a;
        font-family: "SF Pro Display", "SF Pro Icons", "AOS Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
        font-size: 20px;
        font-weight: 600;
        line-height: 1;
        letter-spacing: 0.1px;
        cursor: pointer;
        transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
    }

    .customized-category-grid-control svg {
        width: 10px;
        height: 16px;
        display: block;
    }

    .customized-category-grid-control path {
        fill: none;
        stroke: #17181a;
        stroke-width: 2.1;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .customized-category-grid-control:hover,
    .customized-category-grid-control:focus-visible {
        transform: translateY(-1px) scale(1.01);
        box-shadow: 0 14px 28px rgba(23, 24, 26, 0.16);
        outline: none;
    }

    .customized-category-grid-control.is-visible {
        display: inline-flex;
    }

    .customized-divider.is-merged-with-controls {
        display: none;
    }

    .customized-category-card {
        flex: 0 0 120px;
        width: 120px;
        min-width: 120px;
        min-height: 146px;
        gap: 8px;
        scroll-snap-align: start;
    }

    .customized-category-card-image-wrap {
        width: 84px;
        height: 96px;
    }

    .customized-category-card-image {
        width: 100%;
        height: 100%;
    }

    .customized-category-card-title {
        font-size: 13px;
        line-height: 1.2;
    }
}

.customized-selection-actions .ibp-directory-whatsapp {
    min-width: 180px;
    min-height: 50px;
    padding: 0 28px;
}

@media (max-width: 767px) {
    .customized-selection-actions .ibp-directory-whatsapp {
        width: 100%;
        min-width: 0;
        min-height: 60px;
    }
}

/* Customized Modal Overlay */
.customized-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.customized-modal-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* Modal Container */
.customized-modal-container {
    background: #ffffff;
    border-radius: 32px;
    width: 100%;
    max-width: 800px;
    max-height: min(92vh, 980px);
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 80px rgba(17, 24, 39, 0.18);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.customized-modal-overlay.is-active .customized-modal-container {
    transform: translateY(0);
}

/* Close button */
.customized-modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #f5f5f7;
    border: 1px solid #e5e7eb;
    font-size: 28px;
    color: #6b7280;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-indent: -9999px;
    overflow: hidden;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.customized-modal-close-btn::before {
    content: "\00d7";
    display: block;
    width: 100%;
    height: 100%;
    color: currentColor;
    font-size: 28px;
    line-height: 40px;
    text-align: center;
    text-indent: 0;
    transform: translateY(-1px);
}

.customized-modal-close-btn:hover {
    color: #111111;
    background: #eceff3;
    transform: translateY(-1px);
}

/* Modal Content */
.customized-modal-content {
    padding: 56px 64px 48px;
}

.customized-modal-header {
    font-size: 18px;
    font-weight: 700;
    color: #111111;
    text-align: center;
    line-height: 1.05;
    margin: 0 0 22px;
    font-family: "SF Pro Display", "SF Pro Icons", "AOS Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

.customized-modal-description {
    max-width: 900px;
    font-size: 15px;
    line-height: 1.45;
    color: #111111;
    text-align: center;
    margin: 0 auto 42px;
}

.customized-modal-description-mobile-space {
    display: none;
}

/* Form Styles */
.customized-form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.customized-form-label {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
    color: #111111;
    margin: 0;
}

.customized-form-label-desktop-space {
    display: inline;
}

.customized-form-label-mobile-break {
    display: none;
}

/* File Upload Box */
.customized-file-upload-box {
    min-height: 50px;
    border: 1px solid #d7dce4;
    border-radius: 12px;
    background: #f7f7f8;
    padding: 0px 3px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.customized-file-btn {
    background: #ffffff;
    border: 1px solid black;
    border-radius: 8px;
    min-height: 38px;
    padding: 0 22px;
    font-size: 15px;
    font-weight: 500;
    color: #111111;
    cursor: pointer;
    box-shadow: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.customized-file-btn:hover {
    background: #ffffff;
    border-color: #636363;
}

.customized-file-label {
    font-size: 15px;
    color: #111111;
    line-height: 1.4;
    min-width: 0;
}

/* Textarea & Inputs */
.customized-form-textarea {
    border: 1px solid #d7dce4;
    border-radius: 12px;
    background: #f7f7f8;
    padding: 26px 28px;
    font-size: 15px;
    line-height: 1.5;
    color: #111111;
    resize: vertical;
    min-height: 50px;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.customized-form-textarea::placeholder {
    color: #98a1b2;
}

.customized-form-textarea:focus {
    border-color: #b9c1ce;
    outline: none;
    box-shadow: 0 0 0 4px rgba(185, 193, 206, 0.15);
}

.customized-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 30px;
}

.customized-half-col {
    min-width: 0;
}

.customized-form-input {
    min-height: 50px;
    border: 1px solid #d7dce4;
    border-radius: 12px;
    background: #f7f7f8;
    padding: 0 28px;
    font-size: 15px;
    color: #111111;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.customized-form-input::placeholder {
    color: #98a1b2;
}

.customized-form-input:focus {
    border-color: #b9c1ce;
    outline: none;
    box-shadow: 0 0 0 4px rgba(185, 193, 206, 0.15);
}

.customized-phone-field {
    position: relative;
}

.customized-phone-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
}

.customized-country-select-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 50px;
    min-width: 110px;
    padding: 0 14px;
    border: 1px solid #d7dce4;
    border-radius: 12px;
    background: #f7f7f8;
    color: #111111;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.customized-country-select-trigger:hover {
    background: #ffffff;
    border-color: #bcc4cf;
}

.customized-country-select-trigger:focus-visible {
    outline: none;
    border-color: #b9c1ce;
    box-shadow: 0 0 0 4px rgba(185, 193, 206, 0.15);
}

.customized-country-select-trigger-content {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.customized-country-select-flag,
.customized-country-select-option-flag {
    font-size: 16px;
    line-height: 1;
}

.customized-country-select-code,
.customized-country-select-option-code {
    font-size: 15px;
    font-weight: 500;
    color: #111111;
}

.customized-country-select-trigger-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6e6e73;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.customized-phone-field.is-open .customized-country-select-trigger-icon {
    transform: rotate(180deg);
}

.customized-phone-input {
    min-width: 0;
}

.customized-country-select-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 30;
    display: none;
    max-height: var(--customized-country-panel-max-height, 320px);
    padding: 12px;
    overflow: hidden;
    border: 1px solid #d7dce4;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
}

.customized-phone-field.is-open .customized-country-select-panel {
    display: block;
}

.customized-phone-field.is-open-upward .customized-country-select-panel {
    top: auto;
    bottom: calc(100% + 8px);
}

.customized-country-search-input {
    width: 100%;
    min-height: 44px;
    margin-bottom: 12px;
    padding: 0 14px;
    border: 1px solid #d7dce4;
    border-radius: 10px;
    background: #f7f7f8;
    font-size: 14px;
    color: #111111;
}

.customized-country-search-input:focus {
    outline: none;
    border-color: #b9c1ce;
    box-shadow: 0 0 0 4px rgba(185, 193, 206, 0.15);
}

.customized-country-select-options {
    display: grid;
    gap: 8px;
    max-height: var(--customized-country-options-max-height, 220px);
    overflow-y: auto;
}

.customized-country-select-option {
    display: grid;
    grid-template-columns: 22px 58px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid #e3e6eb;
    border-radius: 10px;
    background: #f7f7f8;
    color: #111111;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.customized-country-select-option:hover,
.customized-country-select-option:focus-visible {
    outline: none;
    background: #ffffff;
    border-color: #bcc4cf;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.customized-country-select-option.is-selected {
    border-color: var(--theme-color);
    background: #f2f8ff;
    box-shadow: 0 0 0 3px rgba(1, 113, 227, 0.08);
}

.customized-country-select-option-name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
}

.customized-country-select-empty {
    margin: 8px 0 0;
    color: #6e6e73;
    font-size: 14px;
}

.customized-hidden {
    display: none !important;
}

/* Select Box */
.customized-select-box-wrap {
    position: relative;
    width: 100%;
}

.customized-form-select {
    width: 100%;
    min-height: 50px;
    border: 1px solid #d7dce4;
    border-radius: 12px;
    background: #f7f7f8;
    padding: 0 62px 0 28px;
    font-size: 15px;
    color: #111111;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.customized-form-select:focus {
    border-color: #b9c1ce;
    outline: none;
    box-shadow: 0 0 0 4px rgba(185, 193, 206, 0.15);
}

/* Chevron down arrow inside wrapper */
.customized-select-box-wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    width: 18px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 10'%3E%3Cpath d='M1.5 1.25L9 8.25L16.5 1.25' stroke='%23111111' stroke-width='1.75' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.customized-form-submit-row {
    margin-top: 8px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.customized-form-submit-btn {
    min-width: 320px;
    min-height: 50px;
    padding: 0 38px;
    border-radius: 12px;
    border: 2px solid var(--theme-color);
    background: var(--theme-color);
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.customized-form-submit-btn:hover {
    transform: translateY(-1px);
    background: #ffffff;
    color: var(--theme-color);
    border-color: var(--theme-color);
}

.customized-form-submit-btn:active {
    transform: translateY(0);
}

.customized-form-disclaimer {
    font-size: 15px;
    font-weight: 500;
    color: #2363cf;
    margin: 5px 0 0;
    text-align: center;
}

div:where(.swal2-container) div:where(.swal2-html-container).customized-whatsapp-swal-text {
    font-size: 15px;
    line-height: 1.45;
}

div:where(.swal2-container) button:where(.swal2-confirm).customized-whatsapp-swal-confirm {
    background-color: #0071e3 !important;
    border-color: #0071e3 !important;
    font-size: 15px;
}

div:where(.swal2-container) button:where(.swal2-confirm).customized-whatsapp-swal-confirm:focus {
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.25);
}

body.no-scroll {
    overflow: hidden !important;
}

/* Responsive modal styling */
@media (max-width: 767px) {
    .customized-modal-overlay {
        padding: 14px;
        align-items: flex-start;
    }

    .customized-modal-container {
        max-height: calc(100vh - 28px);
        border-radius: 18px;
    }

    .customized-modal-content {
        padding: 58px 18px 24px;
    }
    
    .customized-modal-header {
        font-size: 18px;
        line-height: 1.15;
        margin-bottom: 12px;
    }

    .customized-modal-description {
        font-size: 15px;
        line-height: 1.45;
        margin-bottom: 22px;
    }

    .customized-modal-description-break {
        display: none;
    }

    .customized-modal-description-mobile-space {
        display: inline;
    }
    
    .customized-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .customized-form-group {
        margin-bottom: 18px;
        gap: 10px;
    }

    .customized-form-label {
        font-size: 15px;
    }

    .customized-form-label-desktop-space {
        display: none;
    }

    .customized-form-label-mobile-break {
        display: block;
    }

    .customized-file-upload-box {
        min-height: 50px;
        padding: 4px;
        gap: 8px;
        flex-wrap: wrap;
        align-items: center;
    }

    .customized-file-btn {
        min-height: 40px;
        padding: 0 14px;
        font-size: 15px;
    }

    .customized-file-label,
    .customized-form-input,
    .customized-form-select,
    .customized-form-textarea {
        font-size: 15px;
    }

    .customized-form-input,
    .customized-form-select {
        min-height: 50px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .customized-form-select {
        padding-right: 42px;
    }

    .customized-phone-row {
        grid-template-columns: 104px minmax(0, 1fr);
        gap: 8px;
    }

    .customized-country-select-trigger {
        min-width: 0;
        padding: 0 10px;
    }

    .customized-country-select-code {
        font-size: 14px;
    }

    .customized-country-select-option {
        grid-template-columns: 22px 54px minmax(0, 1fr);
        padding: 10px;
    }

    .customized-form-textarea {
        min-height: 96px;
        padding: 14px 16px;
    }

    .customized-select-box-wrap::after {
        right: 18px;
        width: 16px;
    }
    
    .customized-form-submit-btn {
        width: 100%;
        min-width: 0;
        min-height: 50px;
        border-radius: 12px;
        font-size: 15px;
    }

    .customized-form-disclaimer {
        font-size: 14px;
    }

    .customized-modal-close-btn {
        top: 16px;
        right: 16px;
        width: 38px;
        height: 38px;
    }

    .customized-modal-close-btn::before {
        line-height: 34px;
    }
}
