/* Direct Hero Section */
.direct-hero {
    background: url('/images/direct-bg-hero.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 40px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.direct-hero-right-wrapper {
    margin-top: -56px;
    display: flex;
    align-items: end;
    flex-direction: column;
    justify-content: end;
    width: 100%;
}

.direct-hero-content {
    max-width: 1140px;
    margin: 100px auto;
    width: 100%;
    padding: 0 20px;
}

.direct-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.direct-logo img {
    width: 182px;
    height: 60px;
}

.direct-logo-icon {
    font-size: 32px;
}

.direct-logo-text {
    display: flex;
    flex-direction: column;
}

.direct-logo-main {
    font-size: 32px;
    font-weight: 900;
    color: #000;
    letter-spacing: -0.5px;
}

.direct-logo-sub {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.direct-hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.display-none {
    display: none;
}

.cta-container {
    justify-self: end;
    display: flex;
    align-items: end;
    justify-content: end;
}

.direct-hero-left {
    max-width: 600px;
}

.direct-hero-title {
    color: #000;
    font-size: 42px;
    font-weight: 700;
}

.direct-hero-description {
    color: #000;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 24px;
}

.direct-hero-description p {
    margin-bottom: 16px;
}

.direct-hero-right {
    display: flex;
    justify-content: end;
}

.direct-select-card {
    background: white;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 348px;
    border-radius: 6px;
}

.direct-select-card:first-child {
    margin-bottom: 24px;
}

.direct-select-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-700);
    margin-top: 0;
    margin-bottom: 16px;
    text-align: center;
}

.direct-select-title-price {
    color: #0073c7;
}

.direct-select-description {
    color: #8E8E8E;
    text-align: center;
    font-family: Lato;
    font-size: 14px;
    font-weight: 700;
}

.direct-select-title-experiment {
    margin-bottom: 0;
}

.direct-artist-select {
    flex: 1;
    width: 100%;
    padding: 12px 40px 12px 52px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    cursor: pointer;
    transition: border-color 0.2s;
    appearance: none;
    display: flex;
    align-items: center;
}

.direct-artist-select:focus {
    outline: none;
    border-color: #0073c7;
}

.direct-artist-select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.direct-artist-select-wrapper:has(.direct-artist-select)::after {
    content: "\f078";
    font-family: "FontAwesome";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #6b7280;
    font-size: 14px;
    z-index: 1;
}

.direct-artist-select-avatar {
    position: absolute;
    left: 10px;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid #e5e7eb;
    box-sizing: border-box;
    pointer-events: none;
    flex-shrink: 0;
}

.direct-artist-buttons-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.direct-artist-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px 12px 52px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    width: 100%;
    text-align: left;
    height: 56px;
    box-sizing: border-box;
    position: relative;
}

.direct-artist-button:not(:last-child) {
    margin-bottom: 12px;
}

.direct-artist-button:hover {
    border-color: #0073c7;
    background: #f8fbff;
}

.direct-artist-button.active {
    border-color: #0073c7;
    background: #e8f2ff;
    color: #0073c7;
}

.direct-artist-button-avatar {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5e7eb;
    position: absolute;
    left: 10px;
}

.direct-artist-button.active .direct-artist-button-avatar {
    border-color: #0073c7;
}

.direct-artist-button-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.direct-artist-button i {
    pointer-events: none;
    color: #6b7280;
    font-size: 16px;
    margin-left: auto;
}

.direct-artist-button:hover i,
.direct-artist-button.active i {
    color: #0073c7;
}

.direct-launch-button {
    font-family: "Lato";
    width: 100%;
    padding: 16px 24px;
    background: #0073c7;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.direct-block {
    margin-top: 40px;
    background-color: #F9FAFB;
    padding: 20px 40px 40px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 6px;
}

.direct-block .fa-arrow-right:before {
    font-size: 13px;
}

.direct-block-button-container button {
    font-family: "Lato";
}

.direct-block-title {
    color: #000;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 24px;
}

.direct-features .faq-accordion {
    margin-top: 60px !important;
}

.direct-launch-button:hover:not(:disabled) {
    background: #005a9e;
}

.direct-launch-button:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.direct-empty-state {
    text-align: center;
    padding: 40px 20px;
}

.direct-empty-state p {
    margin-bottom: 20px;
    color: #666;
}

.direct-upload-button {
    display: inline-block;
    padding: 12px 24px;
    background: #0073c7;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.2s;
}

.direct-upload-button:visited {
    color: white;
}

.direct-upload-button:hover {
    background: #005a9e;
    color: white;
    text-decoration: none;
}

/* Features Section */
.direct-features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.direct-feature-text {
    flex: 1;
    max-width: 500px;
}

.direct-feature-icon {
    margin-bottom: 24px;
}

.direct-feature-icon img {
    width: 48px;
    height: 48px;
}

.direct-feature-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.direct-feature-description {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
}

.direct-feature-description p {
    margin-bottom: 12px;
}

.direct-feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.direct-feature-right__image {
    width: 465px;
    height: 490px;
    flex-shrink: 0;
    aspect-ratio: 93/95;
}

.direct-feature-right__tshirt-mug {
    display: flex;
    align-items: center;
    justify-content: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.direct-feature-right__tshirt_base {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
}

.direct-feature-right__tshirt_artwork {
    width: 167px;
    height: 167px;
    object-fit: contain;
    position: absolute;
    top: 110px;
    left: 150px;
}

.direct-feature-right__tshirt-bags .direct-feature-right__tshirt_artwork {
    top: 222px;
    left: 132px;
    width: 43%;
    height: 43%;
}

.direct-feature-right__tshirt-mug .direct-feature-right__tshirt_artwork {
    position: absolute;
    top: 100px;
    left: -6px;
    width: 68%;
    height: 64%;
    transform: none;
    z-index: 2;
}

.direct-launch-button-container {
    align-items: start;
    justify-content: start;
    display: flex;
}

/* Canvas-based mug artwork deformation */
@media (max-width: 768px) {
    .direct-feature-right__tshirt-mug .direct-feature-right__tshirt_artwork {
        top: 66px;
        left: 48px;
        width: 56%;
        height: 50%;
    }

    #artworkCanvas {
        top: 55px !important;
        left: -25px !important;
        width: 210px !important;
        height: 220px !important;
    }
}

.direct-feature-right__tshirt-women .direct-feature-right__tshirt_artwork {
    width: 169px;
    height: 169px;
    top: 109px;
    left: 150px;
}

.direct-offer-image {
    max-width: 450px;
}

.direct-offer-image img {
    width: 100%;
}

.direct-launch-button-container .direct-signin-button {
    width: 295px;
    font-family: "Lato";
}

.direct-launch-button-container .direct-signin-button i {
    font: 13px / 1 FontAwesome;
}

.direct-feature-right__tshirt {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.direct-action-wrapper {
    padding: 80px 20px;
    background: #f8fafc;
    padding: 0;
}

.direct-page-wrapper .faq-accordion {
    background-color: var(--gray-50);
    color: #000;
    border-radius: 12px;
    margin-top: 60px;
}

.direct-page-wrapper .faq-accordion .faq-item.open {
    color: #fff;
}

.direct-page-wrapper .fa-question:before {
    font-size: 24px;
}


.direct-page-wrapper .more-info {
    display: none;
}

.cta-container {
    color: var(--gray-800);
    width: 70%;
}

.direct-cta-icon-notify {
    padding: 6px;
    margin: 18px;
    background-color: rgba(226, 251, 233, 1);
    border-radius: 6px;
    display: inline-block;
    height: 26px;
    width: 26px;
}

.direct-cta-icon-notify img {
    height: 100%;
    width: 24px;
}

.direct-notifyed-container {
    display: none;
}

.direct-notify-container {
    display: block;
}

.direct-notify-button {
    font-family: "Lato";
}

.cta-content {
    position: relative;
    padding: 30px 36px;
    width: 100%;
    text-align: center;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
    min-height: var(--cta-min-height);
}

.btn-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.btn {
    margin: 0.375rem;
    padding: 1rem 1rem;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    border-radius: 0.375rem;
    transition: ease-in-out 300ms;
    width: 100%;
}

.btn-main {
    background-color: var(--blue--600);
    color: #fff;
}

.btn-secondary {
    border: none;
    color: var(--blue--600);
    background: #fff;
    width: 100%;
}

.dk-direct-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dk-direct-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.dk-direct-button-container {
    margin-top: 24px;
}

.dk-direct-button {
    padding: 12px 24px;
    background: var(--blue-500);
    border-radius: var(--rounded-md);
    color: white;
    font-size: 14px;
    font-weight: 600;
    display: block;
    text-decoration: none;
    text-align: center;
}

.dk-direct-button:hover {
    background: var(--blue-600);
    color: white;
    text-decoration: none;
}

.dk-direct-button:visited {
    color: white;
}

.dk-products-cards {
    color: rgba(0, 0, 0, 1);
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.dk-products-card {
    box-sizing: border-box;
    display: flex;
    max-width: 846px;
    max-height: 403px;
    width: 100%;
    border-radius: 6px;
    border: 1px solid #DDD;
    background: #FFF;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.06);
}

.dk-products-header {
    margin: 80px auto 60px;
    position: relative;
    max-width: 846px;
}

.dk-products-title {
    color: #111827;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 0;
}

.dk-products-description {
    color: #747A87;
    text-align: center;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.dk-products-description p {
    margin: 0;
}

.dk-products-card-title {
    text-align: left;
    margin-bottom: 24px;
}

.dk-products-card-price {
    color: #171717;
    font-family: Lato;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    text-align: center;
    margin-top: 24px;
    line-height: 80%;
}

.dk-products-card-price-annual {
    color: #6C7280;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.dk-products-card-merch-text-subsequent {
    margin-top: 40px;
    color: #111827;
    text-align: center;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.dk-products-avatar {
    width: 54px;
    height: 54px;
}

.dk-products-card-user {
    display: flex;
    align-items: center;
}

.dk-products-user-name {
    font-size: 20px;
    font-weight: 700;
    margin-left: 12px;
}

.dk-products-card-merch {
    display: flex;
    font-size: 24px;
    font-weight: 700;
    flex-direction: column;
    box-sizing: border-box;
    padding: 26px;
}

.dk-products-card-merch-text {
    font-size: 16px;
    line-height: 46px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    color: #111827;
}

.dk-products-card-merch-text li:first-child {
    margin-top: 40px;
}

.dk-products-card-merch-text li {
    list-style: none;
    position: relative;
    padding-left: 30px;
    line-height: 140%;
    margin-bottom: 12px;
}

.dk-products-card-merch-text li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 17px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='17' viewBox='0 0 15 17' fill='none'%3E%3Cg clip-path='url(%23clip0_2590_7397)'%3E%3Cpath d='M14.6649 2.27447C15.0265 2.53014 15.1069 3.02818 14.8491 3.38678L6.00977 15.6055C5.87249 15.7948 5.6582 15.9176 5.42383 15.9342C5.18945 15.9508 4.95508 15.8712 4.78767 15.7051L0.234096 11.1895C-0.0806362 10.8774 -0.0806362 10.3727 0.234096 10.0639C0.548828 9.75514 1.05776 9.75182 1.36914 10.0639L5.25642 13.9122L13.5432 2.45709C13.8011 2.09849 14.3033 2.01881 14.6649 2.27447Z' fill='%233D9E70'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2590_7397'%3E%3Crect width='15' height='17' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.dk-products-card-content {
    width: 100%;
    display: flex;
}

.dk-products-card-content>div {
    width: 50%;
    flex: 1 1 50%;
    box-sizing: border-box;
    max-width: 50%;
    overflow: hidden;
}

.dk_direct_banner__image {
    position: relative;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background: rgba(242, 242, 242, 0.50);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dk_direct_banner__tshirt {
    width: 320px;
    height: 320px;
    position: relative;
    overflow: hidden;
}

.dk_direct_banner__tshirt_base {
    width: 320px;
    height: 320px;
    object-fit: contain;
}

.dk_direct_banner__tshirt_artwork {
    width: 103px;
    position: absolute;
    border-radius: 2px;
    left: 108px;
    top: 91px;
}

.dk-products-button-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.dk-products-button {
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-top: 16px;
    cursor: pointer;
    display: flex;
    padding: 18px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 6px;
    background: #0273C7;
    border: none;
    width: 100%;
    transition: background-color 0.2s ease;
}

.dk-products-button:hover:not(:disabled) {
    background: #005a9e;
}

.dk-products-button:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.btn-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.direct-cta-title {
    color: #101827;
    text-align: center;
    font-family: Lato;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin: 0;
}

.direct-cta-description {
    color: #6C7280;
    text-align: center;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

/* Direct Subscribe Popup Styles */
.direct-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.direct-popup-content {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    width: 372px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.direct-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.direct-popup-close:hover {
    color: #000;
}

.direct-popup-icon {
    width: 64px;
    height: 64px;
    background-color: #E3F2FD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #1976D2;
}

.direct-popup-icon svg {
    width: 32px;
    height: 32px;
}

.direct-popup-title {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-align: center;
    line-height: 1.3;
    width: 83%;
    margin: 16px auto;
}

.billed-to-card {
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.direct-popup-price {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin: 0 0 32px 0;
}

.direct-popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.direct-popup-button {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.direct-popup-button-primary {
    background-color: #1976D2;
    color: #fff;
}

.direct-popup-button-primary:hover {
    background-color: #1565C0;
}

.direct-popup-button-secondary {
    background-color: #f5f5f5;
    color: #666;
}

.direct-popup-button-secondary:hover {
    background-color: #e0e0e0;
}

/* Treatment confirmation modal (Confirm your subscription) — Figma 6274-33756 */
.direct-popup-content-confirm {
    width: 100%;
    max-width: 371px;
    padding: 24px;
}

.direct-popup-content-confirm .direct-popup-close {
    top: 24px;
    right: 24px;
}

.direct-popup-confirm-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
}

.direct-popup-confirm-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.direct-popup-content-confirm .direct-popup-confirm-icon {
    width: 60px;
    height: 60px;
    background-color: #F0F9FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: #1976D2;
}

.direct-popup-content-confirm .direct-popup-confirm-icon svg {
    width: 20px;
    height: 18px;
}

.direct-popup-content-confirm .direct-popup-confirm-title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin: 0;
    line-height: 1.3;
}

.direct-popup-confirm-summary {
    border: 1px solid #DDD;
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box;
}

.direct-popup-confirm-summary-top {
    padding: 12px;
}

.direct-popup-confirm-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.direct-popup-confirm-label {
    font-size: 16px;
    font-weight: 500;
    color: #111827;
}

.direct-popup-confirm-amount {
    font-size: 16px;
    font-weight: 500;
    color: #111827;
}

.direct-popup-confirm-subtext {
    font-size: 14px;
    color: #747A87;
    margin: 0;
    margin-top: 4px;
}

.direct-popup-confirm-summary-divider {
    border-top: 1px solid #DDD;
}

.direct-popup-confirm-summary-bottom {
    padding: 12px;
}

.direct-popup-confirm-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.direct-popup-confirm-total-label {
    font-size: 16px;
    font-weight: 400;
    color: #111827;
}

.direct-popup-confirm-total-amount {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
}

.direct-popup-content-confirm .direct-popup-buttons {
    margin: 0;
}

.direct-popup-confirm-cta {
    width: 100%;
    min-height: 51px;
    font-size: 15px;
    font-weight: 700;
    background-color: #0073c7;
}

.direct-popup-confirm-cta:hover {
    background-color: #0062ad;
}

.direct-popup-confirm-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.direct-popup-confirm-card-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.direct-popup-confirm-card-info .payment-method-icons {
    height: 18px;
    width: auto;
    order: -1;
}

.direct-popup-confirm-card-text {
    font-size: 14px;
    font-weight: 400;
    color: #111827;
}

.direct-popup-confirm-change {
    font-size: 14px;
    font-weight: 400;
    color: #0073c7;
    text-decoration: none;
}

.direct-popup-confirm-change:hover {
    text-decoration: underline;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



/* Treatment variant: screenshot layout (dk-direct-signup-test) */
.dk-products-treatment .dk-products-card {
    max-height: none;
}

.dk-products-treatment .dk-products-card-content>div {
    overflow: visible;
}

.dk-products-treatment .dk-products-card-user.dk-products-treatment-user {
    align-items: center;
    gap: 12px;
}

.dk-products-treatment-user-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dk-products-treatment-name {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.2;
}

.dk-products-treatment-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #6C7280;
    line-height: 1.2;
}

.dk-products-treatment-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 20px;
    width: 100%;
}

.dk-products-treatment-price-label {
    font-size: 16px;
    font-weight: 400;
    color: #111827;
}

.dk-products-treatment-price-amount {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.dk-products-treatment-price-subtext {
    font-size: 14px;
    color: #6C7280;
    margin: 8px 0 0 0;
    font-weight: 400;
}

.dk-products-treatment .dk-products-treatment-valueprops {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E5E7EB;
    margin-bottom: 0;
    width: 100%;
}

.dk-products-treatment .dk-products-treatment-valueprops li:first-child {
    margin-top: 0;
}

.dk-products-treatment .dk-products-treatment-valueprops li {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 30px;
    margin-bottom: 16px;
}

.dk-products-treatment .dk-products-treatment-valueprops li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 15px;
    height: 17px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='17' viewBox='0 0 15 17' fill='none'%3E%3Cg clip-path='url(%23clip0_2590_7397)'%3E%3Cpath d='M14.6649 2.27447C15.0265 2.53014 15.1069 3.02818 14.8491 3.38678L6.00977 15.6055C5.87249 15.7948 5.6582 15.9176 5.42383 15.9342C5.18945 15.9508 4.95508 15.8712 4.78767 15.7051L0.234096 11.1895C-0.0806362 10.8774 -0.0806362 10.3727 0.234096 10.0639C0.548828 9.75514 1.05776 9.75182 1.36914 10.0639L5.25642 13.9122L13.5432 2.45709C13.8011 2.09849 14.3033 2.01881 14.6649 2.27447Z' fill='%233D9E70'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2590_7397'%3E%3Crect width='15' height='17' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.dk-products-treatment-valueprop-title {
    font-size: 16px;
    font-weight: 500;
    color: #111827;
}

.dk-products-treatment-valueprop-desc {
    font-size: 14px;
    font-weight: 400;
    color: #6C7280;
}

.dk-products-back-button {
    position: absolute;
    color: #747A87;
    font-family: Lato;
    font-size: 14px;
    font-weight: 400;
    background: none;
    border: none;
    left: 0;
    top: 16px;
    cursor: pointer;
}

/* Treatment FAQ: Before you launch — one card as on design */
.dk-faq-before-launch {
    margin-top: 60px;
    margin-bottom: 24px;
    background: #F3F4F6;
    border-radius: 8px;
    padding: 36px;
}

.dk-faq-before-launch__title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.dk-faq-before-launch__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dk-faq-item {
    background: #FFF;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.dk-faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 400;
    color: #111827;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    gap: 12px;
}

.dk-faq-item__question-text {
    flex: 1;
}

.dk-faq-item__chevron {
    flex-shrink: 0;
    color: #4B5563;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.dk-faq-item__chevron svg {
    width: 20px;
    height: 20px;
}

.dk-faq-item--open .dk-faq-item__chevron {
    transform: rotate(180deg);
}

.dk-faq-item__answer {
    padding: 0 16px 14px 16px;
    font-size: 14px;
    font-weight: 400;
    color: #374151;
    line-height: 1.5;
    border-top: 1px solid #E5E7EB;
}

.dk-faq-item__answer[hidden] {
    display: none;
}

.dk-faq-item:not(.dk-faq-item--open) .dk-faq-item__answer {
    border-top: none;
}

.dk-faq-item--open .dk-faq-item__answer {
    padding-top: 12px;
}

/* .dk-products-wrapper.dk-products-treatment {
    max-width: 846px;
    margin-left: auto;
    margin-right: auto;
} */

.dk-products-treatment-faq {
    max-width: 846px;
    margin: 0 auto;
}

.dk-products-card-price-total-experiment {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.dk-products-card-price-total-experiment-amount {
    color: #0073c7;
}

.payment-method-change-tag {
    font-size: 14px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .direct-hero-right {
        justify-content: center;
    }

    .direct-hero-right-wrapper {
        margin-top: 0;
        align-items: center;
    }

    .dk-products-wrapper {
        margin: 0 16px;
    }

    .dk-faq-before-launch {
        margin-left: 16px;
        margin-right: 16px;
    }

    .dk-products-card-merch {
        flex-direction: column;
        align-items: center;
        padding: 24px;
    }

    .dk-faq-before-launch {
        padding: 24px;
    }

    .dk-products-header {
        margin-top: 46px;
    }

    .dk-products-title {
        font-size: 24px;
    }

    .dk-products-description {
        color: #747A87;
        text-align: center;
        font-size: 14px;
    }

    .dk-products-card-content {
        flex-direction: column;
    }

    .dk-products-card-content>div {
        max-width: 100%;
        width: 100%;
        align-items: start;
    }

    .dk-products-card {
        max-height: 100%;
    }

    .dk-products-avatar {
        width: 38px;
        height: 38px;
    }

    .dk-products-treatment .dk-products-avatar {
        width: 54px;
        height: 54px;
    }

    .dk-products-user-name {
        font-size: 20px;
    }

    .dk-products-card-merch-text li:first-child {
        margin-top: 20px;
    }

    .dk-products-card-merch-text-subsequent {
        margin-top: 20px;
    }

    .dk_direct_banner__tshirt_artwork {
        width: 103px;
        height: auto;
        border-radius: 2px;
        left: 110px;
        top: 92px;
    }

    .dk_direct_banner__image {
        padding-top: 40px;
    }

    .dk-products-card-price {
        margin: 20px auto 0;
    }

    .dk-products-card-merch-text li {
        font-size: 14px;
    }

    .dk-products-card-price {
        font-size: 26px;
    }

    .dk-products-card-price-annual {
        font-size: 14px;
    }

    .direct-logo {
        margin-top: 18px;
    }

    .direct-logo img {
        width: 134px;
        height: 42px;
    }

    .direct-logo-main {
        font-size: 28px;
    }

    .direct-hero-main {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .direct-hero-content {
        margin: 40px auto;
        padding: 0 20px;
    }

    .direct-features-container {
        flex-direction: column;
        gap: 40px;
        padding: 20px 20px;
    }

    .direct-hero {
        padding-bottom: 0px;
    }

    .direct-feature-right__tshirt_artwork {
        top: 42px;
        left: 96px;
        width: 37%;
    }

    .direct-feature-right__tshirt-bags .direct-feature-right__tshirt_artwork {
        top: 144px;
        left: 85px;
    }

    .direct-feature-right__tshirt-women .direct-feature-right__tshirt_artwork {
        top: 42px;
        left: 96px;
        width: 38%;
    }

    .direct-action-wrapper {
        margin-top: 50px;
    }

    .direct-feature-text {
        order: 1;
        max-width: 100%;
        text-align: center;
    }

    .direct-feature-image {
        order: 2;
    }

    .direct-feature-right__image {
        width: 300px;
        height: 320px;
    }

    .direct-action-wrapper {
        padding: 40px 20px;
    }

    .direct-action-title h2 {
        font-size: 28px;
    }

    .direct-features-container {
        grid-template-columns: 1fr;
    }

    .direct-select-card {
        padding: 24px;
    }

    .direct-features {
        padding: 10px 16px;
    }

    .direct-more-features {
        padding: 60px 16px;
    }

    .direct-products-wrapper {
        padding: 40px 16px;
    }

    .direct-feature-description {
        font-size: 18px;
        text-align: left;
    }

    .direct-products-card {
        padding: 30px 20px;
    }

    .direct-products-tshirt-container {
        width: 150px;
        height: 120px;
    }

    .direct-products-button {
        min-width: 250px;
        padding: 14px 24px;
        font-size: 16px;
    }

    .direct-feature-icon img {
        height: 68px;
        width: auto;
    }

    .cta-container {
        width: 100%;
        justify-content: center;
    }

    .direct-popup-content {
        width: 372px;
    }

    .direct-popup-confirm-treatment .direct-popup-content {
        margin-left: 16px;
        margin-right: 16px;
        max-width: calc(100% - 32px);
    }

    .direct-launch-button-container {
        align-items: center;
        justify-content: center;
        display: flex;
    }

    .dk-products-back-button {
        display: none;
    }

}

@media (max-width: 480px) {

    .dk_direct_banner__tshirt_artwork {
        width: 102px;
        height: auto;
        left: 110px;
        top: 92px;
    }

    .dk_direct_banner__image {
        padding-top: 40px;
    }

    .direct-select-card {
        padding: 20px;
    }

    .direct-launch-button {
        padding: 14px 20px;
        font-size: 14px;
    }

    .direct-products-wrapper {
        padding: 20px 16px;
    }

    .direct-products-card {
        padding: 24px 16px;
    }

    .direct-products-button {
        min-width: 200px;
        padding: 12px 20px;
        font-size: 14px;
    }

    .direct-hero-title {
        font-size: 34px;
    }

    .direct-hero-description {
        font-family: Lato;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 126%;
    }

    .direct-launch-button-container {
        align-items: center;
        justify-content: center;
        display: flex;
    }

    .direct-hero-content {
        margin: 20px auto;
        padding: 0 16px;
    }

    .direct-feature-title {
        font-size: 24px;
    }

    .direct-feature-description {
        font-size: 16px;
    }

    .direct-offer-image {
        width: 100%;
    }

    .direct-launch-button-container .direct-signin-button {
        width: 100%;
    }
}