@font-face {
    font-family: 'Pacifico';
    src: url('../fonts/personalize/Pacifico.ttf') format('truetype');
}

@font-face {
    font-family: 'Rockwell';
    src: url('../fonts/personalize/Rockwell.ttf') format('truetype');
}

@font-face {
    font-family: 'Papyrus';
    src: url('../fonts/personalize/Papyrus.ttf') format('truetype');
}

@font-face {
    font-family: 'Optima';
    src: url('../fonts/personalize/Optima.ttf') format('truetype');
}

/* Filter Pills */
.filter-pill {
    border: 1px solid #dee2e6;
    background: #fff;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: 0.85rem;
    transition: all 0.2s;
    cursor: pointer;
    white-space: nowrap;
    display: inline-block;
}

.filter-pill:hover:not(.active) {
    background: #f8f9fa;
    border-color: #adb5bd;
}

.filter-pill.active,
a.filter-pill.active {
    background: #564271 !important;
    border-color: #564271 !important;
    color: #fff !important;
}

.filter-pill.active:hover,
a.filter-pill.active:hover {
    background: #45385a !important;
    border-color: #45385a !important;
    color: #fff !important;
}

/* Filter Options Container */
.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

/* Filters Overlay */
.filters-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    margin: 0;
    padding: 0;
}

.filters-overlay:not(.show) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.filters-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Prevent body scroll when filters overlay is open */
body.filters-overlay-open {
    overflow: hidden;
}

.filters-panel {
    width: 320px;
    max-width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    padding: 1rem 1rem;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    margin: 0;
    margin-left: 0;
}

.filters-overlay.show .filters-panel {
    transform: translateX(0);
}

.filters-section {
    max-height: calc(100vh - 280px);
    overflow-y: auto;
}

.filters-footer {
    position: sticky;
    bottom: 0;
    background: #fff;
    z-index: 10;
}

.filters-section::-webkit-scrollbar {
    width: 6px;
}

.filters-section::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.filters-section::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.filters-section::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Compact accordion headers in filters overlay */
.filters-panel .accordion-item {
    border: 0;
    border-bottom: 1px solid #e9ecef;
}

.filters-panel .accordion-header {
    margin-bottom: 0;
    padding: 0;
    width: 100%;
}

.filters-panel .accordion-button {
    padding: 0.35rem 0.6rem;
    font-size: 0.9rem;
    background-color: #f8f9fa;
    width: 100%;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filters-panel .accordion-button:not(.collapsed) {
    box-shadow: none;
}

/* Ensure chevron sits at far right */
.filters-panel .accordion-button::after {
    margin-left: auto;
}

/* Utility Classes */
.text-brand-color {
    color: #564271;
}

.btn-clear-filters {
    font-size: 0.8rem;
}

.infinite-scroll-trigger {
    height: 100px;
}

body {
    font-family: "Nunito";
    background: #fff;
    overflow-x: hidden;
}

.leaf-background {
    background: url(../images/leaf-illustration.png);
    background-repeat: no-repeat;
    background-position: bottom right;
}

label {
    color: #564271;
}

h1 {
    font-family: "Varela";
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 52px;
    text-align: center;
    color: #564271;
}

h2 {
    font-family: "Varela";
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 40px;
    color: #564271;
    width: fit-content;
    border-bottom: 2px solid #fc9a00;
}

h3 {
    font-family: "Varela";
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 32px;
    text-align: center;
    color: #564271;
}

h4 {
    font-family: "Varela";
    font-size: 16px;
    line-height: 20px;
    color: #564271;
}

hr {
    border: 0.5px solid #fce3bc;
    opacity: 1;
}

.hr-dark {
    border: 0.5px solid #cdc9c9;
}

.hr-text {
    width: 100%;
    text-align: center;
    border-bottom: 0.5px solid #fce3bc;
    line-height: 0.1em;
    margin: 10px 0 20px;
}

.hr-text span {
    background: #fff;
    color: #564271;
    padding: 0 10px;
}

.navbar {
    height: 72px;
    background: #fff;
    border-bottom: 2px solid #fce3bc;
    font-family: "Nunito";
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 0.5rem 0;
        min-height: 72px;
        height: auto;
    }

    .navbar .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .navbar-brand {
        padding: 0.5rem 0;
    }

    .navbar-brand img {
        height: 40px;
    }

    .navbar-toggler {
        border: 1px solid rgba(86, 66, 113, 0.2);
        border-radius: 8px;
        padding: 0.5rem 0.75rem;
        margin-left: auto;
        background-color: transparent;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 153, 0, 0.25);
        outline: none;
    }

    .navbar-toggler:hover {
        background-color: rgba(255, 153, 0, 0.08);
        border-color: rgba(255, 153, 0, 0.3);
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2886, 66, 113, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        width: 24px;
        height: 24px;
    }

    .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(86, 66, 113, 0.1);
    }

    .navbar-nav {
        align-items: flex-start !important;
        gap: 0.5rem;
    }

    .nav-item {
        width: 100%;
    }

    .categories-dropdown-wrapper {
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .categories-btn {
        width: 100%;
        justify-content: space-between;
        margin: 0;
        padding: 12px 16px;
        font-size: 14px;
    }

    .nav-item.d-flex {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem !important;
        margin-top: 0.5rem;
    }

    .nav-item.d-flex .btn {
        width: 100%;
        padding: 10px 16px;
        font-size: 14px;
    }

    .nav-item.dropdown {
        width: 100%;
    }

    .user-icon-link {
        width: 100%;
        padding: 12px 16px;
        justify-content: flex-start;
    }

    .user-icon-link span {
        display: inline !important;
    }

    .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        margin-top: 0.5rem;
        border: 1px solid rgba(86, 66, 113, 0.1);
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
}

.nav-link {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    text-transform: uppercase;
    text-align: center;
}

.nav-link-text {
    color: #564271;
    width: 88px;
}

.nav-link-icon {
    color: #fc9a02;
    font-size: 20px;
    height: 20px;
    padding-top: 6px;
    width: 48px;
}

/* ------------------------------------------------------------------
   Frontend top navigation – Categories mega menu
   Note: this file is the only CSS included on the public site,
   so the menu styles live here instead of the SCSS pipeline.
-------------------------------------------------------------------*/

.categories-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    margin: 0 12px 0 0;
    border-radius: 999px;
    background-color: rgba(255, 153, 0, 0.08);
    color: #564271;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-decoration: none;
    white-space: nowrap;
    border: 0;
    line-height: 1.4;
    transition: all 0.2s ease;
}

.categories-btn i {
    font-size: 0.875rem;
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.categories-btn:hover,
.categories-btn:focus {
    background-color: rgba(255, 153, 0, 0.16);
    color: #564271;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.2);
}

.categories-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.categories-dropdown-wrapper {
    position: relative;
}

/* ── Mega menu container ── */
.categories-mega-menu.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    margin-top: 0;
    padding: 0;
    width: 980px;
    max-width: calc(100vw - 2rem);
    border: 0;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.14), 0 2px 6px rgba(0, 0, 0, 0.06);
    background: #ffffff;
    overflow: hidden;
    animation: megaMenuFadeIn 0.18s ease-out;
}

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

/* ── Content flex layout ── */
.categories-mega-content {
    display: flex;
    padding: 28px 32px;
    gap: 0;
}

/* ── Group columns ── */
.categories-list-column,
.categories-group-column {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 16px;
}

.categories-group-column:first-child {
    padding-left: 0;
}

/* Subtle left border on every column except the first */
.categories-group-column + .categories-group-column {
    border-left: 1px solid rgba(86, 66, 113, 0.08);
}

/* ── Group title ── */
.categories-mega-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9b8fb0;
    margin: 0 0 14px 0;
    padding: 0 8px 8px;
    border-bottom: 2px solid rgba(255, 153, 0, 0.15);
}

/* ── Category list ── */
.categories-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.categories-list-item {
    margin-bottom: 2px;
}

.categories-list-link,
.categories-list-link:link,
.categories-list-link:visited,
.categories-list-link:active {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 10px;
    border-radius: 8px;
    color: #3d2f50;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    background: transparent;
    border: 0;
    transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
    line-height: 1.4;
}

.categories-list-link:hover,
.categories-list-link:focus {
    background-color: rgba(255, 153, 0, 0.1);
    color: #e68a00;
    text-decoration: none;
    transform: translateX(3px);
}

.categories-badge {
    display: inline-block;
    padding: 2px 6px;
    margin-left: 8px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    border-radius: 4px;
    background-color: rgba(255, 153, 0, 0.12);
    color: #e68a00;
}

/* Homepage category pills active state */
.bg-orange {
    background-color: #fc9a00 !important;
    color: #ffffff !important;
}

/* ── Banner column ── */
.categories-banner-column {
    flex: 0 0 240px;
    max-width: 240px;
    padding-left: 24px;
    margin-left: 8px;
    border-left: 1px solid rgba(86, 66, 113, 0.08);
}

.categories-banner-link {
    display: block;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
}

.categories-banner-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
    text-decoration: none;
}

.categories-banner-image {
    position: relative;
    width: 100%;
    aspect-ratio: 10 / 13;
    max-height: 340px;
    background: #f8f9fa;
}

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

.categories-banner-text {
    padding: 12px 14px;
    background: #fff;
}

.categories-banner-title {
    font-size: 14px;
    font-weight: 700;
    color: #3d2f50;
    line-height: 1.3;
}

.categories-banner-subtitle {
    font-size: 12px;
    color: #6c757d;
    margin-top: 2px;
    line-height: 1.4;
}

/* ── Tablet: 2×2 grid for groups, banner below ── */
@media (min-width: 992px) and (max-width: 1200px) {
    .categories-mega-menu.dropdown-menu {
        width: 820px;
    }

    .categories-banner-column {
        flex: 0 0 200px;
        max-width: 200px;
    }
}

/* ── Mobile: stacked columns ── */
@media (max-width: 991.98px) {
    .categories-mega-menu.dropdown-menu {
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 0.5rem !important;
        border-radius: 12px !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        transform: none !important;
        inset: auto !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        animation: none;
    }

    .categories-mega-content {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }

    .categories-list-column,
    .categories-group-column {
        flex: 1;
        min-width: 100%;
        padding: 0 0 16px 0;
        margin-bottom: 16px;
        border-left: none;
    }

    .categories-group-column + .categories-group-column {
        border-left: none;
        border-top: 1px solid rgba(86, 66, 113, 0.08);
        padding-top: 16px;
    }

    .categories-group-column:first-child {
        padding-left: 0;
    }

    .categories-mega-title {
        font-size: 12px;
        padding: 0 4px 6px;
        margin-bottom: 10px;
    }

    .categories-list-link,
    .categories-list-link:link,
    .categories-list-link:visited,
    .categories-list-link:active {
        font-size: 15px;
        padding: 10px 12px;
    }

    .categories-list {
        max-height: none;
        overflow-y: visible;
    }

    .categories-banner-column {
        display: none;
    }
}

.text-link,
.text-link:hover,
.text-link:active {
    color: #564271;
}

.border-top {
    border-top: 2px solid #fce3bc !important;
}

.info-label {
    color: #564271;
    text-align: center;
}

.link-orange {
    color: #fc9a00;
}

footer {
    background-color: #fff9f0;
}

footer h5 {
    font-family: "Nunito";
    font-weight: 800;
    font-size: 14px;
    line-height: 19px;
    text-transform: uppercase;
    color: #564271;
}

footer p {
    font-family: "Nunito";
    color: #564271;
    font-weight: 600;
}

footer .nav .nav-link {
    font-family: "Nunito";
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    text-align: left;
    text-transform: none;
    color: #564271 !important;
}

.footer-copyright {
    font-family: "Nunito";
    background: #fc9a00;
    color: #fff;
    text-align: center;
    margin: auto;
}

footer .download-badge {
    display: block;
    width: 120px;
    margin-bottom: 15px;
}

footer .social-icon {
    height: 25px;
    margin-top: 10px;
    margin-right: 15px;
}

@media (max-width: 767.98px) {
    footer .container-lg {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    footer h5 {
        font-size: 13px;
        margin-bottom: 0.75rem;
    }

    footer .nav .nav-link {
        font-size: 13px;
    }

    footer p {
        font-size: 13px;
        margin-bottom: 0.5rem;
    }

    footer .download-badge {
        width: 100px;
        margin-bottom: 10px;
    }

    footer .social-icon {
        height: 22px;
        margin-top: 8px;
        margin-right: 10px;
    }
}

.wide {
    width: 100%;
}

.btn {
    border-radius: 25px;
    font-family: "Varela";
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 22px;
    text-align: center;
    padding: 10px 25px 10px 25px;
}

.btn-orange {
    background: #fc9a00;
    color: #fff;
}

.btn-purple {
    background: #615375;
    color: #fff;
    border: 2px solid transparent;
}

.btn-white {
    background: #fff;
    border: 2px solid #615375;
    color: #615375;
}

.btn-purple:hover,
.btn-purple:active,
.btn-white:hover,
.btn-white:active {
    background: #fff;
    border: 2px solid #615375;
    color: #615375;
}

.btn-shadow {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.35);
}

.btn-orange:hover,
.btn-orange:active {
    background: #615375;
    color: #fff;
}

.nav-categories li a {
    font-family: "Varela";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #564271;
    text-align: left;
    text-transform: none;
    border-bottom: 1px solid #000;
    padding-left: 5px;
}

.badge-new {
    background-color: #564271;
}

.modal-header {
    border-bottom: none;
    align-items: normal;
}

.modal-header .modal-title {
    text-align: center;
    width: 100%;
    font-family: "Varela";
    font-style: normal;
    font-size: 32px;
    line-height: 42px;
    padding-top: 30px;
    color: #564271;
}

.greeting-card {
    font-family: "Varela";
    font-style: normal;
    text-align: center;
    cursor: pointer;
}

.greeting-card img {
    max-height: 260px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/* --------------------------------------------------------------
   Cookie banner
-------------------------------------------------------------- */

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1090;
    padding: 12px 16px;
    background: rgba(24, 15, 40, 0.96);
    color: #ffffff;
    font-size: 13px;
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cookie-banner-text {
    margin: 0;
    line-height: 1.5;
}

.cookie-banner-link {
    color: #ffb347;
    text-decoration: underline;
}

.cookie-banner-link:hover {
    color: #ffd27f;
}

.cookie-banner-btn {
    border: 0;
    border-radius: 999px;
    padding: 6px 16px;
    font-weight: 600;
    font-size: 13px;
    background: #ff9900;
    color: #181028;
    cursor: pointer;
    white-space: nowrap;
}

.cookie-banner-btn:hover {
    background: #ffc266;
}

@media (max-width: 767.98px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner-btn {
        width: 100%;
    }
}

.greeting-card .name {
    margin-top: 10px;
    margin-bottom: 5px;
    color: #564271;
}

.greeting-card .price {
    margin-bottom: 10px;
    color: #fc9a00;
}

.greeting-card-information {
    border: 2px solid #e9e7e7;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    height: auto;
    align-self: flex-start;
}

.greeting-card-information .btn {
    margin-top: 80px;
}

.greeting-card-information p {
    color: #555555;
    font-weight: 700;
    margin-top: 80px;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #cdc9c9;
}

.breadcrumb .breadcrumb-item,
.breadcrumb .breadcrumb-item a {
    font-family: "Nunito";
    font-weight: 300;
    font-size: 16px;
    color: #cdc9c9;
    text-decoration: none;
}

.carousel-card-navigation img {
    background: #ffffff;
    border: 1px solid #e9e7e7;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}

.card-personalize-wrapper {
    width: 360px;
    height: 440px;
    margin-top: 30px;
    padding-bottom: 40px;
    padding-top: 40px;
}

.card-personalize-wrapper-video {
    background: url("/images/card-template-video.png") no-repeat center center;
    width: 360px;
    height: 440px;
    margin-top: 30px;
    padding-bottom: 40px;
    padding-left: 25px;
    padding-top: 40px;
    padding-right: 5px;
}

#card-personalize-text {
    background: transparent;
    display: table-cell;
    margin: 0 auto;
    height: 360px;
    width: 340px;
    border: 0px;
    max-height: 360px;
    max-width: 340px;
    resize: none;
    overflow: hidden;
}

#card-personalize-text:focus {
    outline: none !important;
    border: 0;
}

.card-personalize-tools {
    margin-top: 20px;
    padding-right: 40px;
    text-align: center;
}

#card-personalize-label {
    font-size: 16px;
    line-height: 19px;
    color: #555555;
    font-weight: 600;
}

#cp-color-tool {
    display: block;
    margin: 0 auto;
}

.cp-color {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-block;
    margin: 0px 3px 0px 3px;
}

.cp-color-selected {
    border: 4.59459px solid #fe9911;
}

#cp-color-030000 {
    background-color: #030000;
}

#cp-color-251C54 {
    background-color: #251c54;
}

#cp-color-441524 {
    background-color: #441524;
}

#cp-color-B50142 {
    background-color: #b50142;
}

#cp-color-073224 {
    background-color: #073224;
}

.card-personalize-ai-button {
    position: absolute;
    background: #ECEFFF;
    padding: 5px 15px;
    border-radius: 8px;
    color: #615375;
    border: 1px solid #B9BFE0;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

.card-personalize-tool-options {
    border-top: 0.5px solid #cdc9c9;
    margin-top: 15px;
    padding-top: 15px;
}

.cp-tool-option {
    width: 40px;
    margin: 0 5px 0 5px;
}

.cp-tool-suboption {
    width: 45px;
    margin: 0 8px 0 8px;
}

.cp-tool-option-selected,
.cp-tool-suboption-selected {
    filter: invert(76%) sepia(31%) saturate(7074%) hue-rotate(359deg) brightness(100%) contrast(105%);
}

.card-personalize-wishes {
    margin-top: 60px;
}

.card-personalize-wishes-label {
    font-family: "Varela";
    font-weight: 700;
    font-size: 16px;
    color: #555555;
    font-weight: 700;
    text-align: center;
    border-bottom: 0.5px solid #cdc9c9;
    padding-bottom: 15px;
}

.card-personalize-wish-wrapper {
    display: block;
    height: 300px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.card-personalize-wish {
    border: 2px solid #e5e5e5;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.25));
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    padding: 20px;
    margin-left: 10px;
    margin-right: 10px;
    cursor: pointer;
}

.card-personalize-wish-selected {
    border: 2px solid #fe9911;
}

#video-preview p {
    border: 3px solid #fc9a00;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    color: #564271;
    font-size: 18px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 0;
}

#video-preview video {
    border: 3px solid #fc9a00;
    width: 100%;
}

.cart-quantity-field {
    border: 0;
    width: 40px;
    text-align: center;
}

.cart-quantity-button {
    border: 0;
    background: #564271;
    color: #fff;
    padding: 0 10px 0 10px;
}

.cart-table th,
.cart-calculations td {
    font-family: "Varela";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #564271;
}

.cart-table td {
    padding-top: 20px;
    padding-bottom: 20px;
}

.cart-table tr,
.cart-calculations tr {
    border-color: #564271;
}

.cart-calculations tr td {
    border-bottom-width: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}

.cart-calculations .cart-total {
    border-top-width: 1px;
}

.center-message {
    font-family: "Nunito";
    color: #564271;
    font-weight: 600;
    text-align: center;
    font-size: 18px;
    padding: 40px;
}

#card-element {
    border: 1px solid #fc9a00;
    padding: 10px;
}

.card-tabs .nav-link {
    color: #fc9a00;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: #fc9a00;
}

.flickity-slider {
    display: flex;
    align-items: center;
}

.card-personalize .right,
.card-personalize .left,
.personalize-preview .right,
.personalize-preview .left {
    display: flex;
    align-items: center;
    justify-content: space-around;
    border: 1px solid #fc9a00;
    width: 360px;
    height: 480px;
}

.card-personalize .left img,
.card-personalize .right img,
.personalize-preview .right img,
.personalize-preview .left img {
    width: 100%;
    height: 100%;
}

#video-bg {
    background: url("/images/video-bg.png") no-repeat center center;
    height: 414px;
    width: 331px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#video-upload-wrapper {
    width: 100%;
}

.card-fix {
    width: 960px;
    height: 640px;
}

.cover-fix {
    width: 960px;
    height: 478px;
}

.cover-fix2 {
    width: 960px;
}

.cover-fix2 img {
    max-width: 100%;
}

.step {
    margin: 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
}

.step-complete {
    background-color: #251C54;
    color: #fff;
}

.step-pending {
    border: 2px solid #251C54;
    color: #3a3a9e;
}

.addMessageCircle {
    display: grid;
    position: absolute;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.7);
    height: 150px;
    width: 150px;
    text-align: center;
    align-content: center;
    color: #c1c1c1;
    font-weight: 700;
    border-radius: 50%;
    margin-top: -25px;
    margin-left: -25px;
    padding: 20px;
    font-size: 18px;
}

/* Preview Card */
.preview-card {
    width: 720px;
    height: 480px;
    position: relative;
    margin: auto;
    -webkit-perspective: 1200px;
    perspective: 1200px;
    transition: 1s;
}

.preview-active .outside {
    transform: rotateY(-180deg);
}

.preview-card .outside {
    height: 100%;
    width: 50%;
    position: absolute;
    left: 50.1%;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    z-index: 1;
    transform-origin: left;
    transition: 1.5s;
    cursor: pointer;
    border: 2px solid #fe9911;
}

.preview-card .inside {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    padding: 0;
    box-sizing: border-box;
    line-height: 3;
    z-index: 0;
}

.preview-active .inside {

    z-index: 999;
    transition: z-index 0s 1s;
    /* Delays z-index change for 5 seconds */
}

.preview-card .inside .left,
.preview-card .inside .right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: 10px;
    border: 2px solid #fe9911;
    box-sizing: border-box;
}

.preview-card .inside .left {
    visibility: hidden;
    opacity: 0;
    transition: opacity 2s ease 1s;
}

.preview-active .inside .left {
    visibility: visible;
    opacity: 1;
}

.preview-card .inside .right {
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 10px;
    border: 2px solid #fe9911;
    box-sizing: border-box;
}

.preview-card .inside img {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    display: block;
}

.preview-card .front,
.preview-card .back {
    height: 100%;
    width: 100%;
    position: absolute;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: rotateX(0deg);
}

.preview-card .front {
    background-color: #ffffff;
}

.preview-card .back {
    transform: rotateY(180deg);
    background: #fff;
}

.preview-card .outside p {
    font-size: 23px;
    text-transform: uppercase;
    margin-top: 30px;
    text-align: center;
    letter-spacing: 6px;
    color: #000046;
}

.preview-card .front img,
.preview-card .outside img,
.preview-card .back img {
    width: 100%;
    height: 100%;
}

/* Categories Page Styling */
.categories-page {
    min-height: 60vh;
}

.category-page-title {
    font-family: "Varela";
    font-size: 2.5rem;
    font-weight: 400;
    color: #564271;
    border-bottom: 2px solid #fc9a00;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.categories-sidebar {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.categories-sidebar-title {
    font-family: "Varela";
    font-size: 1.25rem;
    font-weight: 400;
    color: #564271;
    margin-bottom: 1rem;
}

.categories-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-sidebar-item {
    margin-bottom: 0.5rem;
}

.categories-sidebar-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #564271;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.categories-sidebar-link:hover {
    background-color: rgba(255, 153, 0, 0.1);
    color: #FF9900;
    text-decoration: none;
}

.categories-sidebar-link.active {
    background-color: rgba(255, 153, 0, 0.15);
    color: #FF9900;
    font-weight: 600;
}

/* Mobile categories sidebar */
.categories-sidebar-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    font-weight: 600;
    color: #564271;
    border: 1px solid rgba(86, 66, 113, 0.2);
    background-color: #fff;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.categories-sidebar-toggle:hover {
    background-color: rgba(255, 153, 0, 0.08);
    border-color: rgba(255, 153, 0, 0.3);
    color: #564271;
}

.categories-sidebar-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 153, 0, 0.25);
    outline: none;
}

.categories-sidebar-toggle[aria-expanded="true"] .bi-chevron-down {
    transform: rotate(180deg);
}

.categories-sidebar-toggle .bi-chevron-down {
    transition: transform 0.2s ease;
}

@media (max-width: 991.98px) {
    .categories-sidebar {
        margin-top: 0;
        border-radius: 8px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    }

    .categories-sidebar-title {
        display: none;
    }

    .categories-sidebar-link {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .categories-sidebar-item {
        margin-bottom: 0.375rem;
    }

    /* Categories page mobile layout */
    .categories-page .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .category-page-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

/* Card Item Styling */
.card-item-wrapper {
    position: relative;
}

.card-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.card-item-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 8px;
    overflow: visible;
    background: #f8f9fa;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-badge-new {
    position: absolute;
    top: -0.4rem;
    left: -0.2rem;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.4rem;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #fff;
    background: linear-gradient(135deg, #ff9900 0%, #e68a00 100%);
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.card-badge-new-icon {
    font-size: 0.6rem;
    opacity: 0.95;
}

.card-item-link:hover .card-item-image-wrapper {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.card-item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 8px;
}

.card-item-name {
    font-family: "Nunito";
    font-size: 0.95rem;
    font-weight: 500;
    color: #564271;
    text-align: center;
    line-height: 1.4;
    min-height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-wishlist-btn {
    position: absolute;
    top: -0.9rem;
    right: -0.2rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.card-wishlist-btn:hover {
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.card-wishlist-btn i {
    font-size: 1.1rem;
    color: #6c757d;
    transition: color 0.2s ease;
    line-height: 0;
    display: block;
    position: relative;
    top: 1px; /* nudge down to appear visually centered */
}

.card-wishlist-btn.wishlisted i {
    color: #FF9900;
}

.card-wishlist-btn:hover i {
    color: #FF9900;
}

/* ==========================================================================
   Homepage Styles
   ========================================================================== */

/* Color Variables (using CSS custom properties for consistency) */
.homepage {
    --hp-text-dark: #1a1a1a;
    --hp-text-muted: #4a4a4a;
    --hp-text-light: #6b7280;
    --hp-bg-cream: #FDFBF7;
    --hp-bg-light: #f8f9fb;
    --hp-orange: #FF9900;
    --hp-purple: #6366f1;
    --hp-green: #10b981;
    --hp-shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.08);
    --hp-shadow-md: 0 10px 40px rgba(0, 0, 0, 0.15);
    --hp-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Reset homepage/business heading styles to override global styles */
.homepage h1,
.homepage h2,
.homepage h3,
.business-page h1,
.business-page h2,
.business-page h3 {
    font-family: inherit;
    border-bottom: none;
    width: auto;
    text-align: inherit;
}

/* Section Backgrounds */
.hp-bg-gradient-cream {
    background: linear-gradient(135deg, var(--hp-bg-cream) 0%, #ffffff 100%);
}

.hp-bg-cream {
    background: var(--hp-bg-cream);
}

.hp-bg-orange {
    background: var(--hp-orange);
    color: white;
}

.hp-bg-gradient-light {
    background: linear-gradient(180deg, var(--hp-bg-light) 0%, #ffffff 100%);
}

/* Typography */
.hp-title {
    color: var(--hp-text-dark);
    line-height: 1.2;
}

.hp-lead {
    color: var(--hp-text-muted);
    font-size: 1.25rem;
    line-height: 1.6;
}

.hp-body-text {
    color: var(--hp-text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.hp-text-white-95 {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Buttons */
.hp-btn-primary {
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
}

.hp-btn-outline {
    font-weight: 600;
    border-width: 2px;
}

/* Hero Section */
.hp-hero-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--hp-shadow-lg);
}

/* Card Grid */
.hp-card-thumb {
    aspect-ratio: 3/4;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hp-card-thumb:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hp-card-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Magic Section */
.hp-magic-card {
    max-width: 300px;
    margin: 0 auto;
}

.hp-magic-preview {
    max-width: 200px;
    margin: 0 auto;
}

.hp-icon-lg {
    font-size: 2rem;
}

.hp-icon-arrow {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.hp-text-xs {
    font-size: 0.75rem;
}

/* How It Works Section */
.hp-timeline-connector {
    top: 25%;
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    border-top: 2px dashed var(--hp-orange);
    z-index: 0;
}

.hp-step-card {
    box-shadow: var(--hp-shadow-sm);
}

.hp-step-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 153, 0, 0.1);
}

.hp-step-number {
    width: 36px;
    height: 36px;
    background: var(--hp-orange);
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hp-step-custom-icon {
    width: 128px;
    height: 128px;
    object-fit: contain;
}

.hp-delivery-icon {
    font-size: 1.25rem;
}

.hp-info-btn {
    line-height: 1;
    padding: 0 !important;
    margin: 0 !important;
}

.hp-icon-sm {
    font-size: 0.875rem;
}

.hp-text-sm {
    font-size: 0.875rem;
}

.hp-text-xs {
    font-size: 0.75rem;
}

/* Format Cards */
.hp-format-card {
    min-height: 580px;
    box-shadow: var(--hp-shadow-md);
}

.hp-format-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hp-format-bg-physical {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%), 
                url('/images/homepage-bg-physical-card.jpg') center/cover;
}

.hp-format-bg-digital {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%), 
                url('/images/homepage-bg-ar-card.jpg') center/cover;
}

/* Social Proof */
.hp-brand-logo {
    filter: grayscale(100%);
    height: 40px;
    width: auto;
}

.hp-testimonial-card {
    box-shadow: var(--hp-shadow-sm);
}

.hp-testimonial-quote {
    line-height: 1.6;
    font-style: italic;
}

/* B2B Section */
.hp-check-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 153, 0, 0.12);
}

.hp-feature-text {
    color: var(--hp-text-muted);
    font-size: 1.05rem;
    line-height: 1.5;
}

.hp-dashboard-card {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.hp-dashboard-item {
    transition: box-shadow 0.2s ease;
}

.hp-dashboard-item-orange {
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.06) 0%, rgba(255, 153, 0, 0.02) 100%);
    border: 1px solid rgba(255, 153, 0, 0.1);
}

.hp-dashboard-item-orange:hover {
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.12);
}

.hp-dashboard-item-purple {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.06) 0%, rgba(99, 102, 241, 0.02) 100%);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.hp-dashboard-item-purple:hover {
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.12);
}

.hp-dashboard-item-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.06) 0%, rgba(16, 185, 129, 0.02) 100%);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.hp-dashboard-item-green:hover {
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.12);
}

.hp-icon-box {
    width: 48px;
    height: 48px;
}

.hp-icon-box-orange {
    background: linear-gradient(135deg, #FF9900 0%, #FFB347 100%);
}

.hp-icon-box-purple {
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
}

.hp-icon-box-green {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.hp-text-purple {
    color: #6366f1;
}

.hp-text-green {
    color: #10b981;
}

/* Decorative Elements */
.hp-decor-orange {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 153, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -40px;
    right: -40px;
    z-index: -1;
}

.hp-decor-purple {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -20px;
    left: -20px;
    z-index: -1;
}

/* Eco-friendly Modal */
.hp-modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: var(--hp-shadow-md);
}

.hp-modal-header {
    padding: 1.5rem 1.5rem 0.75rem;
}

.hp-modal-body {
    padding: 0.75rem 1.5rem 1.5rem;
}

.hp-modal-footer {
    padding: 0 1.5rem 1.5rem;
}

.hp-modal-title {
    font-size: 1.25rem;
}

.hp-eco-icon-box {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.08);
    border-radius: 12px;
}

.hp-eco-icon {
    color: #16a34a;
}

.hp-eco-title {
    font-size: 0.9375rem;
    color: var(--hp-text-dark);
}

.hp-eco-desc {
    font-size: 0.875rem;
    line-height: 1.5;
}

.hp-envelopes-row {
    padding: 0.25rem 0;
}

.hp-envelopes-icon {
    font-size: 0.875rem;
    flex-shrink: 0;
}

.hp-envelopes-text {
    font-size: 0.75rem;
    line-height: 1.4;
}

.hp-modal-close-btn {
    border-radius: 6px;
}

/* ==========================================================================
   Demo Section
   ========================================================================== */
.hp-demo-section {
    background: linear-gradient(135deg, #ff9900 0%, #ffb347 50%, #ff9900 100%);
    position: relative;
    overflow: hidden;
}

.hp-demo-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hp-demo-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hp-demo-container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 28px;
    padding-right: 28px;
    position: relative;
    z-index: 1;
}

@media (max-width: 575.98px) {
    .hp-demo-container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.hp-demo-subheading {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    line-height: 1.6;
}

.hp-demo-bullets {
    margin-bottom: 1.5rem;
}

.hp-demo-bullets li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 8px;
}

.hp-demo-bullets li:last-child {
    margin-bottom: 0;
}

.hp-demo-bullet-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #e68900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.hp-demo-bullet-icon svg {
    flex-shrink: 0;
}

.hp-demo-input-group {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.hp-demo-input {
    flex: 1;
    height: 54px;
    padding: 0 20px;
    border: none;
    font-size: 1rem;
    background: #fff;
}

.hp-demo-input:focus {
    outline: none;
    box-shadow: none;
}

.hp-demo-input.is-invalid {
    border: 1px solid #dc3545;
}

.hp-demo-btn {
    height: 54px;
    padding: 0 24px;
    background: #e68900;
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.hp-demo-btn:hover:not(:disabled) {
    background: #d97d00;
}

.hp-demo-btn:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

.hp-demo-error {
    color: #fff;
    font-size: 0.9rem;
}

.hp-demo-helper {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.hp-demo-recaptcha {
    min-height: 78px;
}

.hp-demo-success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.hp-demo-success-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.hp-demo-link {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0;
}

.hp-demo-link:hover {
    color: #fff;
}

.hp-demo-visual-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-demo-visual {
    position: relative;
}

.hp-demo-visual::before {
    content: "";
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.hp-demo-illustration {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

@media (max-width: 991.98px) {
    .hp-demo-illustration {
        max-width: 280px;
    }
}

/* ==========================================================================
   FAQ Category Tabs (text-style navigation, not pill buttons)
   ========================================================================== */

.faq-tabs,
.faq-categories,
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 14px;
  margin-bottom: 18px;
}

.faq-tabs button,
.faq-tabs a,
.faq-categories button,
.faq-categories a,
.category-tabs button,
.category-tabs a {
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 500;
  color: #6b6b6b;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  outline: none;
  box-shadow: none;
  transition: color 150ms ease;
}

.faq-tabs button:hover,
.faq-tabs a:hover,
.faq-categories button:hover,
.faq-categories a:hover,
.category-tabs button:hover,
.category-tabs a:hover {
  color: #4a3f6d;
}

.faq-tabs button[aria-current="page"],
.faq-tabs a[aria-current="page"],
.faq-tabs .active,
.faq-tabs .is-active,
.faq-categories button[aria-current="page"],
.faq-categories a[aria-current="page"],
.faq-categories .active,
.faq-categories .is-active,
.category-tabs button[aria-current="page"],
.category-tabs a[aria-current="page"],
.category-tabs .active,
.category-tabs .is-active {
  color: #4a3f6d;
  font-weight: 600;
}

.faq-tabs button[aria-current="page"]::after,
.faq-tabs a[aria-current="page"]::after,
.faq-tabs .active::after,
.faq-tabs .is-active::after,
.faq-categories button[aria-current="page"]::after,
.faq-categories a[aria-current="page"]::after,
.faq-categories .active::after,
.faq-categories .is-active::after,
.category-tabs button[aria-current="page"]::after,
.category-tabs a[aria-current="page"]::after,
.category-tabs .active::after,
.category-tabs .is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: #f5a623;
  border-radius: 2px;
}

.faq-tabs button:focus-visible,
.faq-tabs a:focus-visible,
.faq-categories button:focus-visible,
.faq-categories a:focus-visible,
.category-tabs button:focus-visible,
.category-tabs a:focus-visible {
  color: #4a3f6d;
}

.faq-tabs button:focus-visible::after,
.faq-tabs a:focus-visible::after,
.faq-categories button:focus-visible::after,
.faq-categories a:focus-visible::after,
.category-tabs button:focus-visible::after,
.category-tabs a:focus-visible::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: rgba(245, 166, 35, 0.6);
  border-radius: 2px;
}

/* Force override any existing pill/button styles */
.faq-tabs button,
.faq-tabs a,
.faq-categories button,
.faq-categories a,
.category-tabs button,
.category-tabs a {
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

/* FAQ category section headings: no orange underline */
.faq-category-section h2 {
  border-bottom: none;
}
