@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');
:root {
    --blue: #3c4eb5;
    --blue-dark: #33429a;
    --yellow: #ffd24d;
    --yellow-btn: #fdd039;
    --green: #4caf50;
    --green-dark: #43a047;
    --green-help: #4caf50;
    --whatsapp: #25d366;
    --red: #e0203a;
    --navy: #2b3a8f;
    --gray-bg: #f1f1f1;
    --text: #333;
    --muted: #6b7280;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', Arial, sans-serif; color: var(--text); background: #fff; line-height: 1.6; font-size: 16px; overflow-x: hidden; }
.pt-container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
.pt-header { background: var(--blue); padding: 14px 0; }
.pt-header .pt-container { display: flex; align-items: center; justify-content: space-between; }
.pt-logo { font-weight: 800; font-size: 30px; color: #fff; letter-spacing: -1px; display: flex; align-items: center; }
.pt-logo-img { width: 220px; }
.pt-logo-icon { color: var(--yellow); margin: 0 2px; }
.pt-phone-btn {
    background: var(--yellow); color: #1a1a1a; font-weight: 700; font-size: 15px;
    padding: 9px 16px; border-radius: 8px; display: inline-flex; align-items: center; gap: 7px;
}
.pt-hero { background: var(--gray-bg); padding: 26px 0 36px; }
.pt-hero-title {
    text-align: center; color: var(--navy); font-weight: 800; font-size: 34px;
    line-height: 1.25; margin-bottom: 22px;
}
.pt-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }
.pt-gallery.swiper { border-radius: 6px; width: 100%; max-width: 100%; overflow: hidden; }
.pt-gallery .swiper-slide { width: 100% !important; }
.pt-gallery .swiper-slide img {
    width: 100%; height: auto; display: block;
}
.pt-gallery-empty {
    width: 100%; aspect-ratio: 1/1;
    background: linear-gradient(135deg, #e9ecf5, #dfe3f0); border-radius: 6px;
}
.pt-gallery .swiper-button-prev,
.pt-gallery .swiper-button-next {
    width: 34px; height: 34px; background: rgba(255,255,255,.85);
    border-radius: 50%; box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.pt-gallery .swiper-button-prev::after,
.pt-gallery .swiper-button-next::after { font-size: 14px; color: var(--blue); font-weight: 700; }
.pt-gallery-thumbs { margin-top: 10px; }
.pt-gallery-thumbs .swiper-slide {
    width: 60px !important; height: 60px; cursor: pointer; opacity: .5; transition: .15s;
    border: 2px solid transparent; border-radius: 4px; overflow: hidden;
}
.pt-gallery-thumbs .swiper-slide-thumb-active { border-color: var(--blue); opacity: 1; }
.pt-gallery-thumbs .swiper-slide img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.pt-gallery-caption {
    text-align: center; font-size: 16px; color: var(--muted); margin-top: 10px; letter-spacing: .3px;
}
.pt-rating-bar {
    display: flex; border-radius: 6px; overflow: hidden; font-size: 15px;
    font-weight: 600; margin-bottom: 14px;
}
.pt-rating-score {
    background: var(--blue); color: #fff; padding: 7px 11px; display: flex;
    align-items: center; gap: 5px; white-space: nowrap;
}
.pt-rating-link {
    background: #e2e5ee; color: #444; padding: 7px 12px; flex: 1;
    display: flex; align-items: center;
}
.pt-bullets { list-style: none; }
.pt-bullets li {
    display: flex; gap: 9px; align-items: flex-start; padding: 9px 4px;
    border-bottom: 1px solid #e2e2e2; font-size: 20px;
}
.pt-bullets li:last-child { border-bottom: none; }
.pt-bullet-check { color: var(--green); font-size: 22px; flex-shrink: 0; }
.pt-bullet-text b { color: #222; }
.pt-price-row { display: flex; align-items: center; gap: 14px; margin: 18px 0 16px; flex-wrap: wrap; }
.pt-price-now { color: var(--red); font-weight: 800; font-size: 44px; }
.pt-price-old { color: #9aa0a6; text-decoration: line-through; font-size: 44px; font-weight: 300; }
.pt-discount-box { margin-left: auto; background: #e7e9f0; border-radius: 5px; text-align: center; padding: 5px 12px; }
.pt-discount-label { font-size: 16px; font-weight: 700; color: #444; letter-spacing: .5px; display: block; }
.pt-discount-value {
    font-size: 13px; font-weight: 700; color: var(--red); background: #fff;
    border-radius: 3px; padding: 1px 6px; margin-top: 2px; display: inline-block;
}
.pt-btn { display: block; width: 100%; text-align: center; border: none; cursor: pointer; font-family: inherit; }
.pt-btn-order {
    background: var(--green); color: #fff; font-weight: 700; font-size: 24px; padding: 10px;
    border-radius: 8px; box-shadow: 0 3px 0 var(--green-dark); transition: .15s;
}
.pt-btn-order:hover { background: var(--green-dark); }
.pt-help-box { background: #e7e9f0; border-radius: 8px; margin-top: 14px; overflow: hidden; }
.pt-help-title { text-align: center; font-size: 15px; color: #555; padding: 8px; }
.pt-help-cells { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: #d4d8e4; }
.pt-help-cell {
    background: #fff; display: flex; align-items: center; gap: 10px; padding: 11px;
    color: inherit;
}
.pt-help-icon {
    width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; color: #fff; font-size: 16px; flex-shrink: 0;
}
.pt-help-icon-tel { background: var(--red); }
.pt-help-icon-wa { background: var(--whatsapp); }
.pt-help-cell small { display: block; font-size: 9px; color: #888; letter-spacing: .5px; font-weight: 600; }
.pt-help-cell b { font-size: 15px; color: #222; }
.pt-blue-sec { background: var(--blue); color: #fff; padding: 40px 0; }
.pt-blue-sec-title { text-align: center; font-weight: 800; font-size: 38px; margin-bottom: 20px; }
.pt-blue-sec-desc { font-size: 20px; line-height: 1.7; font-weight: 300; }
.pt-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 30px; align-items: start; }
.pt-video-wrap {
    aspect-ratio: 1/1; background: #000; border-radius: 4px; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.pt-video-wrap iframe { width: 100%; height: 100%; border: none; }
.pt-video-placeholder { color: #666; font-size: 15px; }
.pt-video-img { width: 100%; border-radius: 4px; }
.pt-why-title { font-weight: 800; font-size: 24px; margin-bottom: 14px; }
.pt-why-desc { font-size: 20px; line-height: 1.7; }
.pt-why-desc b { color: #fff; }
.pt-why-list { list-style: none; margin: 18px 0; }
.pt-why-list li { display: flex; gap: 9px; align-items: center; font-size: 20px; padding: 6px 0; }
.pt-why-check { font-size: 16px; opacity: .9; }
.pt-btn-yellow {
    background: var(--yellow-btn); color: #222; font-weight: 700; font-size: 24px; padding: 10px;
    border-radius: 8px; box-shadow: 0 3px 0 #e0b62f; transition: .15s;
}
.pt-btn-yellow:hover { filter: brightness(1.04); }
.pt-features { padding: 40px 0; background: #fff; }
.pt-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.pt-feature-img {
    border-radius: 4px; margin-bottom: 16px; object-fit: cover;
    background: linear-gradient(135deg, #e9ecf5, #dfe3f0); width: 100%; display: block;
}
.pt-feature-title { color: var(--navy); font-weight: 700; font-size: 26px; margin-bottom: 10px; }
.pt-feature-desc { color: #555; font-size: 20px; line-height: 1.7; }
.pt-yellow-sec { background: var(--yellow); padding: 42px 0; text-align: center; }
.pt-yellow-title { font-weight: 800; font-size: 38px; color: #1a1a1a; margin-bottom: 14px; }
.pt-yellow-sub { margin: 0 auto 30px; font-size: 20px; color: #3a3a2a; line-height: 1.7; }
.pt-guar-slider { position: relative; }
.pt-guar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pt-guar-arrow-btn { display: none; }
.pt-guar-dots { display: none; }
.pt-guar-card { border: 2px dashed #6b6230; border-radius: 6px; padding: 26px 14px; }
.pt-guar-icon { font-size: 40px; margin: 10px 100px; }
.pt-guar-card-title { font-weight: 800; font-size: 20px; letter-spacing: .3px; margin-bottom: 8px; color: #1a1a1a; }
.pt-guar-card-desc { font-size: 20px; color: #3a3a2a; line-height: 1.5; }
.pt-btn-black {
    display: inline-block; background: #111; color: #fff; font-weight: 700; border-radius: 8px;
    padding: 14px 94px; margin-top: 32px; cursor: pointer; border: none; font-family: inherit;
    font-size: 20px;
}
.pt-btn-black small { display: block; font-weight: 400; font-size: 13px; opacity: .8; margin-top: 2px; }
.pt-order-sec { background: var(--blue); color: #fff; padding: 42px 0; }
.pt-order-sec .pt-container { max-width: 900px; }
.pt-order-title { text-align: center; font-weight: 800; font-size: 38px; margin-bottom: 6px; }
.pt-order-subtitle { text-align: center; font-size: 20px; opacity: .92; margin-bottom: 24px; }
.pt-qty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 26px; max-width: 100%; overflow: hidden; }
.pt-qty-card {
    background: #fff; border: 3px solid #cdd3e8; border-radius: 10px; padding: 14px 12px;
    cursor: pointer; position: relative; text-align: center; transition: .15s;
}
.pt-qty-card.active {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(76,175,80,0.15), 0 4px 15px rgba(0,0,0,0.1);
}
.pt-qty-header {
    padding: 12px 10px 8px;
    text-align: center;
}
.pt-qty-title {
    color: var(--blue); font-weight: 800; font-size: 20px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.pt-qty-img {
    width: 80%; margin: 0 auto; display: block;
    aspect-ratio: 1/1; object-fit: contain;
}
.pt-qty-price {
    text-align: center; font-weight: 900; font-size: 28px;
    color: var(--blue); line-height: 1; padding: 6px 0 2px; margin-top: 20px;
}
.pt-qty-price small { font-size: 16px; font-weight: 700; }
.pt-qty-perunit {
    text-align: center; font-size: 13px; color: #888;
    margin-bottom: 6px;
}
.pt-qty-save {
    display: none;
}
.pt-qty-btn {
    margin: 0 10px 12px; padding: 10px;
    background: #bbb; color: #fff;
    text-align: center; font-weight: 700; font-size: 16px;
    border-radius: 6px; letter-spacing: 0.5px;
    transition: all 0.2s;
}
.pt-qty-card:hover .pt-qty-btn { background: #999; }
.pt-qty-card.active .pt-qty-btn { background: var(--green); box-shadow: 0 2px 0 #2e7d32; }
.pt-qty-ribbon {
    position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    background: var(--yellow); color: #222;
    font-size: 9px; font-weight: 800; padding: 4px 14px;
    border-radius: 0 0 8px 8px; letter-spacing: 0.5px;
    white-space: nowrap; z-index: 2;
}
.pt-qty-popular { border-color: var(--blue); border-width: 3px; }
.pt-order-form { display: flex; flex-direction: column; gap: 12px; }
.pt-fld { position: relative; }
.pt-fld-icon { position: absolute; left: 14px; top: 0; bottom: 0; display: flex; align-items: center; color: #9aa0b5; font-size: 15px; z-index: 1; pointer-events: none; }
.pt-fld-invalid .pt-fld-icon { bottom: auto; height: 48px; margin-top: 5px; }
.pt-fld input {
    width: 100%; border: none; border-radius: 8px; padding: 15px 14px 15px 40px;
    font-size: 16px; font-family: inherit; color: #333;
}
.pt-fld input::placeholder { color: #9aa0b5; }
/* Select2 — input field inside form */
.pt-fld .select2-container { width: 100% !important; }
.pt-fld .select2-container--default .select2-selection--single {
    border: none; border-radius: 8px; height: 48px; padding: 10px 14px 10px 40px;
    font-size: 16px; font-family: inherit; color: #333; background: #fff;
}
.pt-fld .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 28px; padding-left: 0; color: #333;
}
.pt-fld .select2-container--default .select2-selection--single .select2-selection__placeholder { color: #9aa0b5; }
.pt-fld .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px; right: 10px;
}
.pt-fld .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #9aa0b5 transparent transparent transparent;
}
.pt-fld .select2-container--default .select2-selection--single .select2-selection__clear {
    font-size: 18px; color: #9aa0b5; margin-right: 4px;
}

/* Select2 — bordered variant (order-edit, standalone pages) */
.pt-fld-bordered .select2-container { width: 100% !important; }
.pt-fld-bordered .select2-container--default .select2-selection--single {
    border: 2px solid #e2e8f0; border-radius: 10px; height: 48px; padding: 10px 14px;
    font-size: 15px; font-family: 'Poppins', sans-serif; color: #333; background: #fff;
    transition: border-color 0.2s;
}
.pt-fld-bordered .select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--cta, #ff6b00);
}
.pt-fld-bordered .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 28px; padding-left: 0; color: #333;
}
.pt-fld-bordered .select2-container--default .select2-selection--single .select2-selection__placeholder { color: #9aa0b5; }
.pt-fld-bordered .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px; right: 10px;
}
.pt-fld-bordered .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #9aa0b5 transparent transparent transparent;
}
.pt-fld-bordered .select2-container--default .select2-selection--single .select2-selection__clear {
    font-size: 18px; color: #9aa0b5; margin-right: 4px;
}

/* Select2 — dropdown panel */
.select2-dropdown {
    border: none; border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden; margin-top: 4px;
}
.select2-search--dropdown {
    padding: 12px 12px 8px;
}
.select2-search--dropdown .select2-search__field {
    border: 2px solid #e2e8f0; border-radius: 8px; padding: 10px 14px;
    font-size: 16px; font-family: inherit; outline: none;
    transition: border-color 0.2s;
}
.select2-search--dropdown .select2-search__field:focus {
    border-color: var(--cta, #ff6b00); box-shadow: 0 0 0 3px rgba(255,107,0,0.12);
}
.select2-results__options {
    max-height: 260px; padding: 4px 6px;
}
.select2-container--default .select2-results__option {
    padding: 10px 14px; border-radius: 6px; margin: 1px 0;
    font-size: 14px; color: #334155; transition: all 0.15s;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: var(--cta, #ff6b00); color: #fff; border-radius: 6px;
}
.select2-container--default .select2-results__option[aria-selected=true] {
    background: #fff7ed; color: var(--cta, #ff6b00); font-weight: 600;
}
.select2-container--default .select2-results__option[aria-selected=true].select2-results__option--highlighted {
    background: var(--cta, #ff6b00); color: #fff;
}
.select2-results__message {
    padding: 14px; font-size: 13px; color: #94a3b8; text-align: center;
}
.pt-extras-sec {
    background: var(--blue); border-radius: 10px;
}
.pt-extras-title {
    text-align: center; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 18px;
}
.pt-extras-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pt-extra-card {
    background: #fff; border-radius: 10px; padding: 14px; color: #333; border: 5px solid #5f75c7; cursor: pointer;
}
.pt-extra-card-inner { display: flex; gap: 14px; align-items: center; }
.pt-extra-img { width: 56px; min-width: 56px; height: 56px; object-fit: contain; border-radius: 6px; }
.pt-extra-info { flex: 1; }
.pt-extra-name { font-weight: 800; font-size: 15px; color: var(--navy); text-transform: uppercase; margin-bottom: 4px; }
.pt-extra-desc { font-size: 13px; color: #555; line-height: 1.45; margin-bottom: 5px; }
.pt-extra-bottom { display: flex; align-items: center; justify-content: space-between; }
.pt-extra-price { font-weight: 700; font-size: 15px; color: var(--red); }
.pt-extra-btn {
    background: var(--green); color: #fff; border: none; font-family: inherit;
    font-size: 12px; font-weight: 500; padding: 2px 6px; border-radius: 6px; cursor: pointer;
}
.pt-extra-btn:hover { background: var(--green-dark); }
.pt-extra-card.added { border-color: var(--green); }
.pt-extra-card.added .pt-extra-btn { background: var(--red); }
.pt-summary { border-radius: 6px; overflow: hidden; font-size: 15px; border: 2px solid #5f75c7; }
.pt-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: transparent;
    cursor: pointer;
    user-select: none;
}
.pt-summary-label {
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    color: #92c0ff;
}
.pt-summary-arrow {
    font-size: 11px;
    transition: transform 0.25s;
    margin-left: auto;
    color: #92c0ff;
}
.pt-summary-total-bar { display: flex; justify-content: space-between; padding: 12px 16px; background: #5f75c7; color: #fff; font-weight: 800; font-size: 16px; }
.pt-summary-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.pt-summary-details.open {
    max-height: 300px;
}
.pt-summary-row { display: flex; justify-content: space-between; padding: 11px 16px; background: transparent; color: #fff; border-bottom: 1px solid #5f75c7; }
.pt-summary-row.pt-summary-row-last { border-bottom: none; }
.pt-btn-submit {
    background: var(--yellow-btn); color: #1a1a1a; font-weight: 800; font-size: 24px; padding: 10px;
    border-radius: 8px; margin-top: 18px; box-shadow: 0 3px 0 #e0b62f;
}
.pt-btn-submit small { display: block; font-weight: 400; font-size: 16px; margin-top: 2px; }
.pt-btn-submit:disabled { background: #9ca3af; color: #fff; cursor: not-allowed; box-shadow: none; }
.pt-separate-checkout { text-align: center; padding: 20px 0; }
.pt-sep-price { margin-bottom: 16px; }
.pt-sep-old { font-size: 22px; text-decoration: line-through; opacity: .6; margin-right: 12px; }
.pt-sep-current { font-size: 36px; font-weight: 800; }
.pt-sep-btn { display: block; max-width: 500px; margin: 0 auto; text-decoration: none; text-align: center; }
.ck-wrap { max-width: 640px; margin: 0 auto; padding: 0 16px; }
.ck-form { background: #fff; border-radius: 12px; padding: 24px; box-shadow: 0 1px 4px rgba(0,0,0,.08); }
.ck-title { font-weight: 800; font-size: 22px; text-align: center; margin-bottom: 20px; color: #1a1a1a; }
.ck-form .pt-fld { margin-bottom: 12px; }
.ck-summary { background: #f8f9fa; border-radius: 8px; padding: 14px 16px; margin-top: 16px; font-size: 14px; }
.ck-sum-row { display: flex; justify-content: space-between; padding: 4px 0; }
.ck-sum-row.ck-sum-total { font-weight: 800; font-size: 18px; border-top: 2px solid #e2e8f0; padding-top: 10px; margin-top: 6px; }
.ck-submit { margin-top: 20px; }
.ck-submit .pt-btn { width: 100%; }
.ck-errors { background: #fee; border: 1px solid #fcc; padding: 12px; border-radius: 8px; margin-bottom: 16px; }
.ck-errors p { margin: 0; color: #c00; }
.ck-section { padding: 32px 0 64px; background: #f3f4f6; min-height: 60vh; }
.ck-sum-title { font-weight: 700; font-size: 15px; margin-bottom: 8px; color: #1a1a1a; }
.ck-sum-remove-form { display: inline; }
.ck-sum-remove { background: none; border: none; color: #ccc; font-size: 16px; cursor: pointer; padding: 0 0 0 6px; line-height: 1; vertical-align: middle; }
.ck-sum-remove:hover { color: #e53e3e; }
.ck-back { display: block; text-align: center; margin-top: 14px; color: #666; font-size: 14px; }
@media (max-width: 480px) {
    .ck-product img { width: 70px; height: 70px; }
}
.pt-btn-spinner {
    display: inline-block; width: 20px; height: 20px; border: 3px solid rgba(26,26,26,0.3);
    border-top-color: #1a1a1a; border-radius: 50%; vertical-align: middle; margin-right: 8px;
    animation: pt-spin 0.7s linear infinite;
}
@keyframes pt-spin { to { transform: rotate(360deg); } }
.pt-book-sec { background: var(--gray-bg); padding: 42px 0; }
.pt-book-compact { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.pt-book-title { font-weight: 800; font-size: 22px; color: #1a1a1a; margin-bottom: 20px; text-align: center; }
.pt-book-row { display: flex; align-items: center; gap: 28px; background: #fff; border-radius: 10px; padding: 24px; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.pt-book-cover { width: 140px; min-width: 140px; aspect-ratio: 3/4; border-radius: 6px; object-fit: cover; box-shadow: 0 4px 14px rgba(0,0,0,.15); }
.pt-book-name { font-weight: 700; font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.pt-book-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }
.pt-book-details-btn {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
    background: var(--blue); color: #fff; font-size: 13px; font-weight: 600;
    padding: 8px 18px; border-radius: 6px; border: none; cursor: pointer; font-family: inherit;
}
.pt-book-details-btn:hover { background: var(--blue-dark); }
.pt-book-modal-content { font-size: 14px; line-height: 1.7; color: var(--text); }
.pt-book-preview-btn {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
    background: var(--green); color: #fff; font-size: 14px; font-weight: 600;
    padding: 10px 22px; border-radius: 6px; border: none; cursor: pointer; font-family: inherit;
}
.pt-book-preview-btn:hover { background: var(--green-dark); }
.pt-pdf-modal-box {
    background: #fff; border-radius: 10px; width: 90vw; max-width: 900px; height: 85vh;
    position: relative; display: flex; flex-direction: column; overflow: hidden;
}
.pt-pdf-iframe { width: 100%; flex: 1; border: none; }
.pt-faq-sec { padding: 42px 0; }
.pt-faq-title { text-align: center; font-weight: 800; font-size: 24px; color: #1a1a1a; margin-bottom: 24px; }
.pt-faq-list { border: 1px solid #e3e3e3; border-radius: 6px; overflow: hidden; }
.pt-faq-item { border-bottom: 1px solid #e3e3e3; }
.pt-faq-item:last-child { border-bottom: none; }
.pt-faq-q {
    padding: 15px 18px; cursor: pointer; display: flex; align-items: center; gap: 10px;
    font-size: 18px; color: #333; user-select: none; background: none; border: none;
    width: 100%; text-align: left; font-family: inherit;
}
.pt-faq-sign { color: var(--blue); font-weight: 700; font-size: 16px; width: 14px; flex-shrink: 0; }
.pt-faq-q.open { color: var(--blue); font-weight: 600; }
.pt-faq-a {
    display: none; padding: 0 18px 16px 42px; font-size: 16px; color: #555; line-height: 1.7;
}
.pt-faq-a.open { display: block; }
.pt-faq-a ul { margin: 4px 0 0 16px; }
.pt-faq-a li { padding: 3px 0; }
.pt-help-bar {
    background: var(--green-help); color: #fff; text-align: center; font-weight: 400;
    font-size: 24px; padding: 15px;
}
.pt-footer { background: var(--blue); color: #fff; padding: 24px 0; }
.pt-footer-top {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
    gap: 16px; padding-bottom: 14px;
}
.pt-footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.pt-footer-nav a { color: #fff; font-size: 16px; opacity: .92; }
.pt-footer-nav a:hover { opacity: 1; text-decoration: underline; }
.pt-footer-bottom {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
    gap: 14px; border-top: 1px solid rgba(255,255,255,.15); padding-top: 14px;
}
.pt-footer-copy { font-size: 16px; opacity: .8; line-height: 1.6; }
.pt-footer-company-info { font-size: 12px; opacity: .7; margin-top: 4px; }
.pt-footer-badges { display: flex; gap: 10px; align-items: center; }
.pt-footer-badge { display: block; }
.pt-footer-badge img { height: 40px; display: block; }
.pt-product-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}
.pt-prod-card {
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 24px 16px 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: border-color 0.2s, background 0.2s;
    color: #fff;
}
.pt-prod-card:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3);
}
.pt-prod-card.selected {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
}
.pt-prod-card-icon {
    margin-bottom: 14px;
}
.pt-prod-card-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}
.pt-prod-card-title {
    font-weight: 800;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
}
.pt-prod-card-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    margin-bottom: 12px;
}
.pt-prod-card-price {
    font-weight: 800;
    font-size: 16px;
    color: #fff;
}
.pt-prod-card-info {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: color 0.15s;
    padding: 0;
}
.pt-prod-card-info:hover {
    color: rgba(255,255,255,0.9);
}
.pt-prod-card {
    position: relative;
}
.pt-info-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.pt-info-modal.open {
    display: flex;
}
.pt-info-modal-box {
    background: #fff;
    border-radius: 12px;
    max-width: 480px;
    width: 90%;
    padding: 28px 24px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    color: #333;
}
.pt-info-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: none;
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #888;
    transition: color 0.15s;
}
.pt-info-modal-close:hover {
    color: #333;
    border-color: #999;
}
.pt-info-modal-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}
.pt-info-modal-body p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}
.pt-ebook-remove {
    background: none;
    border: 1px solid rgba(255,255,255,0.4);
    color: #92c0ff;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    font-size: 11px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    padding: 0;
    line-height: 1;
    vertical-align: middle;
    transition: background 0.15s;
}
.pt-ebook-remove:hover {
    background: rgba(255,255,255,0.2);
}
.pt-alert-error {
    background: #fce4ec; color: var(--red); padding: 12px 16px; border-radius: 6px;
    margin-bottom: 16px; font-size: 15px;
}
.pt-fld-invalid input {
    border: 3px solid #e0203a !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.pt-fld-error {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: #e0203a;
    padding: 0;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.2s, padding 0.2s;
}
.pt-fld-invalid .pt-fld-error {
    padding: 6px 12px;
    max-height: 40px;
}
.pt-page-section { padding: 42px 0; }
.pt-page-title { font-weight: 800; font-size: 28px; color: var(--navy); margin-bottom: 20px; }
.pt-cart-items { margin-bottom: 20px; }
.pt-cart-item {
    display: flex; align-items: center; gap: 14px; padding: 14px; background: #f9f9f9;
    border-radius: 8px; margin-bottom: 8px;
}
.pt-cart-item-name { flex: 1; font-weight: 600; color: #333; }
.pt-cart-item-qty { display: flex; align-items: center; gap: 8px; }
.pt-cart-item-qty button {
    width: 28px; height: 28px; border: 1px solid #ddd; border-radius: 4px; background: #fff;
    cursor: pointer; font-size: 16px; font-family: inherit;
}
.pt-cart-item-price { font-weight: 700; color: var(--navy); min-width: 90px; text-align: right; }
.pt-cart-item-remove {
    background: var(--red); color: #fff; border: none; width: 26px; height: 26px;
    border-radius: 50%; cursor: pointer; font-size: 16px;
}
.pt-cart-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; }
.pt-cart-total { font-size: 20px; font-weight: 700; color: var(--navy); }
.pt-btn-cta {
    display: inline-block; background: var(--green); color: #fff; font-weight: 700; font-size: 16px;
    padding: 14px 30px; border-radius: 8px; box-shadow: 0 3px 0 var(--green-dark);
}
.pt-btn-cta:hover { background: var(--green-dark); }
.pt-checkout-form { max-width: 600px; }
.pt-form-group { margin-bottom: 14px; }
.pt-form-group label { display: block; font-size: 15px; font-weight: 600; color: #555; margin-bottom: 4px; }
.pt-form-group input,
.pt-form-group textarea,
.pt-form-group select {
    width: 100%; border: 1px solid #ddd; border-radius: 8px; padding: 12px 14px;
    font-size: 16px; font-family: inherit; color: #333;
}
.pt-checkout-summary { background: #f9f9f9; border-radius: 8px; padding: 16px; margin: 20px 0; }
.pt-summary-item { display: flex; justify-content: space-between; padding: 6px 0; font-size: 16px; }
.pt-summary-total-row { display: flex; justify-content: space-between; padding: 10px 0 0; border-top: 1px solid #ddd; margin-top: 8px; font-weight: 700; font-size: 16px; }
.pt-thankyou { text-align: center; padding: 60px 0; }
.pt-thankyou-title { font-weight: 800; font-size: 30px; color: var(--green); margin-bottom: 16px; }
.pt-thankyou-details { font-size: 16px; color: #555; margin-bottom: 24px; line-height: 1.8; }
.pt-thankyou-details strong { color: var(--navy); }
.pt-cats-sec { padding: 32px 0 16px; background: var(--bg); }
.pt-cats-sec h2 { font-size: 22px; font-weight: 700; color: var(--navy); margin: 0 0 20px; text-align: center; }
.pt-cats-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pt-cat-card {
    background: #fff; border-radius: 12px; overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.07); text-decoration: none;
    color: var(--text); transition: transform .2s, box-shadow .2s;
}
.pt-cat-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.12); }
.pt-cat-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.pt-cat-card-img-empty {
    width: 100%; aspect-ratio: 16/9;
    background: linear-gradient(135deg, #e9ecf5, #dfe3f0);
    display: flex; align-items: center; justify-content: center; color: #94a3b8; font-size: 36px;
}
.pt-cat-card-name { padding: 12px 16px; font-size: 15px; font-weight: 600; text-align: center; }
.pt-info-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 20px; }
.pt-info-badge {
    position: relative; overflow: hidden; display: flex; align-items: center;
    gap: 14px; border-radius: 14px; padding: 16px 18px; height: 76px;
    color: #fff; transition: transform .2s, box-shadow .2s;
}
.pt-info-badge:hover { transform: translateY(-2px); }
.pt-info-badge--deals { background: linear-gradient(135deg, #E60039, #ff2d5e); box-shadow: 0 4px 16px rgba(230,0,57,.25); }
.pt-info-badge--shipping { background: linear-gradient(135deg, #2563eb, #4f8afa); box-shadow: 0 4px 16px rgba(37,99,235,.25); }
.pt-info-badge--payment { background: linear-gradient(135deg, #059669, #10b981); box-shadow: 0 4px 16px rgba(5,150,105,.25); }
.pt-info-badge-bg { position: absolute; right: -8px; top: 50%; transform: translateY(-50%); font-size: 64px; opacity: .12; pointer-events: none; }
.pt-info-badge-icon {
    width: 40px; height: 40px; min-width: 40px;
    background: rgba(255,255,255,.2); backdrop-filter: blur(4px);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 17px; z-index: 1;
}
.pt-info-badge-text { display: flex; flex-direction: column; line-height: 1.3; z-index: 1; }
.pt-info-badge-text strong { font-size: 14px; font-weight: 700; color: #fff; }
.pt-info-badge-text span { font-size: 12px; color: rgba(255,255,255,.8); font-weight: 400; }
.pt-hero-slider { position: relative; overflow: hidden; height: 380px; }
.pt-hero-slides { position: relative; height: 100%; }
.pt-hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; pointer-events: none; }
.pt-hero-slide.active { opacity: 1; pointer-events: auto; }
.pt-hero-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
    width: 40px; height: 40px; border-radius: 50%; border: none;
    background: rgba(255,255,255,.2); backdrop-filter: blur(6px); color: #fff;
    font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background .2s;
}
.pt-hero-arrow:hover { background: rgba(255,255,255,.4); }
.pt-hero-prev { left: 16px; }
.pt-hero-next { right: 16px; }
.pt-hero-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 8px; }
.pt-hero-dot {
    width: 10px; height: 10px; border-radius: 50%; border: 2px solid rgba(255,255,255,.6);
    background: transparent; cursor: pointer; transition: background .2s, border-color .2s;
}
.pt-hero-dot.active { background: #fff; border-color: #fff; }
.pt-hero-slide-bg {
    position: absolute; inset: -20px; background-size: cover;
    background-position: center; animation: ptHeroZoom 12s ease-in-out infinite alternate;
}
@keyframes ptHeroZoom { 0% { transform: scale(1); } 100% { transform: scale(1.08); } }
.pt-hero-slide-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,20,60,.72) 0%, rgba(0,40,120,.45) 50%, rgba(0,20,60,.6) 100%); }
.pt-hero-slide-content {
    position: relative; z-index: 2; height: 100%;
    display: flex; flex-direction: column; justify-content: center;
    padding: 0 48px; max-width: 1200px; margin: 0 auto;
}
.pt-hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2); color: #fff;
    font-size: 13px; font-weight: 600; padding: 6px 16px;
    border-radius: 50px; width: fit-content; margin-bottom: 16px;
    letter-spacing: 0.5px; text-transform: uppercase;
}
.pt-hero-tag i { color: var(--yellow); }
.pt-hero-title-main { font-size: 42px; font-weight: 800; color: #fff; line-height: 1.15; margin: 0 0 8px; max-width: 600px; }
.pt-hero-title-main em { font-style: normal; color: var(--yellow); }
.pt-hero-subtitle { font-size: 18px; color: rgba(255,255,255,.85); font-weight: 400; margin: 0 0 24px; max-width: 500px; line-height: 1.5; }
.pt-hero-cta {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--yellow); color: #1a1a1a; font-size: 16px; font-weight: 700;
    padding: 14px 32px; border-radius: 10px; text-decoration: none;
    width: fit-content; transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.pt-hero-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,.3); }
.pt-products-sec { padding: 32px 0 64px; background: var(--bg); }
.pt-products-sec h2 { font-size: 28px; font-weight: 700; color: var(--navy); margin: 0 0 12px; text-align: center; }
.pt-category-desc {
    margin: 0 0 28px; padding: 18px 24px;
    background: #f4f5fa; border-radius: 10px;
    display: flex; align-items: center; gap: 14px;
}
.pt-category-desc-icon {
    width: 36px; height: 36px; min-width: 36px; border-radius: 8px;
    background: #e8eaf3; display: flex; align-items: center; justify-content: center;
    color: var(--blue); font-size: 16px;
}
.pt-category-desc p { font-size: 14px; color: #666; line-height: 1.7; margin: 0; }
.pt-products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pt-product-card {
    background: #fff; border-radius: 12px; overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.08); transition: transform .2s, box-shadow .2s;
    text-decoration: none; color: var(--text); display: flex; flex-direction: column; position: relative;
}
.pt-product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.pt-discount-badge {
    position: absolute; top: 10px; right: 10px; width: 52px; height: 52px;
    background: linear-gradient(135deg, #ef4444, #dc2626); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 800; line-height: 1;
    box-shadow: 0 3px 10px rgba(220,38,38,.4); z-index: 2;
}
.pt-product-card-img { width: 100%; display: block; }
.pt-product-card-body { padding: 18px 16px 22px; flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.pt-product-card-name {
    font-size: 16px; font-weight: 700; line-height: 1.4; margin: 0 0 auto;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.pt-product-card-prices { margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.pt-product-card-old { font-size: 24px; color: #999; text-decoration: line-through; }
.pt-product-card-price { font-size: 24px; font-weight: 800; color: #E60039; }
.pt-product-card-btn {
    display: block; width: 100%; margin-top: 14px; background: var(--yellow);
    color: #000; text-align: center; font-weight: 700; font-size: 15px;
    padding: 12px 20px; border-radius: 8px; transition: filter .2s; letter-spacing: 0.5px;
}
.pt-product-card-btn:hover { filter: brightness(1.05); }
.pt-no-products { text-align: center; padding: 48px 20px; color: var(--text-muted, #888); font-size: 16px; }
.pt-pagination {
    display: flex; justify-content: center; align-items: center;
    gap: 6px; margin-top: 32px; flex-wrap: wrap;
}
.pt-pagination-btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 14px;
    border-radius: 8px; font-size: 14px; font-weight: 600;
    color: var(--navy); background: #fff; border: 1px solid #e2e8f0;
    text-decoration: none; transition: background .2s, border-color .2s;
}
.pt-pagination-btn:hover { background: #f1f5f9; border-color: var(--blue); }
.pt-pagination-btn.active {
    background: var(--blue); color: #fff; border-color: var(--blue);
    pointer-events: none;
}
.pt-pagination-dots { padding: 0 4px; color: #94a3b8; font-size: 14px; }
.pt-no-products i { font-size: 48px; margin-bottom: 16px; opacity: .4; display: block; }
.pt-product-img-placeholder {
    width: 100%; aspect-ratio: 1; background: #f0f0f0;
    display: flex; align-items: center; justify-content: center; color: #ccc; font-size: 48px;
}
.pt-404-sec { padding: 80px 0; text-align: center; min-height: 50vh; display: flex; align-items: center; }
.pt-404-content { max-width: 500px; margin: 0 auto; }
.pt-404-icon { font-size: 64px; color: var(--blue); margin-bottom: 16px; opacity: .7; }
.pt-404-code {
    font-size: 120px; font-weight: 800; line-height: 1;
    background: linear-gradient(135deg, var(--blue), #6366f1);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; margin: 0;
}
.pt-404-title { font-size: 24px; font-weight: 700; color: #1e293b; margin: 16px 0 10px; }
.pt-404-text { font-size: 15px; color: #64748b; line-height: 1.6; margin: 0 0 32px; }
.pt-404-actions .pt-btn-order { display: inline-block; text-decoration: none; font-size: 16px; padding: 14px 32px; }
.pt-oos-badge {
    position: absolute; top: 10px; left: 10px; z-index: 2;
    background: #64748b; color: #fff; font-size: 11px; font-weight: 700;
    padding: 4px 10px; border-radius: 6px; text-transform: uppercase; letter-spacing: .3px;
}
.pt-product-card--oos { opacity: .65; }
.pt-product-card--oos .pt-product-card-btn { background: #94a3b8; box-shadow: 0 3px 0 #64748b; }
.pt-oos-alert {
    display: flex; align-items: center; gap: 14px;
    background: #fef2f2; border: 1px solid #fecaca; border-radius: 10px;
    padding: 18px 22px; margin-bottom: 24px; color: #991b1b;
}
.pt-oos-alert i { font-size: 28px; flex-shrink: 0; }
.pt-oos-alert strong { display: block; font-size: 16px; margin-bottom: 4px; }
.pt-oos-alert p { margin: 0; font-size: 14px; color: #b91c1c; }
.pt-prod-arrow { display: none; }
@media (max-width: 760px) {
    .pt-phone-btn { font-size: 14px; padding: 7px 8px; border-radius: 4px; }
    .pt-phone-text { display: none; }
    .pt-logo-img { width: 150px; }
    .pt-hero-slider { height: 320px; }
    .pt-hero-slide-content { padding: 0 20px; }
    .pt-hero-arrow { display: none; }
    .pt-hero-title-main { font-size: 26px; }
    .pt-hero-subtitle { font-size: 14px; margin-bottom: 18px; }
    .pt-hero-cta { font-size: 14px; padding: 12px 24px; }
    .pt-hero-tag { font-size: 11px; padding: 5px 12px; }
    .pt-info-badges { grid-template-columns: 1fr; gap: 10px; margin-top: 14px; }
    .pt-info-badge { height: auto; padding: 12px 14px; }
    .pt-info-badge-icon { width: 34px; height: 34px; min-width: 34px; font-size: 14px; border-radius: 8px; }
    .pt-info-badge-bg { font-size: 48px; right: -4px; }
    .pt-info-badge-text strong { font-size: 13px; }
    .pt-info-badge-text span { font-size: 11px; }
    .pt-cats-track { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .pt-cat-card-name { font-size: 13px; padding: 10px 12px; }
    .pt-products-sec h2 { font-size: 18px; }
    .pt-404-sec { padding: 48px 0; }
    .pt-404-code { font-size: 80px; }
    .pt-404-title { font-size: 20px; }
    .pt-category-desc { padding: 16px 18px; gap: 12px; margin-bottom: 20px; }
    .pt-category-desc-icon { width: 32px; height: 32px; min-width: 32px; font-size: 14px; }
    .pt-category-desc p { font-size: 13px; }
    .pt-products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .pt-discount-badge { width: 42px; height: 42px; font-size: 12px; top: 8px; right: 8px; }
    .pt-product-card-body { padding: 12px 10px 16px; }
    .pt-product-card-name { font-size: 13px; }
    .pt-product-card-price { font-size: 18px; }
    .pt-product-card-old { font-size: 13px; }
    .pt-product-card-btn { font-size: 13px; padding: 10px; }
    .pt-hero-title { font-size: 21px; }
    .pt-hero-grid,
    .pt-info-grid,
    .pt-features-grid,
    .pt-extra-grid { grid-template-columns: 1fr; }
    .pt-help-bar { font-size: 16px; }
    .pt-help-cells { grid-template-columns: 1fr 1fr; }
    .pt-help-cell { padding: 9px; gap: 7px; }
    .pt-help-icon { width: 28px; height: 28px; font-size: 16px; }
    .pt-help-cell small { font-size: 8px; }
    .pt-help-cell b { font-size: 15px; }
    .pt-guar-grid {
        display: flex; flex-wrap: nowrap; gap: 0;
        overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
        -ms-overflow-style: none; scrollbar-width: none;
    }
    .pt-guar-grid::-webkit-scrollbar { display: none; }
    .pt-guar-card { flex: 0 0 100%; scroll-snap-align: start; }
    .pt-guar-slider { padding: 0; }
    .pt-guar-arrow-btn {
        display: flex; align-items: center; justify-content: center;
        position: absolute; top: 42%; transform: translateY(-50%);
        width: 22px; height: 22px; border-radius: 50%; border: none; cursor: pointer;
        background: #1a1a1a; color: var(--yellow); font-size: 12px; line-height: 1; z-index: 2;
    }
    .pt-guar-prev { left: 8px; }
    .pt-guar-next { right: 8px; }
    .pt-guar-dots {
        display: flex; justify-content: center; gap: 8px; margin-top: 18px;
    }
    .pt-guar-dot {
        width: 9px; height: 9px; border-radius: 50%; background: rgba(0,0,0,.25);
        cursor: pointer; border: none; padding: 0;
    }
    .pt-guar-dot.active { background: #1a1a1a; }
    .pt-rating-bar { font-size: 12px; }
    .pt-discount-value { font-size: 12px; padding: 1px 6px; margin-top: 2px; }
    .pt-help-title { font-size: 13px; }
    .pt-bullets li { font-size: 17px; }
    .pt-bullet-check { font-size: 18px; }
    .pt-price-now { font-size: 26px; }
    .pt-price-old { font-size: 26px; }
    .pt-discount-label { font-size: 12px; }
    .pt-btn-order { font-size: 18px; }
    .pt-blue-sec-title,
    .pt-yellow-title,
    .pt-order-title { font-size: 22px; }
    .pt-blue-sec-desc { font-size: 15px; }
    .pt-why-title { font-size: 20px; }
    .pt-why-desc { font-size: 15px; }
    .pt-why-list li { font-size: 15px; }
    .pt-btn-yellow, .pt-btn-black { font-size: 16px; }
    .pt-btn-black { width: 100%; padding-left: 0; padding-right: 0; }
    .pt-feature-title { font-size: 20px; }
    .pt-feature-desc { font-size: 15px; }
    .pt-yellow-sub { font-size: 15px; }
    .pt-guar-card-title { font-size: 16px; }
    .pt-guar-card-desc { font-size: 14px; }
    .pt-order-subtitle { font-size: 15px; }
    .pt-faq-title { font-size: 20px; }
    .pt-faq-q { font-size: 14px; }
    .pt-faq-a { font-size: 14px; }
    .pt-btn-submit { font-size: 18px; }
    .pt-btn-submit small { font-size: 13px; }
    .pt-gallery-caption { font-size: 13px; }
    .pt-footer-top { flex-direction: column; align-items: flex-start; }
    .pt-footer-nav { flex-direction: column; align-items: flex-start; gap: 10px; }
    .pt-footer-bottom { flex-direction: column; align-items: center; text-align: center; }
    .pt-footer-badges { justify-content: center; }
    .pt-prod-slider { position: relative; }
    .pt-prod-arrow {
        align-items: center; justify-content: center;
        position: absolute; top: 50%; transform: translateY(-50%);
        width: 18px; height: 18px; border-radius: 50%; border: none; cursor: pointer;
        background: rgba(255,255,255,0.2); color: rgba(255,255,255,0.6); font-size: 9px; z-index: 2;
    }
    .pt-prod-arrow.hidden { display: none !important; }
    .pt-prod-arrow:not(.hidden) { display: flex; }
    .pt-prod-prev { left: 4px; }
    .pt-prod-next { right: 4px; }
    .pt-product-selector {
        display: flex;
        gap: 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 6px;
    }
    .pt-product-selector::-webkit-scrollbar { display: none; }
    .pt-prod-card {
        flex: 0 0 100%;
        scroll-snap-align: start;
        margin-right: 0;
        flex-direction: row;
        padding: 8px 10px;
        gap: 10px;
        min-height: 0;
        max-height: none;
        align-items: center;
        text-align: left;
    }
    .pt-prod-card:last-child { margin-right: 0; }
    .pt-prod-card-icon {
        margin-bottom: 0;
    }
    .pt-prod-card-icon img {
        width: 120px;
    }
    .pt-prod-card-title {
        font-size: 13px;
        margin-bottom: 1px;
    }
    .pt-prod-card-desc {
        font-size: 12px;
        margin-bottom: 2px;
    }
    .pt-prod-card-price {
        font-size: 12px;
    }
    .pt-prod-card-info {
        bottom: 4px;
        right: 4px;
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
    .pt-qty-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .pt-qty-card { padding: 12px 6px 8px; border-width: 2px; border-radius: 8px; }
    .pt-qty-header { padding: 6px 4px 4px; }
    .pt-qty-title { font-size: 13px; }
    .pt-qty-price { font-size: 20px; }
    .pt-qty-price small { font-size: 13px; }
    .pt-qty-perunit { font-size: 9px; }
    .pt-qty-save { font-size: 9px; margin: 0 4px 4px; padding: 2px 5px; }
    .pt-qty-btn { margin: 0 5px 8px; padding: 7px; font-size: 10px; }
    .pt-qty-ribbon { font-size: 8px; padding: 3px 8px; }
    .pt-qty-img { width: 85%; }
    .pt-cart-item { flex-wrap: wrap; }
    .pt-cart-actions { flex-direction: column; gap: 14px; }
    .pt-book-row { gap: 16px; padding: 16px; }
    .pt-book-cover { width: 100px; min-width: 100px; }
    .pt-book-name { font-size: 15px; }
    .pt-book-desc { font-size: 13px; }
    .pt-extras-grid { grid-template-columns: 1fr; }
    .pt-extras-title { font-size: 15px; }
}
.pt-hamburger {
    background: none; border: none; cursor: pointer; padding: 6px;
    display: flex; flex-direction: column; gap: 5px; z-index: 10;
}
.pt-hamburger span {
    display: block; width: 24px; height: 2.5px; background: #fff;
    border-radius: 2px; transition: transform .3s, opacity .3s;
}
.pt-hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.pt-hamburger.active span:nth-child(2) { opacity: 0; }
.pt-hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.pt-menu-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.5);
    z-index: 9998; opacity: 0; visibility: hidden;
    transition: opacity .3s, visibility .3s;
}
.pt-menu-overlay.active { opacity: 1; visibility: visible; }
.pt-mobile-menu {
    position: fixed; top: 0; left: -300px; width: 280px; height: 100%;
    background: #fff; z-index: 99999; transition: left .3s ease;
    box-shadow: 4px 0 20px rgba(0,0,0,.15); display: flex; flex-direction: column;
}
.pt-mobile-menu.active { left: 0; }
.pt-mobile-menu-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px; border-bottom: 1px solid #e2e8f0;
    background: var(--blue, #2563eb); color: #fff;
}
.pt-mobile-menu-title { font-weight: 700; font-size: 16px; }
.pt-mobile-menu-close {
    background: none; border: none; color: #fff; font-size: 28px;
    cursor: pointer; line-height: 1; padding: 0;
}
.pt-mobile-menu-body { flex: 1; overflow-y: auto; padding: 12px 0; }
.pt-mobile-menu-link {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 20px; color: #1e293b; text-decoration: none;
    font-size: 15px; font-weight: 500; transition: background .2s;
}
.pt-mobile-menu-link:hover { background: #f1f5f9; }
.pt-mobile-menu-link i { width: 18px; text-align: center; color: var(--blue, #2563eb); font-size: 14px; }
.pt-mobile-menu-divider { height: 1px; background: #e2e8f0; margin: 8px 0; }
.pt-mobile-menu-label {
    padding: 8px 20px 4px; font-size: 11px; font-weight: 700;
    text-transform: uppercase; color: #94a3b8; letter-spacing: 0.5px;
}
.pt-mobile-search {
    position: relative; margin: 4px 16px 8px;
}
.pt-mobile-search input {
    width: 100%; padding: 10px 14px 10px 38px; border: 1px solid #e2e8f0;
    border-radius: 8px; font-size: 14px; font-family: 'Poppins', sans-serif;
    background: #f8fafc; color: #333; transition: border-color .2s, box-shadow .2s;
}
.pt-mobile-search input:focus {
    outline: none; border-color: var(--blue); background: #fff;
    box-shadow: 0 0 0 3px rgba(60,78,181,.1);
}
.pt-mobile-search input::placeholder { color: #94a3b8; }
.pt-mobile-search-icon {
    position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
    color: #94a3b8; font-size: 14px; pointer-events: none;
}
.pt-search-header { text-align: center; padding: 8px 0 0; }
.pt-search-header h2 { font-size: 22px; font-weight: 700; color: var(--navy); margin: 0 0 8px; }
.pt-search-header p { font-size: 14px; color: var(--muted); margin: 0 0 4px; }
.pt-search-bar {
    max-width: 500px; margin: 0 auto 28px; position: relative;
}
.pt-search-bar input {
    width: 100%; padding: 12px 44px 12px 18px; border: 2px solid #e2e8f0;
    border-radius: 10px; font-size: 15px; font-family: 'Poppins', sans-serif;
    color: #333; transition: border-color .2s, box-shadow .2s;
}
.pt-search-bar input:focus {
    outline: none; border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(60,78,181,.1);
}
.pt-search-bar input::placeholder { color: #94a3b8; }
.pt-search-bar button {
    position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
    width: 36px; height: 36px; border: none; border-radius: 8px;
    background: var(--blue); color: #fff; font-size: 14px;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background .2s;
}
.pt-search-bar button:hover { background: var(--navy); }
.pt-page-sec { padding: 32px 0 64px; background: var(--bg, #fff); }
.pt-page-sec h1 { font-size: 28px; font-weight: 700; color: var(--navy); margin: 0 0 24px; }
.pt-page-content { font-size: 15px; line-height: 1.8; color: var(--text, #333); }
.pt-page-content h2 { font-size: 22px; margin: 24px 0 12px; }
.pt-page-content h3 { font-size: 18px; margin: 20px 0 10px; }
.pt-page-content p { margin: 0 0 16px; }
.pt-page-content ul, .pt-page-content ol { margin: 0 0 16px; padding-left: 24px; }
.pt-page-content img { max-width: 100%; border-radius: 8px; margin: 16px 0; }
.pt-page-content a { color: var(--blue); text-decoration: underline; }
.pt-contact-hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
    color: #fff; text-align: center; padding: 48px 0 40px;
}
.pt-contact-hero h1 { font-size: 32px; font-weight: 800; margin: 0 0 8px; color: #fff; }
.pt-contact-hero p { font-size: 16px; opacity: .85; margin: 0 0 24px; }
.pt-contact-phone-big {
    display: inline-flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.3);
    border-radius: 50px; padding: 14px 32px; color: #fff; text-decoration: none;
    font-size: 22px; font-weight: 700; transition: background .2s;
}
.pt-contact-phone-big:hover { background: rgba(255,255,255,.25); }
.pt-contact-phone-big i { font-size: 20px; }
.pt-contact-body { padding: 48px 0 64px; background: #f8fafc; }
.pt-contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.pt-contact-card {
    background: #fff; border-radius: 12px; padding: 32px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.04);
}
.pt-contact-card-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.pt-contact-card-icon i { color: #fff; font-size: 20px; }
.pt-contact-card h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin: 0 0 16px; }
.pt-contact-card .pt-page-content { font-size: 14px; line-height: 1.8; }
.pt-contact-card .pt-page-content p { margin: 0 0 8px; }
.pt-contact-card-form .form-group { margin-bottom: 16px; }
.pt-contact-card-form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 5px; color: var(--navy); }
.pt-contact-card-form input, .pt-contact-card-form textarea {
    width: 100%; padding: 11px 14px; border: 1px solid #e2e8f0; border-radius: 8px;
    font-size: 14px; font-family: 'Poppins', sans-serif; background: #f8fafc;
    transition: border-color .2s, box-shadow .2s;
}
.pt-contact-card-form textarea { resize: vertical; min-height: 110px; }
.pt-contact-card-form input::placeholder, .pt-contact-card-form textarea::placeholder { color: #94a3b8; }
.pt-contact-card-form input:focus, .pt-contact-card-form textarea:focus {
    outline: none; border-color: var(--blue); background: #fff;
    box-shadow: 0 0 0 3px rgba(60,78,181,.1);
}
.pt-contact-card-form button {
    background: linear-gradient(135deg, var(--blue), var(--navy)); color: #fff;
    border: none; padding: 13px 32px; border-radius: 8px;
    font-size: 15px; font-weight: 600; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    transition: opacity .2s; width: 100%; justify-content: center;
}
.pt-contact-card-form button:hover { opacity: .9; }
.pt-contact-card-form button:disabled { opacity: .6; cursor: not-allowed; }
.pt-contact-success {
    display: none; flex-direction: column; align-items: center; justify-content: center;
    padding: 32px 20px; background: #ecfdf5; border: 1px solid #6ee7b7;
    border-radius: 8px; text-align: center; color: #065f46; font-weight: 600;
    font-size: 15px; line-height: 1.6; min-height: 200px;
}
.pt-contact-success i { font-size: 40px; margin-bottom: 12px; color: #10b981; }
.pt-return-layout { display: flex; flex-direction: column; gap: 32px; margin-top: 24px; }
.pt-return-info { padding: 8px 0; }
.pt-return-form-card {
    background: #f8fafc; border-radius: 12px; padding: 32px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.04);
}
.pt-return-form-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.pt-return-form-icon i { color: #fff; font-size: 20px; }
.pt-return-form-card h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin: 0 0 20px; }
.pt-return-form-card .form-group { margin-bottom: 16px; }
.pt-return-form-card label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 5px; color: var(--navy); }
.pt-return-form-card input, .pt-return-form-card textarea {
    width: 100%; padding: 11px 14px; border: 1px solid #e2e8f0; border-radius: 8px;
    font-size: 14px; font-family: 'Poppins', sans-serif; background: #fff;
    transition: border-color .2s, box-shadow .2s;
}
.pt-return-form-card textarea { resize: vertical; min-height: 90px; }
.pt-return-form-card input::placeholder, .pt-return-form-card textarea::placeholder { color: #94a3b8; }
.pt-return-form-card input:focus, .pt-return-form-card textarea:focus {
    outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(60,78,181,.1);
}
.pt-return-form-card button {
    background: linear-gradient(135deg, var(--blue), var(--navy)); color: #fff;
    border: none; padding: 13px 32px; border-radius: 8px;
    font-size: 15px; font-weight: 600; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    transition: opacity .2s; width: 100%; justify-content: center;
}
.pt-return-form-card button:hover { opacity: .9; }
.pt-return-form-card button:disabled { opacity: .6; cursor: not-allowed; }
@media (max-width: 760px) {
    .pt-contact-hero h1 { font-size: 24px; }
    .pt-contact-phone-big { font-size: 18px; padding: 12px 24px; }
    .pt-contact-layout { grid-template-columns: 1fr; }
    .pt-contact-card { padding: 24px; }
    .pt-return-form-card { padding: 24px; }
}

.pt-book-modal-short { margin-top:14px; padding-top:14px; border-top:1px solid #e2e8f0; color:#475569; font-size:14px; line-height:1.6; }
