/* =========================================================
   PujaThaali — Common Stylesheet
   Palette pulled from the brand mark: turmeric-gold to marigold
   -orange gradient wordmark, with a deep kumkum-red anchor for
   contrast. Warm ivory ground (rice/turmeric), festive but
   restrained. Loads after bootstrap.min.css and overrides it.
   ========================================================= */

:root {
    /* Color tokens */
    --pt-cream: #FFFAF0;
    --pt-cream-deep: #FFF2D9;
    --pt-panel: #FFFFFF;
    --pt-gold: #FFB800;
    --pt-amber: #FF8A00;
    --pt-saffron: #F4511E;
    --pt-maroon: #7A1631;
    --pt-maroon-deep: #4E0E20;
    --pt-ink: #2B1A10;
    --pt-ink-soft: #7A6A57;
    --pt-line: #F0E2C8;
    --pt-success: #1F8A4C;

    --pt-gradient: linear-gradient(135deg, var(--pt-gold), var(--pt-amber) 55%, var(--pt-saffron));

    /* Type */
    --pt-font-display: 'Rozha One', 'Georgia', serif;
    --pt-font-body: 'Work Sans', 'Segoe UI', sans-serif;

    /* Layout */
    --pt-radius: 14px;
    --pt-radius-sm: 8px;
    --pt-shadow: 0 20px 44px -26px rgba(43, 26, 16, 0.35);
    --pt-nav-h: 118px;
    --pt-nav-h-scrolled: 84px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--pt-font-body);
    color: var(--pt-ink);
    background: var(--pt-cream);
    -webkit-font-smoothing: antialiased;
    padding-top: var(--pt-nav-h);
    overflow-x: hidden;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
h1, h2, h3, h4, h5 {
    font-family: var(--pt-font-display);
    color: var(--pt-ink);
    font-weight: 400;
    line-height: 1.2;
}
p { line-height: 1.75; color: #5C4B39; }
:focus-visible { outline: 2px solid var(--pt-saffron); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------- Preloader ---------- */
#pt-preloader {
    position: fixed; inset: 0; z-index: 999999;
    background: var(--pt-cream);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
#pt-preloader.pt-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.pt-preloader-dot {
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--pt-gradient);
    animation: pt-pulse 1s ease-in-out infinite;
}
@keyframes pt-pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(0.5); opacity: 0.55; } }

/* ---------- Buttons ---------- */
.pt-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.96rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.pt-btn--solid {
    background: var(--pt-gradient);
    color: #2B1400;
    box-shadow: 0 14px 26px -12px rgba(244, 81, 30, 0.55);
}

.pt-btn--solid1 {
    background: orangered;
    color: #2B1400;
    box-shadow: 0 14px 26px -12px rgba(244, 81, 30, 0.55);
}

.pt-btn--solid:hover { transform: translateY(-2px); box-shadow: 0 18px 30px -12px rgba(244, 81, 30, 0.6); color: #2B1400; }
.pt-btn--outline-light {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.pt-btn--outline-light:hover { background: #fff; color: var(--pt-maroon); border-color: #fff; }
.pt-more {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 600; color: var(--pt-saffron);
}
.pt-more:hover { color: var(--pt-maroon); gap: 12px; }
.pt-more i { transition: transform 0.2s ease; }
.pt-more:hover i { transform: translateX(3px); }

/* ---------- Messages ---------- */
.pt-messages { position: relative; z-index: 9500; background: var(--pt-cream-deep); padding: 10px 0; }
.pt-alert {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    background: var(--pt-panel);
    border: 1px solid var(--pt-line);
    border-left: 4px solid var(--pt-saffron);
    border-radius: var(--pt-radius-sm);
    padding: 12px 16px;
    margin: 6px 0;
    font-size: 0.92rem;
}
.pt-alert--error { border-left-color: #C0392B; }
.pt-alert--success { border-left-color: var(--pt-success); }
.pt-alert__close { background: none; border: none; font-size: 1.2rem; line-height: 1; color: var(--pt-ink-soft); cursor: pointer; }

/* ---------- Navbar ---------- */
.pt-navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
    height: var(--pt-nav-h);
    background: rgba(255, 250, 240, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--pt-line);
    transition: height 0.3s ease, box-shadow 0.3s ease;
    padding: 0;
}
.pt-navbar.pt-scrolled { height: var(--pt-nav-h-scrolled); box-shadow: 0 14px 30px -22px rgba(43, 26, 16, 0.35); }
.pt-navbar .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.pt-brand { display: inline-flex; align-items: center; }
.pt-brand img { height: 120px; width: auto; max-width: 220px; object-fit: contain; transition: height 0.3s ease; }
.pt-navbar.pt-scrolled .pt-brand img { height: 75px; }

.pt-nav { display: flex; align-items: stretch; gap: 6px; }
.pt-nav .nav-item { display: flex; align-items: stretch; }
.pt-nav .nav-link {
    position: relative;
    display: flex; align-items: center;
    height: 100%;
    padding: 0 16px;
    margin: 0 2px;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    color: var(--pt-ink);
    border-radius: 0;
    transition: color 0.2s ease;
}
.pt-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 16px; right: 16px; bottom: 22px;
    height: 2px;
    background: var(--pt-gradient);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}
.pt-nav .nav-link:hover { color: var(--pt-saffron); }
.pt-nav .nav-link:hover::after { transform: scaleX(1); }
.pt-nav .nav-item.active .nav-link { color: var(--pt-saffron); }
.pt-nav .nav-item.active .nav-link::after { transform: scaleX(1); }

.pt-nav-cta { display: flex; align-items: center; gap: 6px; }
.pt-icon-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--pt-cream-deep);
    color: var(--pt-ink);
    transition: background 0.2s ease, color 0.2s ease;
}
.pt-icon-btn:hover { background: var(--pt-gradient); color: #2B1400; }
.pt-icon-btn--user img { width: 20px; height: 20px; filter: invert(18%) sepia(24%) saturate(900%) hue-rotate(-10deg); }
.pt-icon-btn--cart { position: relative; }
.pt-icon-btn--cart img { width: 20px; height: 20px; filter: invert(18%) sepia(24%) saturate(900%) hue-rotate(-10deg); }
.pt-cart-count.badge {
    position: absolute; top: 2px; right: 2px;
    background: var(--pt-maroon) !important;
    font-size: 0.65rem;
    min-width: 18px; height: 18px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    padding: 0;
}
.pt-dropdown {
    border: 1px solid var(--pt-line);
    border-radius: var(--pt-radius-sm);
    box-shadow: var(--pt-shadow);
    padding: 6px;
}
.pt-dropdown .dropdown-item { border-radius: 6px; padding: 9px 14px; font-weight: 500; }
.pt-dropdown .dropdown-item:hover { background: var(--pt-cream-deep); color: var(--pt-saffron); }

.pt-nav-toggle { border: 1px solid var(--pt-line); border-radius: 8px; padding: 8px 10px; }
.pt-nav-toggle:focus { box-shadow: none; }

@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--pt-panel);
        border-radius: var(--pt-radius-sm);
        padding: 16px;
        margin-top: 12px;
        box-shadow: var(--pt-shadow);
    }
    .pt-nav, .pt-nav-cta { flex-direction: column; align-items: stretch; gap: 2px; }
    .pt-nav-cta { flex-direction: row; margin-top: 12px; }
    .pt-nav .nav-link { height: auto; padding: 12px 14px; }
    .pt-nav .nav-link::after { left: 0; right: auto; bottom: 8px; top: 8px; width: 3px; height: auto; border-radius: 2px; transform: scaleY(0); }
    .pt-nav .nav-link:hover::after, .pt-nav .nav-item.active .nav-link::after { transform: scaleY(1); }
}

/* ---------- Search offcanvas ---------- */
.pt-search-canvas { background: var(--pt-cream); border-bottom: 1px solid var(--pt-line); }
.pt-search-canvas .offcanvas-body { padding-top: 8px; padding-bottom: 40px; }
.pt-form-control {
    border: 1px solid var(--pt-line);
    border-radius: var(--pt-radius-sm);
    padding: 12px 14px;
    background: var(--pt-panel);
}
.pt-form-control:focus { border-color: var(--pt-saffron); box-shadow: 0 0 0 3px rgba(244, 81, 30, 0.14); }
.pt-search-input-group { position: relative; }
.pt-search-input-group .pt-form-control { border-radius: 999px 0 0 999px; flex: 1; }
.pt-search-submit {
    border: none; border-radius: 0 999px 999px 0;
    background: var(--pt-gradient);
    color: #2B1400;
    padding: 0 20px;
    cursor: pointer;
}

/* ---------- Eyebrow / section titles ---------- */
.pt-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--pt-font-body);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pt-saffron);
    margin: 0 0 10px;
}
.pt-eyebrow::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--pt-gradient); display: inline-block; }
.pt-eyebrow--center { justify-content: center; width: 100%; }
.pt-section-title { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 0.3em; }
.pt-section-title--center { text-align: center; }
.pt-section-title--light { color: #fff; }

.pt-section { padding: 88px 0; }
.pt-section--alt { background: var(--pt-cream-deep); }
.pt-prose ul { padding-left: 1.1em; }
.pt-prose li { margin-bottom: 6px; color: #5C4B39; }

/* ---------- Hero ---------- */
.pt-hero { position: relative; padding: 32px 0 0; overflow: hidden; background: var(--pt-cream); }
.pt-hero__pattern {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 8% 18%, rgba(255, 184, 0, 0.16), transparent 40%),
        radial-gradient(circle at 92% 82%, rgba(244, 81, 30, 0.14), transparent 45%);
    pointer-events: none;
}
.pt-hero__carousel { position: relative; z-index: 1; }
.pt-hero__carousel .carousel-inner { border-radius: var(--pt-radius); }
.pt-hero__slide {
    display: flex; align-items: center;
    min-height: 460px;
    padding: 40px 68px;
}
.pt-hero__slide > .row { width: 100%; }
.pt-hero__slide--alt {
    display: flex; align-items: center;
    min-height: 460px;
    background: linear-gradient(120deg, var(--pt-maroon), var(--pt-maroon-deep));
    border-radius: var(--pt-radius);
    padding: 40px 68px;
    color: #fff;
}
.pt-hero__slide--alt > .row { width: 100%; }
.pt-hero__slide--alt .pt-eyebrow { color: var(--pt-gold); }
.pt-hero__prose, .pt-hero__prose p { color: #F0DCC8; }
.pt-hero__copy h1 { font-size: clamp(2.1rem, 4.4vw, 3.3rem); max-width: 14ch; margin-bottom: 0.35em; }
.pt-hero__actions-row { display: flex; gap: 14px; flex-wrap: wrap; margin: 20px 0 26px; }
.pt-hero__badges { display: flex; flex-wrap: wrap; gap: 18px; margin: 0; padding-top: 20px; border-top: 1px solid var(--pt-line); }
.pt-hero__badges li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: var(--pt-ink-soft); }
.pt-hero__badges i { color: var(--pt-saffron); }
.pt-hero__art { position: relative; }
.pt-hero__art img { max-height: 340px; object-fit: contain; border-radius: var(--pt-radius); box-shadow: var(--pt-shadow); background: var(--pt-panel); padding: 10px; }
.pt-hero__slide-img { border-radius: var(--pt-radius-sm); max-height: 320px; object-fit: cover; width: 100%; }

.pt-hero__features .pt-feature--light h3 { color: #fff; }
.pt-hero__features .pt-feature--light { background: rgba(255,255,255,0.06); }

.pt-hero__dots { position: static; margin-top: 18px; }
.pt-hero__dots [data-bs-target] {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--pt-line);
    opacity: 1; margin: 0 4px;
}
.pt-hero__dots .active { background: var(--pt-saffron); width: 22px; border-radius: 6px; }

/* Prev/next controls: override Bootstrap's default full-height 15%-wide
   click zone (which sat directly on top of the hero copy) with a small
   centered circular button confined to the slide's side padding. */
.pt-hero__control {
    top: 50%; bottom: auto;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    opacity: 1;
    z-index: 5;
}
.pt-hero__arrow {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--pt-panel); color: var(--pt-ink);
    box-shadow: var(--pt-shadow);
    transition: background 0.2s ease, color 0.2s ease;
}
.pt-hero__control:hover .pt-hero__arrow { background: var(--pt-gradient); color: #2B1400; }
.carousel-control-prev.pt-hero__control { left: 12px; }
.carousel-control-next.pt-hero__control { right: 12px; }

/* ---------- Responsive product slider ---------- */
.pt-slider { position: relative; }
.pt-slider__track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 4px 4px 14px;
    margin: 0 -4px;
    scrollbar-width: none;
}
.pt-slider__track::-webkit-scrollbar { display: none; }
.pt-slider__item {
    flex: 0 0 auto;
    width: calc(25% - 18px);
    scroll-snap-align: start;
}
.pt-carousel-control {
    position: absolute; top: -40px; width: 40px; height: 40px;
    border-radius: 50%; border: 1px solid var(--pt-line);
    background: var(--pt-panel); color: var(--pt-ink);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.pt-carousel-control:hover { background: var(--pt-gradient); color: #2B1400; border-color: transparent; }
.pt-carousel-control:disabled { opacity: 0.35; cursor: default; background: var(--pt-panel); color: var(--pt-ink); }
.pt-carousel-control--prev { right: 54px; }
.pt-carousel-control--next { right: 8px; }
@media (max-width: 1199px) {
    .pt-slider__item { width: calc(33.333% - 16px); }
}
@media (max-width: 899px) {
    .pt-slider__item { width: calc(50% - 12px); }
}
@media (max-width: 575px) {
    .pt-slider__item { width: 78%; }
    .pt-carousel-control { position: static; display: inline-flex; margin: 16px 6px 0; }
}

/* ---------- Product cards ---------- */
.pt-product-card {
    background: var(--pt-panel);
    border: 1px solid var(--pt-line);
    border-radius: var(--pt-radius);
    overflow: hidden;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pt-product-card:hover { transform: translateY(-6px); box-shadow: var(--pt-shadow); }
.pt-product-card__media { position: relative; aspect-ratio: 1 / 1; background: var(--pt-cream-deep); overflow: hidden; }
.pt-product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.pt-product-card:hover .pt-product-card__media img { transform: scale(1.06); }
.pt-badge-offer {
    position: absolute; top: 10px; left: 10px;
    background: var(--pt-maroon); color: #fff;
    font-size: 0.7rem; font-weight: 700;
    padding: 4px 10px; border-radius: 999px;
}
.pt-product-card__links {
    list-style: none; margin: 0; padding: 0;
    position: absolute; bottom: -46px; left: 0; right: 0;
    display: flex; justify-content: center; gap: 8px;
    transition: bottom 0.25s ease;
}
.pt-product-card:hover .pt-product-card__links { bottom: 12px; }
.pt-product-card__links a {
    width: 36px; height: 36px; border-radius: 50%;
    background: #fff; color: var(--pt-ink);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--pt-shadow); cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
.pt-product-card__links a:hover { background: var(--pt-gradient); color: #2B1400; }
.pt-product-card__body { padding: 16px 18px 20px; }
.pt-product-card__title { font-family: var(--pt-font-body); font-weight: 600; font-size: 0.98rem; margin-bottom: 6px; }
.pt-product-card__title a:hover { color: var(--pt-saffron); }
.pt-product-card__price { font-weight: 700; color: var(--pt-saffron); }
.pt-product-card__price span { margin-left: 8px; font-weight: 400; text-decoration: line-through; color: var(--pt-ink-soft); font-size: 0.85rem; }

/* ---------- Service cards ---------- */
.pt-service-card {
    display: block;
    background: var(--pt-panel);
    border: 1px solid var(--pt-line);
    border-radius: var(--pt-radius);
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pt-service-card:hover { transform: translateY(-6px); box-shadow: var(--pt-shadow); }
.pt-service-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--pt-cream-deep);
}
.pt-service-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.pt-service-card:hover .pt-service-card__media img { transform: scale(1.06); }
.pt-service-card__scrim {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(43,26,16,0) 40%, rgba(43,20,10,0.82) 100%);
    pointer-events: none;
}
.pt-service-card__title {
    position: absolute; left: 16px; right: 56px; bottom: 14px;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.25;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.pt-service-card__book {
    position: absolute; right: 12px; bottom: 12px;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--pt-gradient); color: #2B1400;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--pt-shadow);
}
.pt-service-card__body { padding: 14px 18px 18px; text-align: center; }
.pt-service-card__cta { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 700; color: var(--pt-saffron); }

/* ---------- Testimonials (astrologers) ---------- */
.pt-testimonial-wrap { position: relative; padding: 0 60px; }
.pt-testimonial-card {
    background: var(--pt-panel);
    border: 1px solid var(--pt-line);
    border-radius: var(--pt-radius);
    padding: 46px 40px;
    box-shadow: var(--pt-shadow);
}
.pt-testimonial-card blockquote { font-size: 1.1rem; color: var(--pt-ink); margin: 0; }
.pt-testimonial-card__pic {
    width: 72px; height: 72px; border-radius: 50%;
    overflow: hidden; margin: 0 auto 14px;
    border: 3px solid var(--pt-cream-deep);
}
.pt-testimonial-card__pic img { width: 100%; height: 100%; object-fit: cover; }
.pt-testimonial-card__author h3 { font-size: 1.05rem; margin-bottom: 2px; }
.pt-testimonial-card__role { font-size: 0.85rem; color: var(--pt-saffron); font-weight: 600; }
.pt-testimonial-nav { display: flex; justify-content: center; gap: 14px; margin-top: 26px; }
.pt-testimonial-nav span {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid var(--pt-line);
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 0.2s ease, color 0.2s ease;
}
.pt-testimonial-nav span:hover { background: var(--pt-gradient); color: #2B1400; }
@media (max-width: 640px) { .pt-testimonial-wrap { padding: 0; } }

/* ---------- Categories ---------- */
.pt-category-card {
    background: var(--pt-panel);
    border: 1px solid var(--pt-line);
    border-radius: var(--pt-radius);
    overflow: hidden;
    height: 100%;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.pt-category-card:hover { box-shadow: var(--pt-shadow); transform: translateY(-4px); }
.pt-category-card__thumb { width: 130px; flex-shrink: 0; overflow: hidden; }
.pt-category-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pt-category-card__body { padding: 18px; }
.pt-category-card__body h3 { font-size: 1rem; margin-bottom: 4px; }
.pt-category-card__body h3 a:hover { color: var(--pt-saffron); }
.pt-category-card__type { display: block; font-size: 0.8rem; color: var(--pt-ink-soft); margin-bottom: 10px; }
.pt-category-card__link { font-size: 0.85rem; font-weight: 700; color: var(--pt-saffron); display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Why choose us / features ---------- */
.pt-why__img-wrap img { border-radius: var(--pt-radius); box-shadow: var(--pt-shadow); }
.pt-feature {
    background: var(--pt-panel);
    border: 1px solid var(--pt-line);
    border-radius: var(--pt-radius-sm);
    padding: 18px;
    height: 100%;
}
.pt-feature__icon {
    width: 46px; height: 46px; border-radius: 10px;
    background: var(--pt-cream-deep);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 12px;
}
.pt-feature__icon img { width: 26px; height: 26px; object-fit: contain; }
.pt-feature h3 { font-size: 0.95rem; margin: 0; font-family: var(--pt-font-body); font-weight: 600; }

/* ---------- We-help image grid ---------- */
.pt-imgs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pt-imgs-grid__item { border-radius: var(--pt-radius); overflow: hidden; box-shadow: var(--pt-shadow); }
.pt-imgs-grid__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pt-imgs-grid__item--1 { grid-row: span 2; }
@media (max-width: 575px) { .pt-imgs-grid { grid-template-columns: 1fr; } .pt-imgs-grid__item--1 { grid-row: auto; } }

/* ---------- Page header (products/services) ---------- */
.pt-page-header {
    background: linear-gradient(120deg, var(--pt-maroon), var(--pt-maroon-deep));
    padding: 64px 0 40px;
    margin-top: -1px;
}
.pt-page-header .pt-eyebrow { color: var(--pt-gold); }
.pt-page-header__title { color: #fff; font-size: clamp(2rem, 4vw, 2.7rem); margin-bottom: 10px; }
.pt-breadcrumb { color: #F0DCC8; font-size: 0.9rem; margin: 0; }
.pt-breadcrumb a { color: #fff; font-weight: 600; }
.pt-breadcrumb a:hover { color: var(--pt-gold); }
.pt-breadcrumb span { margin: 0 6px; opacity: 0.6; }
.pt-product-section { padding-top: 60px; }

/* ---------- Pagination ---------- */
.pt-pagination-wrap { margin-top: 20px; }
.pt-pagination .page-link {
    border: 1px solid var(--pt-line);
    color: var(--pt-ink);
    margin: 0 4px;
    border-radius: 8px !important;
}
.pt-pagination .page-item.active .page-link { background: var(--pt-gradient); border-color: transparent; color: #2B1400; }
.pt-pagination .page-item.disabled .page-link { color: var(--pt-ink-soft); }

/* ---------- Footer ---------- */
.pt-footer { background: var(--pt-maroon-deep); color: #E8D3C0; padding-top: 56px; }
.pt-footer a { color: #E8D3C0; }
.pt-footer a:hover { color: var(--pt-gold); }
.pt-footer__newsletter { padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 46px; }
.pt-footer__newsletter-title { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 1.3rem; margin-bottom: 6px; }
.pt-footer__newsletter-icon img { width: 26px; filter: invert(1); }
.pt-footer__newsletter-sub { color: #C7AE97; margin: 0; }
.pt-newsletter-form { display: flex; gap: 10px; }
.pt-newsletter-form .pt-form-control { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); color: #fff; flex: 1; }
.pt-newsletter-form .pt-form-control::placeholder { color: #C7AE97; }
.pt-newsletter-submit {
    border: none; border-radius: var(--pt-radius-sm);
    background: var(--pt-gradient); color: #2B1400;
    padding: 0 20px; cursor: pointer;
}
.pt-footer__grid { margin-bottom: 30px; }
.pt-footer__logo img { height: 64px; margin-bottom: 16px; }
.pt-footer__about { color: #C7AE97; font-size: 0.92rem; }
.pt-footer__heading { color: #fff; font-family: var(--pt-font-body); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.pt-footer__links ul { display: grid; gap: 10px; }
.pt-footer__links li { font-size: 0.92rem; }
.pt-social { display: flex; gap: 10px; margin-top: 18px; }
.pt-social a {
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s ease;
}
.pt-social a:hover { background: var(--pt-gradient); color: #2B1400; }
.pt-footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; padding-bottom: 24px; }
.pt-footer__bottom a { text-decoration: underline; }

/* ---------- Back to top ---------- */
.pt-back-to-top {
    position: fixed; right: 22px; bottom: 22px; width: 46px; height: 46px; border-radius: 50%;
    border: none; background: var(--pt-gradient); color: #2B1400; font-size: 1.15rem;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    box-shadow: var(--pt-shadow); opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 8000;
}
.pt-back-to-top.pt-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Scroll reveal ---------- */
[data-pt-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-pt-reveal].pt-in-view { opacity: 1; transform: translateY(0); }
[data-pt-reveal-delay="1"] { transition-delay: 0.1s; }
[data-pt-reveal-delay="2"] { transition-delay: 0.2s; }

/* ---------- Generic form controls (shared by auth/contact/booking) ---------- */
.pt-form-group { margin-bottom: 18px; }
.pt-form-group label {
    display: block; font-weight: 600; font-size: 0.85rem;
    color: var(--pt-ink); margin-bottom: 6px;
}
input.pt-form-control, textarea.pt-form-control, select.pt-form-control,
.pt-panel .form-control, .pt-panel .form-select {
    border: 1px solid var(--pt-line);
    border-radius: var(--pt-radius-sm);
    padding: 12px 14px;
    background: var(--pt-cream);
    font-family: var(--pt-font-body);
    color: var(--pt-ink);
    width: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.pt-panel .form-control:focus, .pt-panel .form-select:focus {
    border-color: var(--pt-saffron); box-shadow: 0 0 0 3px rgba(244, 81, 30, 0.14); outline: none;
}
.pt-panel {
    background: var(--pt-panel);
    border: 1px solid var(--pt-line);
    border-radius: var(--pt-radius);
    box-shadow: var(--pt-shadow);
}

/* ---------- Long-form document / policy pages ---------- */
.pt-doc { max-width: 820px; margin: 0 auto; background: var(--pt-panel); border: 1px solid var(--pt-line); border-radius: var(--pt-radius); padding: 48px 52px; box-shadow: var(--pt-shadow); }
.pt-doc h2 { font-size: 1.5rem; margin-top: 1.4em; }
.pt-doc h2:first-child { margin-top: 0; }
.pt-doc p, .pt-doc li { color: #5C4B39; line-height: 1.8; }
.pt-doc ul, .pt-doc ol { padding-left: 1.2em; }

/* ---------- Auth (login / register) ---------- */
.pt-auth__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.pt-auth__image { border-radius: var(--pt-radius); overflow: hidden; box-shadow: var(--pt-shadow); height: 520px; }
.pt-auth__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pt-auth__panel { padding: 40px; }
.pt-auth__panel h3 { font-size: 1.6rem; margin-bottom: 26px; }
.pt-auth__row { position: relative; }
.pt-password-toggle {
    position: absolute; right: 14px; top: 41px;
    cursor: pointer; color: var(--pt-ink-soft); font-size: 1.15rem;
    transition: color 0.2s ease;
}
.pt-password-toggle:hover { color: var(--pt-saffron); }
.pt-auth__foot { text-align: center; font-size: 0.9rem; color: var(--pt-ink-soft); margin: 10px 0; }
.pt-auth__forgot { text-align: right; font-size: 0.82rem; margin-bottom: 16px; }
.pt-auth__forgot a, .pt-auth__foot a { font-weight: 700; color: var(--pt-saffron); }
.pt-auth__divider { text-align: center; color: var(--pt-ink-soft); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; margin: 18px 0 14px; }
.pt-google-btn { display: inline-flex; }
.pt-google-btn img { height: 46px; border-radius: 8px; box-shadow: var(--pt-shadow); transition: transform 0.2s ease; }
.pt-google-btn:hover img { transform: translateY(-2px); }

/* ---------- Contact page ---------- */
.pt-contact-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.pt-contact-info__card { padding: 30px 24px; text-align: center; transition: box-shadow 0.2s ease, transform 0.2s ease; }
.pt-contact-info__card:hover { transform: translateY(-4px); box-shadow: 0 24px 44px -26px rgba(43,26,16,0.35); }
.pt-contact-info__icon {
    width: 54px; height: 54px; border-radius: 50%;
    background: var(--pt-gradient); color: #2B1400;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; font-size: 1.25rem;
}
.pt-contact-info__card p { margin: 0; color: var(--pt-ink-soft); }
.pt-contact-form-card { max-width: 780px; margin: 0 auto; padding: 44px; }
.pt-contact-form-card h3 { font-size: 1.4rem; margin-bottom: 24px; }

/* ---------- Product detail ---------- */
.pt-pd__card { position: relative; overflow: hidden; }
.pt-pd__badge {
    position: absolute; top: 18px; left: 18px; z-index: 3;
    background: var(--pt-maroon); color: #fff;
    font-size: 0.75rem; font-weight: 700;
    padding: 6px 14px; border-radius: 999px;
}
.pt-pd__gallery { background: var(--pt-cream-deep); padding: 28px; height: 100%; }
.pt-pd__main-img-wrap { display: flex; align-items: center; justify-content: center; min-height: 340px; }
.pt-pd__main-img { max-height: 420px; width: auto; max-width: 100%; object-fit: contain; }
.pt-pd__thumbs { margin-top: 20px; position: relative; }
.pt-pd__thumbs .carousel-control-prev,
.pt-pd__thumbs .carousel-control-next { width: 30px; opacity: 1; }
.pt-pd__thumbs .carousel-control-prev-icon,
.pt-pd__thumbs .carousel-control-next-icon { filter: invert(1) grayscale(1) contrast(2); width: 1.4rem; height: 1.4rem; }
.pt-pd__thumb {
    height: 84px; width: 100%; object-fit: cover;
    border-radius: 8px; border: 2px solid var(--pt-line);
    cursor: pointer; transition: border-color 0.2s ease, transform 0.2s ease;
}
.pt-pd__thumb:hover { border-color: var(--pt-saffron); transform: translateY(-2px); }
.pt-pd__info { padding: 40px; }
.pt-pd__title { font-size: 1.7rem; margin-bottom: 4px; }
.pt-pd__sku { color: var(--pt-success); font-family: var(--pt-font-body); font-weight: 600; font-size: 0.9rem; }
.pt-pd__category { color: var(--pt-ink-soft); font-style: italic; margin: 6px 0 14px; }
.pt-pd__price { font-family: var(--pt-font-body); font-weight: 700; font-size: 1.6rem; color: var(--pt-saffron); margin-bottom: 14px; }
.pt-pd__price del { font-weight: 400; font-size: 1rem; color: var(--pt-ink-soft); margin-left: 10px; }
.pt-pd__size { color: var(--pt-ink-soft); margin-bottom: 6px; }
.pt-qty {
    display: inline-flex; align-items: center;
    border: 1px solid var(--pt-line); border-radius: 999px; overflow: hidden;
}
.pt-qty button.btn {
    border: none; background: var(--pt-cream-deep); color: var(--pt-ink);
    width: 42px; height: 42px; font-size: 1.15rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.pt-qty button.btn:hover { background: var(--pt-gradient); color: #2B1400; }
.pt-qty input { border: none; width: 54px; text-align: center; background: transparent; font-weight: 700; color: var(--pt-ink); }
.pt-pd__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.pt-pd__actions .btn-primary, .pt-pd__actions .btn-success {
    display: inline-flex; align-items: center; gap: 8px;
    border: none; border-radius: 999px; padding: 12px 26px; font-weight: 600;
}
.pt-pd__actions .btn-primary { background: var(--pt-gradient); color: #2B1400; }
.pt-pd__actions .btn-success { background: var(--pt-maroon); color: #fff; }
.pt-pd__actions .btn-primary:hover, .pt-pd__actions .btn-success:hover { filter: brightness(1.06); color: inherit; }
.pt-pd__share { margin-top: 26px; }

/* Accordion (product detail, booking, service) */
.pt-accordion .accordion-item { border: 1px solid var(--pt-line); border-radius: var(--pt-radius-sm) !important; overflow: hidden; margin-bottom: 10px; }
.pt-accordion .accordion-button {
    font-weight: 700; color: var(--pt-ink); background: var(--pt-cream-deep);
    box-shadow: none !important;
}
.pt-accordion .accordion-button:not(.collapsed) { background: var(--pt-gradient); color: #2B1400; }
.pt-accordion .accordion-button::after { filter: none; }
.pt-accordion .accordion-body { color: #5C4B39; }

/* ---------- Orders ---------- */
.pt-orders__group { border-radius: var(--pt-radius); overflow: hidden; margin-bottom: 28px; }
.pt-orders__meta {
    background: linear-gradient(120deg, var(--pt-maroon), var(--pt-maroon-deep));
    color: #fff; padding: 16px 22px;
    display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 0.88rem; margin: 0;
}
.pt-orders__meta i { color: var(--pt-gold); margin-right: 6px; }
.pt-table { width: 100%; border-collapse: collapse; }
.pt-table thead th {
    background: var(--pt-cream-deep); color: var(--pt-ink);
    font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em;
    padding: 12px 14px; text-align: center; border: none;
}
.pt-table thead th.pt-table__left { text-align: left; }
.pt-table tbody td { padding: 14px; text-align: center; border-top: 1px solid var(--pt-line); vertical-align: middle; }
.pt-table tbody td.pt-table__left { text-align: left; }
.pt-table tbody tr:hover { background: var(--pt-cream); }
.pt-table__thumb { height: 60px; width: 60px; object-fit: cover; border-radius: 8px; }

/* ---------- Booking / service detail ---------- */
.pt-service-detail__img { height: 320px; width: 100%; object-fit: cover; border-radius: var(--pt-radius) var(--pt-radius) 0 0; }
.pt-service-detail__body { padding: 28px; }
.pt-service-detail__title { font-size: 1.4rem; margin-bottom: 18px; }
.pt-booking-card { padding: 0; overflow: hidden; }
.pt-booking-card__head {
    background: linear-gradient(120deg, var(--pt-maroon), var(--pt-maroon-deep));
    color: #fff; padding: 20px 28px; font-weight: 600; font-size: 1.05rem;
}
.pt-booking-card__body { padding: 28px; }
.pt-booking-card__body h5 { font-size: 1rem; color: var(--pt-ink-soft); margin-bottom: 20px; font-weight: 600; }
.pt-btn--book {
    display: inline-flex; align-items: center; justify-content: center;
    width: 100%; padding: 13px 26px; border: none; border-radius: 999px;
    background: var(--pt-gradient); color: #2B1400; font-weight: 700; cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pt-btn--book:hover { transform: translateY(-2px); box-shadow: 0 14px 26px -12px rgba(244,81,30,0.5); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 991px) {
    body { padding-top: 92px; }
    .pt-navbar { height: 92px; }
    .pt-brand img { height: 66px; }
    .pt-hero__slide,
    .pt-hero__slide--alt { padding: 56px 44px 32px; min-height: 0; }
    .carousel-control-prev.pt-hero__control { left: 0; }
    .carousel-control-next.pt-hero__control { right: 0; }
    .pt-auth__grid { grid-template-columns: 1fr; }
    .pt-auth__image { height: 320px; }
    .pt-contact-info { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575px) {
    body { padding-top: 78px; }
    .pt-navbar { height: 78px; }
    .pt-brand img { height: 54px; }
    .pt-hero__slide,
    .pt-hero__slide--alt { padding: 52px 30px 26px; }
    .pt-hero__control { width: 36px; height: 36px; }
    .pt-hero__arrow { width: 36px; height: 36px; font-size: 0.8rem; }
    .pt-contact-info { grid-template-columns: 1fr; }
    .pt-doc, .pt-auth__panel, .pt-contact-form-card, .pt-pd__info { padding: 26px; }
}
@media (max-width: 767px) {
    .pt-section { padding: 60px 0; }
    .pt-page-header { padding: 48px 0 32px; }
    .pt-hero__art { margin-top: 28px; }
    .pt-hero__badges { gap: 12px; }
    .pt-category-card { flex-direction: column; }
    .pt-category-card__thumb { width: 100%; height: 160px; }
    .pt-orders__meta { flex-direction: column; gap: 4px; }
}

/* ---------- Cart ---------- */
.pt-cart-table-wrap { padding: 8px; }
.pt-table .pt-table__remove {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--pt-cream-deep); color: var(--pt-maroon);
    font-weight: 700; border: none;
    transition: background 0.2s ease, color 0.2s ease;
}
.pt-table .pt-table__remove:hover { background: var(--pt-maroon); color: #fff; }
.pt-cart-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 26px 0 40px; }
.pt-cart-actions .pt-btn { flex: 1 1 auto; min-width: 160px; }
.pt-coupon-form { display: flex; gap: 0; max-width: 480px; }
.pt-coupon-form input { border-radius: 999px 0 0 999px; }
.pt-coupon-form button {
    border: none; border-radius: 0 999px 999px 0;
    background: var(--pt-gradient); color: #2B1400; padding: 0 22px; font-weight: 700; cursor: pointer;
}
.pt-cart-summary { padding: 32px 34px; }
.pt-cart-summary h3 { font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.04em; border-bottom: 1px solid var(--pt-line); padding-bottom: 16px; margin-bottom: 20px; }
.pt-cart-summary__row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; font-size: 0.95rem; }
.pt-cart-summary__row + .pt-cart-summary__row { border-top: 1px dashed var(--pt-line); }
.pt-cart-summary__row--total { font-weight: 700; font-size: 1.15rem; color: var(--pt-saffron); border-top: 2px solid var(--pt-line) !important; margin-top: 6px; padding-top: 16px; }
.pt-cart-summary .pt-btn { width: 100%; margin-top: 20px; }
.pt-cart-summary .pt-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ---------- Checkout ---------- */
.pt-checkout__title { font-size: 1.3rem; margin-bottom: 16px; }
.pt-checkout__panel { padding: 32px; }
.pt-checkout .form-label, .pt-checkout label:not(.pt-payment-option) { font-weight: 600; font-size: 0.85rem; color: var(--pt-ink); display: block; margin-bottom: 6px; }
.pt-checkout .form-control, .pt-checkout .form-select {
    border: 1px solid var(--pt-line); border-radius: var(--pt-radius-sm);
    padding: 11px 14px; background: var(--pt-cream); margin-bottom: 16px;
}
.pt-checkout .form-control:focus, .pt-checkout .form-select:focus { border-color: var(--pt-saffron); box-shadow: 0 0 0 3px rgba(244,81,30,0.14); }
.pt-checkout .text-danger { color: var(--pt-saffron) !important; }
.pt-order-summary-table { width: 100%; }
.pt-order-summary-table td, .pt-order-summary-table th { padding: 10px 4px; border-bottom: 1px solid var(--pt-line); }
.pt-order-summary-table tr:last-child td { border-bottom: none; }
.pt-payment-option { border: 1px solid var(--pt-line); border-radius: var(--pt-radius-sm); padding: 16px 18px; margin-bottom: 14px; }
.pt-payment-option h3 { font-size: 0.98rem; margin: 0; font-family: var(--pt-font-body); font-weight: 700; }
.pt-payment-option input[type="radio"] { accent-color: var(--pt-saffron); margin-right: 8px; }
.pt-checkout .pt-btn { width: 100%; }

/* ---------- Profile ---------- */
.pt-profile__panel { padding: 40px; }
.pt-profile__panel h3 { font-size: 1.5rem; margin-bottom: 24px; }
.pt-profile__panel label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 6px; color: var(--pt-ink); }
.pt-profile__panel .form-control {
    border: 1px solid var(--pt-line); border-radius: var(--pt-radius-sm);
    padding: 12px 14px; background: var(--pt-cream); margin-bottom: 16px; width: 100%;
}
.pt-profile__panel .form-control:focus { border-color: var(--pt-saffron); box-shadow: 0 0 0 3px rgba(244,81,30,0.14); outline: none; }
.pt-profile__panel .btn-primary {
    border: none; border-radius: 999px; padding: 13px 26px;
    background: var(--pt-gradient); color: #2B1400; font-weight: 700; width: 100%;
}
.pt-profile__change-pw { text-align: center; margin-top: 8px; }
.pt-profile__change-pw a { font-weight: 700; color: var(--pt-saffron); }
.modal-content { border-radius: var(--pt-radius); border: none; box-shadow: var(--pt-shadow); overflow: hidden; }
.modal-header { background: linear-gradient(120deg, var(--pt-maroon), var(--pt-maroon-deep)); color: #fff; border: none; }
.modal-header .modal-title { font-family: var(--pt-font-display); }
.modal-header .btn-close { filter: invert(1); opacity: 0.9; }
.modal-body { padding: 28px; }
.modal-body .form-label { font-weight: 600; font-size: 0.85rem; color: var(--pt-ink); }
.modal-body .form-control {
    border: 1px solid var(--pt-line); border-radius: var(--pt-radius-sm);
    padding: 11px 14px; background: var(--pt-cream);
}
.modal-body .btn-primary { border: none; border-radius: 999px; padding: 12px 24px; background: var(--pt-gradient); color: #2B1400; font-weight: 700; }

/* ---------- Success / thank you ---------- */
.pt-success { text-align: center; padding: 100px 0; }
.pt-success__icon {
    width: 90px; height: 90px; border-radius: 50%;
    background: var(--pt-gradient); color: #2B1400;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.2rem; margin: 0 auto 26px;
    box-shadow: var(--pt-shadow);
}
.pt-success h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); }
.pt-success p.lead { color: var(--pt-ink-soft); font-size: 1.05rem; margin-bottom: 30px; }

@media (max-width: 767px) {
    .pt-cart-summary, .pt-checkout__panel, .pt-profile__panel { padding: 24px; }
    .pt-success { padding: 64px 0; }
}

/* ---------- Chat room ---------- */
.pt-page-header__title-badge {
    height: 56px; aspect-ratio: auto; object-fit: contain;
    background: var(--pt-panel);
    padding: 6px 10px; border-radius: 10px;
    vertical-align: middle; margin: 0 6px;
}
.pt-chat-note { text-align: center; color: var(--pt-ink-soft); font-size: 0.9rem; margin-bottom: 24px; }
.pt-chat { display: grid; grid-template-columns: 1fr 280px; gap: 22px; align-items: start; }
.pt-chat-window { overflow: hidden; }
.pt-chat-window__head {
    display: flex; align-items: center; gap: 10px;
    padding: 16px 20px;
    background: linear-gradient(120deg, var(--pt-maroon), var(--pt-maroon-deep));
    color: #fff;
}
.pt-chat-window__head i { color: var(--pt-gold); }
.pt-chat-window__body {
    height: 340px; overflow-y: auto; padding: 20px;
    scrollbar-width: thin; scrollbar-color: var(--pt-amber) var(--pt-cream-deep);
}
.pt-chat-window__body::-webkit-scrollbar { width: 6px; }
.pt-chat-window__body::-webkit-scrollbar-track { background: var(--pt-cream-deep); border-radius: 4px; }
.pt-chat-window__body::-webkit-scrollbar-thumb { background: var(--pt-gradient); border-radius: 4px; }
.pt-chat-window__body::-webkit-scrollbar-thumb:hover { background: var(--pt-saffron); }
.pt-chat-window__body div { padding: 10px 14px; border-radius: var(--pt-radius-sm); background: var(--pt-cream-deep); margin-bottom: 10px; font-size: 0.92rem; color: var(--pt-ink); max-width: 80%; }
.pt-chat-composer { border-top: 1px solid var(--pt-line); padding: 16px 20px; }
.pt-chat-composer textarea {
    border: 1px solid var(--pt-line); border-radius: var(--pt-radius-sm);
    padding: 12px 14px; background: var(--pt-cream); width: 100%; resize: none;
    font-family: var(--pt-font-body); min-height: 52px;
}
.pt-chat-composer textarea:focus { outline: none; border-color: var(--pt-saffron); box-shadow: 0 0 0 3px rgba(244,81,30,0.14); }
.pt-chat-composer .pt-btn { width: 100%; height: 52px; border: none; }
.pt-chat-sidebar h5 { font-size: 1.05rem; margin-bottom: 14px; }
.pt-chat-sidebar__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.pt-chat-sidebar__list li {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 14px; font-size: 0.9rem;
    background: var(--pt-cream-deep); border-radius: var(--pt-radius-sm);
}
.pt-chat-sidebar__list i.text-success { color: var(--pt-success) !important; }
.pt-chat-sidebar__list i.text-danger { color: #C0392B !important; }
@media (max-width: 900px) {
    .pt-chat { grid-template-columns: 1fr; }
}