/* ============================================================
   WOODEN BLOCK FASHION — Premium Theme CSS
   Design System: Luxury Fashion (Zara / Mango / ASOS Premium)
   ============================================================ */

/* ── Google Fonts loaded via <link> in main.blade.php ────── */

/* ── CSS Custom Properties (Design Tokens) ──────────────── */
:root {
    --primary: #1a1a1a;
    --accent: #c9a96e;
    --accent-dark: #a8833f;
    --bg-light: #fafaf8;
    --bg-section: #f4f1ec;
    --text-muted: #6b6b6b;
    --border: #e8e3dc;
    --white: #ffffff;
    --font-head: "Cormorant Garamond", Georgia, serif;
    --font-body: "DM Sans", system-ui, sans-serif;
    --transition: 0.3s ease;
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 6px 28px rgba(0, 0, 0, 0.1);
    --radius: 4px;
}

/* ── Base Reset ─────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--primary);
    background-color: var(--bg-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ── Page Loader ─────────────────────────────────────────── */
#page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}

#page-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-ring {
    width: 56px;
    height: 56px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: loaderSpin 0.85s linear infinite;
}

@keyframes loaderSpin {
    to {
        transform: rotate(360deg);
    }
}

/* ── Scroll To Top Button ────────────────────────────────── */
#scroll-top-btn {
    position: fixed;
    bottom: 32px;
    right: 28px;
    z-index: 1000;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity var(--transition),
        background var(--transition);
    box-shadow: var(--shadow-md);
}
#scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}
#scroll-top-btn:hover {
    background: var(--accent);
}

/* ── Section Headings ────────────────────────────────────── */
.pt-section-title {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--primary);
    margin-bottom: 0;
}

.pt-section-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.pt-section-divider {
    width: 48px;
    height: 2px;
    background: var(--accent);
    margin: 12px auto 0;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-pt-primary {
    display: inline-block;
    padding: 13px 34px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1.5px solid var(--primary);
    border-radius: var(--radius);
    cursor: pointer;
    transition:
        background var(--transition),
        color var(--transition);
}
.btn-pt-primary:hover {
    background: transparent;
    color: var(--primary);
}

.btn-pt-outline {
    display: inline-block;
    padding: 12px 32px;
    background: transparent;
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1.5px solid var(--primary);
    border-radius: var(--radius);
    cursor: pointer;
    transition:
        background var(--transition),
        color var(--transition);
}
.btn-pt-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-pt-accent {
    display: inline-block;
    padding: 13px 34px;
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1.5px solid var(--accent);
    border-radius: var(--radius);
    cursor: pointer;
    transition:
        background var(--transition),
        border-color var(--transition);
}
.btn-pt-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
}

/* ── Badge ───────────────────────────────────────────────── */
.pt-badge {
    display: inline-block;
    padding: 3px 10px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
}
.pt-badge-sale {
    background: var(--accent);
    color: var(--white);
}
.pt-badge-new {
    background: var(--primary);
    color: var(--white);
}
.pt-badge-hot {
    background: #c0392b;
    color: var(--white);
}

/* ── Product Card ────────────────────────────────────────── */
.pt-product-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    /* border: 1px solid var(--border); */
    border-radius: var(--radius);
    transition:
        box-shadow var(--transition),
        transform var(--transition);
}
.pt-product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.pt-product-card__thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: var(--bg-section);
}

.pt-product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}
.pt-product-card__img--hover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition:
        opacity 0.45s ease,
        transform 0.55s ease;
}
.pt-product-card:hover .pt-product-card__img {
    transform: scale(1.06);
}
.pt-product-card:hover .pt-product-card__img--hover {
    opacity: 1;
    transform: scale(1.06);
}

.pt-product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.pt-product-card__actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(100%);
    transition: transform 0.35s ease;
}
.pt-product-card:hover .pt-product-card__actions {
    transform: translateY(0);
}

.pt-product-card__action-btn {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        background var(--transition),
        border-color var(--transition),
        color var(--transition);
    color: var(--primary);
    font-size: 15px;
}
.pt-product-card__action-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.pt-product-card__add-btn {
    flex: 1;
    height: 38px;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: var(--radius);
    transition: background var(--transition);
}
.pt-product-card__add-btn:hover {
    background: var(--accent);
}

.pt-product-card__body {
    padding: 14px 16px 18px;
    text-align: center;
}

.pt-product-card__cat {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.pt-product-card__name {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pt-product-card__name a {
    color: var(--primary);
}
.pt-product-card__name a:hover {
    color: var(--accent);
}

.pt-product-card__price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.pt-price-current {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
}
.pt-price-old {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* ── Blog Card ───────────────────────────────────────────── */
.pt-blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition:
        box-shadow var(--transition),
        transform var(--transition);
}
.pt-blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.pt-blog-card__thumb {
    overflow: hidden;
    aspect-ratio: 16/10;
}
.pt-blog-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.pt-blog-card:hover .pt-blog-card__thumb img {
    transform: scale(1.06);
}

.pt-blog-card__body {
    padding: 22px 20px 24px;
}

.pt-blog-card__cat {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 8px;
}

.pt-blog-card__title {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 10px;
}
.pt-blog-card__title a {
    color: var(--primary);
}
.pt-blog-card__title a:hover {
    color: var(--accent);
}

.pt-blog-card__excerpt {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pt-blog-card__meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.pt-blog-card__link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    border-bottom: 1px solid var(--primary);
    padding-bottom: 1px;
    transition:
        color var(--transition),
        border-color var(--transition);
}
.pt-blog-card__link:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* ── Notification Toast ──────────────────────────────────── */
.pt-toast-wrapper {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ── Utility: visually-hidden ────────────────────────────── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── Bootstrap overrides ─────────────────────────────────── */
.btn:focus,
.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 110, 0.25);
    border-color: var(--accent);
}

/* =============================================================
   NAVBAR
   ============================================================= */
.pt-navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}
.pt-navbar.scrolled {
    box-shadow: var(--shadow-md);
}

/* Top bar */
.pt-topbar {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    padding: 7px 0;
}
.pt-topbar a {
    color: rgba(255, 255, 255, 0.8);
}
.pt-topbar a:hover {
    color: var(--accent);
}

/* Logo */
.pt-navbar__logo img {
    height: 56px;
    width: auto;
}

/* Nav links */
.pt-nav-link {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary) !important;
    padding: 8px 14px !important;
    position: relative;
    transition: color var(--transition);
}
.pt-nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 1.5px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}
.pt-nav-link:hover {
    color: var(--accent) !important;
}
.pt-nav-link:hover::after,
.pt-nav-link.active::after {
    transform: scaleX(1);
}

/* Category mega dropdown */
.pt-mega-wrapper {
    position: relative;
}
.pt-mega-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 260px;
    max-height: 70vh;
    overflow-y: auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
    z-index: 1050;
}
.pt-mega-wrapper:hover .pt-mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* Style the mega partial inside the new dropdown */
.pt-mega-dropdown .mega-cat-list {
    margin: 0;
    padding: 8px 0;
}
.pt-mega-dropdown .mega-cat-header,
.pt-mega-dropdown .mega-sub-header,
.pt-mega-dropdown .mega-leaf-item {
    font-size: 0.82rem;
    padding: 9px 18px;
    color: var(--primary);
    font-family: var(--font-body);
}
.pt-mega-dropdown .mega-cat-header:hover,
.pt-mega-dropdown .mega-sub-header:hover,
.pt-mega-dropdown .mega-leaf-item:hover {
    background: var(--bg-section);
    color: var(--accent);
}

/* Icon buttons (search, wishlist, cart) */
.pt-nav-icon-btn {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: var(--primary);
    font-size: 18px;
    cursor: pointer;
    transition:
        background var(--transition),
        color var(--transition);
}
.pt-nav-icon-btn:hover {
    background: var(--bg-section);
    color: var(--accent);
}
.pt-nav-icon-btn .pt-cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 17px;
    height: 17px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    pointer-events: none;
}

/* =============================================================
   SEARCH OVERLAY (Bootstrap collapse inside navbar)
   ============================================================= */
.pt-search-bar {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 16px 0;
}
.pt-search-bar .pt-search-input {
    border: none;
    border-bottom: 1.5px solid var(--primary);
    border-radius: 0;
    background: transparent;
    font-family: var(--font-head);
    font-size: 1.4rem;
    padding: 8px 0;
    color: var(--primary);
    box-shadow: none !important;
}
.pt-search-bar .pt-search-input::placeholder {
    color: var(--border);
}
.pt-search-bar .pt-search-submit {
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 20px;
    cursor: pointer;
    transition: color var(--transition);
}
.pt-search-bar .pt-search-submit:hover {
    color: var(--accent);
}
.pt-search-bar .pt-search-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    transition: color var(--transition);
}
.pt-search-bar .pt-search-close:hover {
    color: var(--primary);
}

/* Live results dropdown */
#pt-search-results {
    border: 1px solid var(--border);
    border-top: none;
    background: var(--white);
    max-height: 320px;
    overflow-y: auto;
    border-radius: 0 0 var(--radius) var(--radius);
}
#pt-search-results a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    font-size: 0.85rem;
    color: var(--primary);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}
#pt-search-results a:last-child {
    border-bottom: none;
}
#pt-search-results a:hover {
    background: var(--bg-section);
    color: var(--accent);
}
#pt-search-results img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 2px;
}

/* =============================================================
   MINI CART — Bootstrap Offcanvas (right)
   ============================================================= */
#pt-mini-cart .offcanvas-header {
    border-bottom: 1px solid var(--border);
    padding: 18px 20px;
}
#pt-mini-cart .offcanvas-title {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 600;
}
#pt-mini-cart .offcanvas-body {
    padding: 0;
}

.pt-mc-item {
    display: flex;
    gap: 14px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}
.pt-mc-item__img {
    width: 72px;
    height: 88px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    flex-shrink: 0;
}
.pt-mc-item__body {
    flex: 1;
    min-width: 0;
}
.pt-mc-item__cat {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 3px;
}
.pt-mc-item__name {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}
.pt-mc-item__name a {
    color: var(--primary);
}
.pt-mc-item__name a:hover {
    color: var(--accent);
}
.pt-mc-item__opts {
    font-size: 0.73rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.pt-mc-item__price {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
}
.pt-mc-item__remove {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 16px;
    cursor: pointer;
    padding: 0;
    transition: color var(--transition);
}
.pt-mc-item__remove:hover {
    color: #c0392b;
}

.pt-mc-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    color: var(--text-muted);
}
.pt-mc-empty i {
    font-size: 3rem;
    margin-bottom: 14px;
    color: var(--border);
}
.pt-mc-empty p {
    font-size: 0.9rem;
    margin: 0 0 20px;
}

.pt-mc-footer {
    position: sticky;
    bottom: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 18px 20px;
}
.pt-mc-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 14px;
}
.pt-mc-subtotal strong {
    font-family: var(--font-head);
    font-size: 1.1rem;
}
.pt-mc-actions {
    display: flex;
    gap: 10px;
}
.pt-mc-actions .btn-pt-outline,
.pt-mc-actions .btn-pt-primary {
    flex: 1;
    text-align: center;
    padding: 11px 16px;
    font-size: 0.72rem;
}

/* =============================================================
   MOBILE STICKY BOTTOM TOOLBAR
   ============================================================= */
.pt-mobile-toolbar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1029;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 8px 0 env(safe-area-inset-bottom, 0);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.07);
}
@media (max-width: 991.98px) {
    .pt-mobile-toolbar {
        display: flex;
    }
}

.pt-mobile-toolbar__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: 0.6rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    padding: 4px 0;
    cursor: pointer;
    background: none;
    border: none;
    transition: color var(--transition);
}
.pt-mobile-toolbar__item i {
    font-size: 19px;
}
.pt-mobile-toolbar__item:hover,
.pt-mobile-toolbar__item.active {
    color: var(--accent);
}
.pt-mobile-toolbar__item .pt-cart-badge {
    position: absolute;
    top: 0;
    right: calc(50% - 18px);
}

/* bottom page padding so toolbar doesn't cover content */
@media (max-width: 991.98px) {
    body {
        padding-bottom: 64px;
    }
}

/* =============================================================
   FOOTER
   ============================================================= */
.pt-footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.75);
    padding-top: 64px;
    padding-bottom: 0;
}
.pt-footer__logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}
.pt-footer__tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 10px;
    line-height: 1.6;
}

.pt-footer__heading {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pt-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pt-footer__links li {
    margin-bottom: 9px;
}
.pt-footer__links a {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.65);
    transition:
        color var(--transition),
        padding-left var(--transition);
    display: inline-block;
}
.pt-footer__links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

/* Social icons */
.pt-footer__socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.pt-footer__social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition:
        background var(--transition),
        border-color var(--transition),
        color var(--transition);
}
.pt-footer__social-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

/* Newsletter */
.pt-footer__newsletter-form {
    display: flex;
    gap: 0;
    margin-top: 4px;
}
.pt-footer__newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    color: var(--white);
    font-size: 0.82rem;
    padding: 10px 14px;
    outline: none;
    transition: border-color var(--transition);
}
.pt-footer__newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}
.pt-footer__newsletter-form input:focus {
    border-color: var(--accent);
}
.pt-footer__newsletter-form button {
    background: var(--accent);
    border: none;
    color: var(--white);
    padding: 10px 18px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition);
}
.pt-footer__newsletter-form button:hover {
    background: var(--accent-dark);
}

/* Bottom bar */
.pt-footer__bottom {
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}
.pt-footer__bottom a {
    color: rgba(255, 255, 255, 0.5);
}
.pt-footer__bottom a:hover {
    color: var(--accent);
}
